Linux如何大量更改資料夾名稱 - LinuxMegan · 2014-10-29Table of ContentsPostCommentsRelated Posts有資料夾 是用數字-數字來組成 我想把-都消掉 例如1866-4048-4932-7791-0788 我想把-拿掉 改成 18864048493277910788 想大量改 有什麼方法嗎 感謝 -- LinuxAll CommentsMason2014-10-31find ./ -maxdepth 1 -exec sh -c'echo "{}" `echo "{}" | tr -d -`' \; 以上為一行Hamiltion2014-11-03檢查沒問題的話把echo換成mvQuintina2014-11-08第一個echoMargaret2014-11-12感謝 可以用Related PostsCanonical 釋出 Ubuntu 14.10關於檔案系統的壓縮SUSE Linux Enterprise 12發布關於檔案系統的壓縮關於檔案系統的壓縮
All Comments