Linux命令格式:
command [-options] [parameter1] …
說明:
一般是linux命令自帶的幫助信息
如:ls --help
man是linux提供的一個(gè)手冊(cè),包含了絕大部分的命令、函數(shù)使用說明
該手冊(cè)分成很多章節(jié)(section),使用man時(shí)可以指定不同的章節(jié)來瀏覽。
例:man ls ; man 2 printf
man中各個(gè)section意義如下:
Standard commands(標(biāo)準(zhǔn)命令)
System calls(系統(tǒng)調(diào)用linux命令大全,如open,write)
Library functions(庫(kù)函數(shù),如printf,fopen)
Special devices(設(shè)備文件的說明,/dev下各種設(shè)備)
File formats(文件格式,如passwd)
Games and toys(游戲和娛樂)
Miscellaneous(雜項(xiàng)、慣例與協(xié)定等,例如Linux檔案系統(tǒng)、網(wǎng)絡(luò)協(xié)定、ASCII 碼;environ全局變量)
Administrative Commands(管理員命令linux命令大全,如ifconfig)
man是按照手冊(cè)的章節(jié)號(hào)的順序進(jìn)行搜索的。
man設(shè)置了如下的功能鍵:
功能鍵功能
空格鍵
上一個(gè)教程:【Linux】命令學(xué)習(xí)筆記和總結(jié)
下一個(gè)教程:shell 就是linux命令嗎?