在 tcsh 中的单个命令别名中使用 vim 查找并打开文件
我想创建一个别名,其工作方式如下: vf hello.c
将执行 find 命令来搜索 hello.c 并在 vim 编辑器中打开它。
最好的方法是什么?我尝试过以下方法(不起作用):
alias vf "find -name $* -exec vi {} \;"
alias vf "vi `find -name $*` “
有人可以帮忙吗?
I want to make an alias which would work like this:vf hello.c
would execute a find command to search for hello.c and open it in the vim editor.
What is the best way to do it? I've tried the following (doesn't work):
alias vf "find -name $* -exec vi {} \;"
alias vf "vi `find -name $*`"
Can anyone help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在尝试n个错误后找到了答案:
使用
alias vf“find -name \!:1 -exec vi {} \;”
I found the answer after a trial n error:
Use
alias vf "find -name \!:1 -exec vi {} \;"