私はgrep -e Peugeot -e PeuGeot carlist.txt
carlist.txtを検索していくつかのアイテムを引き出すgrep -e Peugeot -e PeuGeot carlist.txt | vi
ために使用していますが、それが私のためにそれをパイプするだろうと推測しましたが、これは私が得るものです:
Vim: Warning: Input is not from a terminal
Vim: Error reading input, exiting...
Vim: preserving files...
Vim: Finished.
grep ... > /tmp/foo
。&& vi /tmp/foo
そのファイルをすぐに編集する場合は、最後に追加できます。
vi
任意のテキストファイルで動作します。ファイル自体はに直接関連付けられていませんvi
。(または、私は学んだように、vi -
原因となりますvi
の内容を操作するためにstdin
、vim
これを行いますが、のではないすべてのバージョンvi
。DO)
:read !grep -e Peugeot -e PeuGeot carlist.txt
ます。:read !cmd...
cmd ...の出力をファイルに(カーソルの位置で)含める