我该如何教导我的 Linux 命令行礼仪?

我该如何教导我的 Linux 命令行礼仪?

每当我在使用 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 一些礼仪并用“没问题”之类的话来回应的最好方法是什么?

答案1

将其添加到 ~/.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

答案2

alias thanks='fortune zippy'

或者

alias thanks='fortune fortunes'

相关内容