lglspace

查找所有/usr/local/x目录test.txt文件
find /usr/local/x -name "test.txt" -print | xargs ls -l


替换所有找到的test.txt文件
find /usr/local/x -name "test.txt" -print | xargs -n1 cp -f ./test.txt

分类:

技术点:

相关文章: