VI,VIM 如何使用管道?

2013-02-23 20:28:18 +08:00
 codeplay
ls -lrt |vim

报错提示:
Vim: Warning: Input is not from a terminal

Error detected while processing /Users/xiang/.vimrc:
line 1:
E518: Unknown option: transparency=15
Press ENTER or type command to continueVim: Error reading input, exiting...
Vim: preserving files...
6708 次点击
所在节点    Vim
9 条回复
liwei
2013-02-23 20:33:27 +08:00
vim -
luin
2013-02-23 20:33:43 +08:00
ls -lrt |vim -
Mutoo
2013-02-23 20:35:28 +08:00
ls -lrt | vim -
napoleonu
2013-02-23 20:41:50 +08:00
ls | xargs vim # 同时打开多个文件
:n [file_name] #切换文件
napoleonu
2013-02-23 20:43:19 +08:00
哦,我理解错了。不好意思。
codeplay
2013-02-23 20:44:47 +08:00
@liwei
@luin
@Mutoo
@napoleonu

原理是什么呢?为什么more或者less不需要那个“-”呢?
swulling
2013-02-23 20:52:23 +08:00
@codeplay 和具体程序的内部逻辑有关,没啥需要不需要的。。

比如你可以写个程序看到参数里有-就去读标准输入,你也可以写个程序直接读标准输入。。
Mutoo
2013-02-23 21:44:31 +08:00
@codeplay vim 本身没有直接从 stdin 读入信息。而 - 参数相当于一个开关,表示从标准输入读入信息。而管道的功能就是把前一个程序的 stdout 作为下一个程序的 stdin
wanghui
2013-02-24 21:24:45 +08:00
@codeplay 前不久刚好查过这方面资料

Many commands use a hyphen (-) in place of a filename as an argument to indicate when the input should come from stdin rather than a file.

man vim
- The file to edit is read from stdin. Commands are read from stderr, which should be a tty.

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/61163

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX