Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个像这样工作的别名: vf hello.c将执行一个 find 命令来搜索 hello.c 并在 vim 编辑器中打开它。
vf hello.c
最好的方法是什么?我尝试了以下方法(不起作用):
alias vf "find -name $* -exec vi {} \;"
alias vf "vi `find -name $*`"
任何人都可以帮忙吗?
我在尝试 n 错误后找到了答案:
利用alias vf "find -name \!:1 -exec vi {} \;"
alias vf "find -name \!:1 -exec vi {} \;"