V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
codeplay
V2EX  ›  Vim

VI,VIM 如何使用管道?

  •  
  •   codeplay · 2013-02-23 20:28:18 +08:00 · 6692 次点击
    这是一个创建于 4080 天前的主题,其中的信息可能已经有所发展或是发生改变。
    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...
    9 条回复    1970-01-01 08:00:00 +08:00
    liwei
        1
    liwei  
       2013-02-23 20:33:27 +08:00 via iPad   ❤️ 2
    vim -
    luin
        2
    luin  
       2013-02-23 20:33:43 +08:00
    ls -lrt |vim -
    Mutoo
        3
    Mutoo  
       2013-02-23 20:35:28 +08:00
    ls -lrt | vim -
    napoleonu
        4
    napoleonu  
       2013-02-23 20:41:50 +08:00
    ls | xargs vim # 同时打开多个文件
    :n [file_name] #切换文件
    napoleonu
        5
    napoleonu  
       2013-02-23 20:43:19 +08:00
    哦,我理解错了。不好意思。
    codeplay
        6
    codeplay  
    OP
       2013-02-23 20:44:47 +08:00
    @liwei
    @luin
    @Mutoo
    @napoleonu

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

    比如你可以写个程序看到参数里有-就去读标准输入,你也可以写个程序直接读标准输入。。
    Mutoo
        8
    Mutoo  
       2013-02-23 21:44:31 +08:00   ❤️ 1
    @codeplay vim 本身没有直接从 stdin 读入信息。而 - 参数相当于一个开关,表示从标准输入读入信息。而管道的功能就是把前一个程序的 stdout 作为下一个程序的 stdin
    wanghui
        9
    wanghui  
       2013-02-24 21:24:45 +08:00   ❤️ 1
    @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.
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2711 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 10:56 · PVG 18:56 · LAX 03:56 · JFK 06:56
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.