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.
我有一个脚本/home/user/tde.sh,我想制作一个可以在我将其键入终端时运行该脚本的单一工作命令。因此,如果我在终端窗口中写入“tetras”,它将运行我的/home/user/tde.sh. 我怎样才能在 ubuntu 中实现这一点?
/home/user/tde.sh
PS 这是为了帮助我实现桌面环境目标,因为我现在只需要桌面,然后我只需要一个快速命令来运行这个脚本,然后启动我正在开发的桌面环境。
我建议你为它创建一个函数:
function tetras { bash /home/user/tde.sh "$@" }
并将其放入~/.bashrc.
~/.bashrc
# alias tetras=/home/user/tde.sh
如果您愿意,请将其放入您的 .bashrc 文件中。
http://www.lehman.cuny.edu/cgi-bin/man-cgi?alias+1