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.
エクスポートファイルを標準化しようとしています。最初の2つのフィールドの間のすべてのスペースとタブを削除し、それらを2つのタブに置き換える必要があります。私はVIを使用しています。
だから変えたい
/ vol / vol1 / home1 / xxx -rw = admin:app:admhosts
に
スペースを2つのTABSに等しくします。
私はVIを使用しています。
:s/[ ^I]\+/^I^I/1 行または:%s/[ ^I]\+/^I^I/ファイル全体に対して実行します。^ICtrl+I を押すことを意味することに注意してください
:s/[ ^I]\+/^I^I/
:%s/[ ^I]\+/^I^I/
^I