linux下拷貝命令中的檔案過濾操作記錄

2022-05-10 15:12:47 字數 1597 閱讀 9714

在日常的運維工作中,經常會涉及到在拷貝某個目錄時要排查其中的某些檔案。廢話不多說,下面對這一需求的操作做一記錄:

linux系統中,假設要想將目錄a中的檔案複製到目錄b中,並且複製時過濾掉源目錄a中的檔案a和b

做法如下:

#cd a

#cp -r `ls |grep -v a |grep -v b| xargs` b

注意:1)上面在cp命令執行前,最好提前cd切換到源目錄a下,不然就要在ls後跟全路徑,否則就會報錯。

2)命中中的xargs引數加不加效果都一樣,不過最好是加上,表示前面的命令輸出

3)grep -v中的-v表示過濾,有多少檔案的過濾需求,就執行多少個grep -v操作

4)命令替換``可以用$()代替

例項如下:

將/tmp/bo目錄中的檔案複製到/tmp/test目錄中,複製時過濾f和s檔案!

[root@cdn bo]# ll /tmp/bo

total 12

drwxr-xr-x 2 root root 4096 nov 3 17:55 10

drwxr-xr-x 2 root root 4096 nov 3 17:55 20

drwxr-xr-x 2 root root 4096 nov 3 17:55 30

-rw-r--r-- 1 root root 0 nov 3 17:33 4

-rw-r--r-- 1 root root 0 nov 3 17:33 5

-rw-r--r-- 1 root root 0 nov 3 17:33 d

-rw-r--r-- 1 root root 0 nov 3 17:33 f

-rw-r--r-- 1 root root 0 nov 3 17:33 s

-rw-r--r-- 1 root root 0 nov 3 17:33 w

[root@cdn tmp]# ls /tmp/test/

[root@cdn tmp]#

[root@cdn tmp]# cd /tmp/bo/

[root@cdn bo]# cp -r $(ls |grep -v f|grep -v s|xargs) /tmp/test

[root@cdn bo]# ls /tmp/test

10 20 30 4 5 d w

以上的方法也適用於遠端拷貝scp操作,比如:

[root@cdn resin]# scp -r `ls|grep -v log|xargs` [email protected]:/opt/resin/

另外:上面的需求也可以使用for迴圈方式進行操作。注意for迴圈中使用絕對路徑!

[root@cdn tmp]# cd /tmp

[root@cdn tmp]# ls bo

10 20 30 4 5 d f s w

[root@cdn tmp]# ls test

[root@cdn tmp]# for i in `ls /tmp/bo|grep -v f|xargs`;do cp -r /tmp/bo/$i /tmp/test;done

[root@cdn tmp]# ls /tmp/test/

10 20 30 4 5 d s w

linux下拷貝命令中的檔案過濾操作記錄

在日常的運維工作中,經常會涉及到在拷貝某個目錄時要排查其中的某些檔案。廢話不多說,下面對這一需求的操作做一記錄 linux系統中,假設要想將目錄a中的檔案複製到目錄b中,並且複製時過濾掉源目錄a中的檔案a和b 做法如下 cd a cp r ls grep v a grep v b xargs b 注...

linux下的scp拷貝命令

相同linux系統中對檔案複製拷貝可以用cp命令 cp options source dest cp options source.directory 說明 將乙個檔案拷貝至另一檔案,或將數個檔案拷貝至另一目錄。a 盡可能將檔案狀態 許可權等資料都照原狀予以複製。r 若 source 中含有目錄名,...

Linux下的scp拷貝命令詳解

相同linux系統中對檔案複製拷貝可以用cp命令 cp options source dest cp options source directory 說明 將乙個檔案拷貝至另一檔案,或將數個檔案拷貝至另一目錄。a 盡可能將檔案狀態 許可權等資料都照原狀予以複製。r 若 source 中含有目錄名,...