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.
在命令提示符下工作时,我经常使用命令,这需要大量时间手动输入。我知道必须有一些快捷方式,我可以通过这些快捷方式在快捷方式中执行此命令并达到预期的效果。我知道我们可以使用先前执行的命令使用 arrow ,但这不符合我的要求。
提前致谢。
您可以使用别名。只需在 .bashrc(或 .zshrc)的末尾添加以下行
alias <shortcut_command>='<your_long_command>'
前任:
alias proj='cd /Users/rival/Desktop/java/stweik'
您可以将您的命令放在 /usr/local/bin/ 内的文件中,并授予它可执行的权限。
然后就可以直接输入文件名来调用脚本了。