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.
想要这样做:使终端命令像 lxterminal 一样做同样的事情。所以我想我需要创建一个链接。
ln -s lxterminal terminal
这不起作用,也许我需要追踪 lxterminal 的位置,但是如何?
你有(至少)两个选择。
创建符号链接:
ln -s $(which lxterminal) /path/to/terminal
创建别名:
alias terminal='lxterminal'
这两个选项都假设lxterminal您的${PATH}.
lxterminal
${PATH}
符号链接方法需要对占位符“ /path/to”(${HOME}/bin或类似的)的写入访问权限,并且您${PATH}也需要这样做。这是更强大的解决方案,但如果您只想在提示符下保存输入,则别名可能就足够了。
/path/to
${HOME}/bin