所以基本上我需要找到自己的GitHub項目中的所有文件和文件夾包含字符串「人」git的發現和重命名多個文件名和文件夾名稱
find . -type f -print | grep "persons"
find . -type d -print | grep "persons"
上述工作對我來說是字符串。
But I also need to rename all the above files and folders with 'members'
我可以通過幾條命令來完成上述操作嗎?不用手動替換它們由一個 一個我不知道如何做一個混帳MV oldfilename newfilename rescursively上述
這可以用在git的上下文嗎? – Micheal 2013-04-25 19:25:13
答覆已更新。 – 2013-04-25 19:44:39
它有點不工作。我在我的終端上得到一個dquote。我也不需要提交命令太 – Micheal 2013-04-25 21:29:08