当你打算真正操纵好你的 Linux 系统,没有什么能比命令行界面更让你做到这一点。为了成为一个 Linux 高手,你必须能够理解 shell 命令的不同类型[1],并且会在终端下正确的使用它们。

在 Linux 下,命令有几种类型,对于一个 Linux 新手来说,知道不同命令的意思才能够高效和准确的使用它们。因此,在这篇文章里,我们将会遍及各种不同分类的 Linux Shell 命令。

需要注意一件非常重要的事:命令行界面和 Shell 是不同的,命令行界面只是为你提供一个访问 Shell 的方式。而 Shell ,它是可编程的,这使得它可以通过命令与内核进行交流。

linux 使用基本操作命令shell(理解Linux下)(1)

下面列出了 Linux 下命令的不同种类:

1. 程序可执行文件(文件系统 中的命令)

当你执行一条命令的时候,Linux 通过从左到右搜索存储在 $PATH环境变量中的目录来找到这条命令的可执行文件。

你可以像下面这样查看存储在 $PATH中的目录:

  1. $ echo $PATH

  2. /home/aaronkilik/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games

在上面的命令中,目录 /home/aaronkilik/bin将会被首先搜索,紧跟着是/usr/local/sbin,然后一直接着下去。在搜索过程中,搜索顺序是至关重要的。

比如在 /usr/bin目录里的文件系统中的命令:

  1. $ ll /bin/

示例输出:

  1. total 16284

  2. drwxr-xr-x 2 root root 4096 Jul 31 16:30 ./

  3. drwxr-xr-x 23 root root 4096 Jul 31 16:29 ../

  4. -rwxr-xr-x 1 root root 6456 Apr 14 18:53 archdetect*

  5. -rwxr-xr-x 1 root root 1037440 May 17 16:15 bash*

  6. -rwxr-xr-x 1 root root 520992 Jan 20 2016 btrfs*

  7. -rwxr-xr-x 1 root root 249464 Jan 20 2016 btrfs-calc-size*

  8. lrwxrwxrwx 1 root root 5 Jul 31 16:19 btrfsck -> btrfs*

  9. -rwxr-xr-x 1 root root 278376 Jan 20 2016 btrfs-convert*

  10. -rwxr-xr-x 1 root root 249464 Jan 20 2016 btrfs-debug-tree*

  11. -rwxr-xr-x 1 root root 245368 Jan 20 2016 btrfs-find-root*

  12. -rwxr-xr-x 1 root root 270136 Jan 20 2016 btrfs-image*

  13. -rwxr-xr-x 1 root root 249464 Jan 20 2016 btrfs-map-logical*

  14. -rwxr-xr-x 1 root root 245368 Jan 20 2016 btrfs-select-super*

  15. -rwxr-xr-x 1 root root 253816 Jan 20 2016 btrfs-show-super*

  16. -rwxr-xr-x 1 root root 249464 Jan 20 2016 btrfstune*

  17. -rwxr-xr-x 1 root root 245368 Jan 20 2016 btrfs-zero-log*

  18. -rwxr-xr-x 1 root root 31288 May 20 2015 bunzip2*

  19. -rwxr-xr-x 1 root root 1964536 Aug 19 2015 busybox*

  20. -rwxr-xr-x 1 root root 31288 May 20 2015 bzcat*

  21. lrwxrwxrwx 1 root root 6 Jul 31 16:19 bzcmp -> bzdiff*

  22. -rwxr-xr-x 1 root root 2140 May 20 2015 bzdiff*

  23. lrwxrwxrwx 1 root root 6 Jul 31 16:19 bzegrep -> bzgrep*

  24. -rwxr-xr-x 1 root root 4877 May 20 2015 bzexe*

  25. lrwxrwxrwx 1 root root 6 Jul 31 16:19 bzfgrep -> bzgrep*

  26. -rwxr-xr-x 1 root root 3642 May 20 2015 bzgrep*

2. Linux 别名

这些是用户定义的命令,它们是通过 shell 内置命令 alias创建的,其中包含其它一些带有选项和参数的 shell 命令。这个意图主要是使用新颖、简短的名字来替代冗长的命令。

创建一个别名的语法像下面这样:

  1. $ alias newcommand='command -options'

