使用文本编辑器打开文件:
text_editor test.txt
我希望它被执行,就好像它是..
text_editor test.txt & disown
答案1
如果你text_editor
总是一样使用 shell 函数。
text_editor(){
/usr/bin/text_editor "$@" & disown
}
将此代码片段放入 中~/.bashrc
,然后重新启动 shell。
这是通过用 shell 函数替换命令来实现的text_editor
,该函数依次执行您想要运行的命令。