标签: bash pipe xargs
我正在尝试grep文件,并将行号通过管道发送到
vim +{lineNumber} filetoedit
不幸的是,Vim抛出一个错误提示
Vim:警告:输入不是来自终端
一个例子:
grep -nF 'Im looking for this' testfile.txt | cut -f1 -d: | xargs vim +{} testfile.tx
答案 0 :(得分:3)