我该如何教我的Linux命令行方式?


35

每当我在使用Ubuntu的情况下在命令行中完成某项操作,并且我的计算机对我有所帮助时,我都会很高兴地感谢您,因为这是有礼貌的事情。典型的对话可能看起来像这样:

mtp-sendfile HamishAndyPodcast.mp3 /Music/podcasts
Sending file...
Progress: 17769768 of 17769768 (100%)
New file ID: 76098
sam@sams-laptop:~$ thanks
thanks: command not found

教我的PC几种方式并以诸如“没有问题”之类的方式进行响应的最佳方法是什么。

Answers:


30

将此添加到〜/ .bash_aliases或在命令行上执行:

alias thanks='echo "No problemo dude!"'

例如:

user@host:~$ alias thanks='echo "No problemo dude!"'
user@host:~$ thanks
No problemo dude!

您也可以将其粘贴到〜/ .bashrc中。如果将其添加到〜/ .bash_aliases,请确保您的〜/ .bashrc具有如下部分:

# Alias definitions.
if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

别名前面的\会忽略该别名。
罗布

我们可以在Windows中做同样的事情吗?
Santosh Kumar

5
alias thanks='fortune zippy'

要么

alias thanks='fortune fortunes'
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.