我們經常會看到 在說乙個物件的man page 的時候,會有這樣的格式:
mmap(2)
shm_open(3)
這個後面的數字是什麼意思呢,通過 man man 命令就可以知道,這個是數字是,section
大多數類unix 作業系統,都採用相同的section 的約定:
section 1
user commands (introduction)
section 2
system calls (introduction)
section 3
library functions (introduction)
section 4
special files (introduction)
section 5
file formats (introduction)
section 6
games (introduction)
section 7
conventions and miscellany (introduction)
section 8
administration and privileged commands (introduction)
section l
math library functions
section n
tcl functions
通過後面的數字,你就能明白乙個函式是系統呼叫,還是只是乙個類庫中的乙個函式。這個數字還是相當有意義的。
Linux man 命令後面的數字含義及作用
linux的man很強大,該手冊分成很多section,使用man時可以指定不同的section來瀏覽,各個section意義如下 1 commands 2 system calls 3 library calls 4 special files 5 file formats and convert...
Linux man 後面的數字含義及作用
linux的man很強大,該手冊分成很多section,使用man時可以指定不同的section來瀏覽,各個section意義如下 1 executable programs or shell commands 2 system calls functions provided by the ker...
find exec 命令後面的 和
乙個 exec只能執行乙個命令,而且必須在命令後面加上終結符,終結符有兩個 和 其中 會對每乙個find到的檔案去執行一次cmd命令。而 讓find到的檔案一次性執行完cmd命令。為什麼必須有終結符?因為乙個find後面可以有多個 exec cmd,所以必須要有終結符分割他們。如果不加,會包缺少引數...