文件夹名称类似于:thefoldername-23423-431321
thefoldername是一致的,但数字每次都在变化.
我试过这个:
find . -type d -name 'thefoldername*' -exec mv {} newfoldername \;
该命令实际上工作并重命名该目录.但我在终端上收到错误,说没有这样的文件或目录.
我该如何解决?
find . -depth -type d -name 'thefoldername*' -exec mv {} newfoldername \;
查找的正常行为是处理目录然后递归到它们中.由于你已经重命名,所以当它试图递归时会发现抱怨. -depth选项告诉find首先递归,然后处理目录.