Linux命令格式:
command [-options] [parameter1] …
说明:
一般是linux命令自带的帮助信息
如:ls --help
man是linux提供的一个手册,包含了绝大部分的命令、函数使用说明
该手册分成很多章节(section),使用man时可以指定不同的章节来浏览。
例:man ls ; man 2 printf
man中各个section意义如下:
Standard commands(标准命令)
System calls(系统调用linux命令大全,如open,write)
Library functions(库函数,如printf,fopen)
Special devices(设备文件的说明,/dev下各种设备)
File formats(文件格式,如passwd)
Games and toys(游戏和娱乐)
Miscellaneous(杂项、惯例与协定等,例如Linux档案系统、网络协定、ASCII 码;environ全局变量)
Administrative Commands(管理员命令linux命令大全,如ifconfig)
man是按照手册的章节号的顺序进行搜索的。
man设置了如下的功能键:
功能键功能
空格键
上一个教程:【Linux】命令学习笔记和总结
下一个教程:shell 就是linux命令吗?