Vim: execute current file?

后端 未结 6 2030
庸人自扰
庸人自扰 2021-01-30 03:34

If I have a file with a shebang line (e.g. #!/bin/bash) open in Vim and the file has execute permissions (i.e. chmod +x) I know I can type this to exec

6条回答
  •  南方客
    南方客 (楼主)
    2021-01-30 04:18

    When starting vi, specify file path explicitly, like this "vi ./blablabla"

    vi ./yourscript.pl
    

    After that start at anytime with only :!%

    The other variant is to invoke the vi command like this

    !./%
    

提交回复
热议问题