通过下面的命令,可以列举系统中的所有别名:

  1. $ alias -p

  2. alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\ \s*//;s/[;&|]\s*alert$//'\'')"'

  3. alias egrep='egrep --color=auto'

  4. alias fgrep='fgrep --color=auto'

  5. alias grep='grep --color=auto'

  6. alias l='ls -CF'

  7. alias la='ls -A'

  8. alias ll='ls -alF'

  9. alias ls='ls --color=auto'

要在 Linux 中创建一个新的别名,仔细阅读下面的例子。

  1. $ alias update='sudo apt update'

  2. $ alias upgrade='sudo apt dist-upgrade'

  3. $ alias -p | grep 'up'

linux 使用基本操作命令shell(理解Linux下)(2)

然而,上面这些我们创建的别名只能暂时的工作,当经过下一次系统启动后它们不再工作。你可以像下面展示的这样在 '.bashrc' 文件中设置永久别名。

linux 使用基本操作命令shell(理解Linux下)(3)

添加以后,运行下面的命令来激活:

  1. $ source ~/.bashrc

3. Linux Shell 保留字

在 shell 程序设计中,ifthenfiforwhilecaseesacelseuntil以及其他更多的字都是 shell 保留字。正如描述所暗示的,它们在 shell 中有特殊的含义。

你可以通过使用下面展示的 type命令来列出所有的 shell 关键字:

  1. $ type if then fi for while case esac else until

  2. if is a shell keyword

  3. then is a shell keyword

  4. fi is a shell keyword

  5. for is a shell keyword

  6. while is a shell keyword

  7. case is a shell keyword

  8. esac is a shell keyword

  9. else is a shell keyword

  10. until is a shell keyword

4. Linux shell 函数

一个 shell 函数是一组在当前 shell 内一起执行的命令。函数有利于在 shell 脚本中实现特殊任务。在 shell 脚本中写 shell 函数的传统形式是下面这样:

  1. function_name {

  2. command1

  3. command2

  4. ......

  5. }

或者像这样:

  1. function function_name {

  2. command1

  3. command2

  4. ......

  5. }

让我们看一看如何在一个名为 shell_functions.sh 的脚本中写 shell 函数。

  1. #!/bin/bash

  2. #write a shell function to update and upgrade installed packages

  3. upgrade_system{

  4. sudo apt update;

  5. sudo apt dist-upgrade;

  6. }

  7. #execute function

  8. upgrade_system

取代通过命令行执行两条命令:sudo apt updatesudo apt dist-upgrade,我们在脚本内写了一个像执行一条单一命令一样来执行两条命令的 shell 函数 upgrade_system。

保存文件,然后使脚本可执行。最后像下面这样运行 shell 函数:

  1. $ chmod x shell_functions.sh

  2. $ ./shell_functions.sh

linux 使用基本操作命令shell(理解Linux下)(4)

5. Linux Shell 内置命令

这些是在 shell 中内置的 Linux 命令,所以你无法在文件系统中找到它们。这些命令包括pwdcdbgaliashistorytypesourcereadexit等。

你可以通过下面展示的 type命令来列出或检查 Linux 内置命令:

  1. $ type pwd

  2. pwd is a shell builtin

  3. $ type cd

  4. cd is a shell builtin

  5. $ type bg

  6. bg is a shell builtin

  7. $ type alias

  8. alias is a shell builtin

  9. $ type history

  10. history is a shell builtin

学习一些 Linux 内置命令用法:

结论

作为一个 Linux 用户,知道你所运行的命令类型是很重要的。我相信,通过上面明确、简单并且易于理解的解释,包括一些相关的说明,你可能对 “Linux 命令的不同种类[5]”有了很好的理解。

你也可以在下面的评论区提任何问题或补充意见,从而和我们取得联系。

作者:Aaron Kili [6] 译者:ucasFL校对:wxy

本文由 LCTT[7] 原创编译,Linux中国荣誉推出

[1]: http://www.tecmint.com/different-types-of-linux-shells/

[2]: http://www.tecmint.com/pwd-command-examples/

[3]: http://www.tecmint.com/cd-command-in-linux/

[4]: http://www.tecmint.com/history-command-examples/

[5]: http://www.tecmint.com/different-types-of-linux-shells/

[6]: http://www.tecmint.com/author/aaronkili/

[7]: https://github.com/LCTT/TranslateProject

推荐文章

linux 使用基本操作命令shell(理解Linux下)(5)

将文章分享给朋友是对我们最好的赞赏!

,