touch一个目录及其下所有嵌套子目录中的文件
如何touch一个目录及其下所有嵌套子目录中的文件?
find . | xargs touch
或者
find ./ -type f |xargs touch
find ./ -type d |xargs touch
find ./ -name "*.cpp" -print |xargs touch
如何touch一个目录及其下所有嵌套子目录中的文件?
find . | xargs touch
或者
find ./ -type f |xargs touch
find ./ -type d |xargs touch
find ./ -name "*.cpp" -print |xargs touch