Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bash ではfind . -name jndi.properties -exec rename 's/jndi/environment/' {} \;、すべての jndi.propertie ファイルを再帰的に検索し、environment.properties に名前を変更することができます。
find . -name jndi.properties -exec rename 's/jndi/environment/' {} \;
しかし、git status は mv を認識せず、削除と追加を別々に表示します。再帰を行うにはどうすればよいgit mvですか?
git mv