したがって、基本的に、文字列「persons」を含む github プロジェクト内のすべてのファイルとフォルダーを見つける必要があります
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'
いくつかのコマンドで上記を実行できますか? それらを手動で1つずつ置き換える代わりに、上記に再帰的に git mv oldfilename newfilename を実行する方法がわかりません