在使用man時經常能看到要查詢的條目後面有乙個括號裡面有乙個數字,這個數字其實表示所查詢條目的類別,而使用man時可直接指定類別,比如:
man 5 crontab
與直接用
man crontab
查出的結果不一樣哦。
如下是man後面的數字代表的含義。
1 executable programs or shell commands
使用者命令,例如 ls(1)
2 system calls (functions provided by the kernel)
系統呼叫,例如 _exit(2)
3 library calls (functions within program libraries)
庫函式,例如 printf(3)
4 special files (usually found in /dev)
特殊檔案,例如 null(4) 描述了裝置檔案 /dev/null、/dev/zero 的作用
5 file formats and conventions eg /etc/passwd
系統配置檔案的格式,例如 passwd(5) 描述了系統配置檔案 /etc/passwd 的格式
6 games
遊戲 7 miscellaneous (including macro packages and conventions), e.g.
man(7), groff(7)
其它雜項,例如 bash-builtins(7) 描述
8 system administration commands (usually only for root)
系統管理命令,例如 ifconfig(8)
9 kernel routines [non standard]
具體含義可以man man來檢視(自己查自己)。
過慮數字型別後面的0
author quietwalk date 2011 06 13 operation 過濾數字型資料的後面的0,保證只有乙個0 輸入 45.000 輸出 45.0 public static string trim0 string ls original while strr1 0 如果被刪除光了,...
css no repeat後面的數字是什麼意思?
內容提要 css no repeat後面的數字是什麼意思?css no repeat後面的數字是什麼意思,比如css no repeat 0 0,css no repeat 8px 0。css no repeat後面的數字是什麼意思,比如css no repeat 0 0,css no repeat...
Linux man 後面的數字含義及作用
linux的man很強大,該手冊分成很多section,使用man時可以指定不同的section來瀏覽,各個section意義如下 1 executable programs or shell commands 2 system calls functions provided by the ker...