touch一个目录及其下所有嵌套子目录中的文件

如何touch一个目录及其下所有嵌套子目录中的文件?

find  .  | xargs   touch  

或者

find ./ -type f |xargs touch
find ./ -type d |xargs touch

 find ./ -name "*.cpp" -print |xargs touch

原文地址:https://www.cnblogs.com/zhoug2020/p/2977346.html