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

散盡浮華發表於2017-01-03

 

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

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` root@192.168.1.241:/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

相關文章