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.
現在のディレクトリ内のすべてのファイルに対して、シェルスクリプトを使用してvimコマンド「:retab」を実行するにはどうすればよいですか?
私はあなたを助けることができるものを見つけました
for F in *.{c,h}pp ; do vim -c ":retab" -c ":wq" "$F" ; done
これはあなたが望むことをするはずです ;) たぶん、あなたのニーズに合わせて for ループ条件を変更する必要があるでしょう