1-2 linux命令基础

2016.5.31


命令的分类

  • linux命令

    用于实现某一类功能的指令或程序
    命令的执行依赖于解释器程序(例如/bin/bash)
  • linux命令的分类

    内部命令:属于Shell解释器的一部分
    外部命令:独立于Shell解释器之外的程序

命令的格式

  • 命令字+选项+参数

    • 选项:用于调节命令的具体功能
    • “-”引导短格式选项,例如“ls -a ”
    • “--”引导长格式选项,例如“ls --help"
    • 参数:命令的对象,如文件、目录名等

命令操作技巧:

  • Tab按键:自动补齐;按两次Tab键,系统将输出可用的名称列表

  • 反斜杠“\”:强制换行

Key Action
Ctrl + U 快速删除从当前光标处到行尾的所有字符
Ctrl + K 快速删除从当前光标处到行尾的所有字符
Ctrl + L 快速清空当前屏幕中的显示内容
Ctrl + C 取消当前命令行的编辑

Cursor Movement

Key Action
CTRL -A Move cursor to the beginning of the line.
CTRL -E Move cursor to the end of the line.
CTRL -F Move cursor forward one character; same as the right arrow key.
CTRL -B Move cursor backward one character; same as the left arrow key.
ALT -F Move cursor forward one word.
ALT -B Move cursor backward one word
CTRL -L Clear the screen and move the cursor to the top left corner.
The clear command does the same thing.

获取命令帮助

  • 内部命令help

    查看Bash内部命令的帮助信息
  • 命令的“--help”选项

    适用于大多数外部命令
  • 使用man命令于都手册页

    使用 “↑”、“↓”方向键滚动文本
    使用Page Up 和 Page Down键翻页
    按Q或q键退出阅读环境、按“/”键查找内容 大写N:向上查找
    小写n:向下查找

results matching ""

    No results matching ""