复制
2024/10/25原创小于 1 分钟约 104 字
复制文件或目录过滤指定文件
1. 第一种
cp `ls |grep -v test2.py|xargs` /home/duni/copy_test
2. 第二种
cp `ls |grep -v test2.py|xargs` ../copy_test
3. 第三种
cp `ls /home/duni/test |grep -v test2.py|xargs` /home/duni/copy_test
4. 第四种
cp `ls /home/duni/test |grep -v test2.py|xargs` ../copy_test