Linux man --显示在线手册页
用途說(shuō)明
man命令是個(gè)常用的命令,如果你稍微熟悉Unix/Linux系統(tǒng)的話(huà),它用來(lái)顯示在線手冊(cè)頁(yè),是獲取命令、函數(shù)、配置文件等的幫助信息的重要手段,另外一個(gè)手段是info命令。manpage就是手冊(cè)頁(yè),它有一定的編寫(xiě)格式,Linux系統(tǒng)在文檔方面是做得相當(dāng)不錯(cuò)的,這給我們使用Linux提 供了方便。shell內(nèi)置命令的手冊(cè)頁(yè),顯示的是bash全部?jī)?nèi)置命令的手冊(cè)頁(yè),可以采用help命令來(lái)獲取內(nèi)置命令的幫助信息。
?
常用參數(shù)
格式:man <cmd>
顯示<cmd>命令的手冊(cè)頁(yè)。默認(rèn)情況下,man命令使用less作為顯示文檔的命令。
?
手冊(cè)頁(yè)的操作指令:
按q退出,這個(gè)最重要,因?yàn)镃trl+C都沒(méi)法退出來(lái)
按下箭頭可以往后一行
按回車(chē)或者上箭頭可以往前一行
按End鍵可以翻到最后一頁(yè)
按Home鍵可以翻到第一頁(yè)
按空白鍵或者PgDn鍵可以往后翻一頁(yè)
按PgUp鍵可以往前翻一頁(yè)
輸入/keyword回車(chē)可以搜索keyword
輸入?keyword回車(chē)可以往前搜索keyword
按n可以往前或往后搜索下一個(gè)
?
格式:man -k<cmd>
格式:apropos<cmd>
顯示與<cmd>有關(guān)的手冊(cè)頁(yè)列表。
?
格式:man 1 <cmd>
顯示<cmd>命令的手冊(cè)頁(yè)。
?
格式:man 2<syscall>
顯示系統(tǒng)調(diào)用<syscall>的手冊(cè)頁(yè)。
?
格式:man<section> <name>
顯示<name>指定章節(jié)<section>的手冊(cè)頁(yè),其中<section>包括
1、Standard commands(標(biāo)準(zhǔn)命令)
2、System calls(系統(tǒng)調(diào)用)
3、Library functions(庫(kù)函數(shù))
4、Special devices(設(shè)備說(shuō)明)
5、File formats(文件格式)
6、Games and toys(游戲和娛樂(lè))
7、Miscellaneous (雜項(xiàng))
8、AdministrativeCommands (管理員命令)
?
使用示例
示例一 顯示man的手冊(cè)頁(yè)
[root@jfht ~]# man man
man(1)?????????????????????????????????????????????????????????????????man(1)
?
NAME
??????man - format and display the on-line manual pages
?
SYNOPSIS
??????man? [-acdfFhkKtwW] [--path] [-m system] [-p string] [-C config_file] [-Mpathlist] [-P pager] [-B browser] [-H
??????htmlpager] [-S section_list] [section] name ...
?
DESCRIPTION
??????man formats and displays the on-line manual pages.? If you specifysection, man only looks in that? section? of
??????the? manual.? name is normally the name of the manual page, which istypically the name of a command, function,
??????or file.? However, if name contains a slash (/) then man interprets it asa file specification, so that you can
??????do man ./foo.5 or even man /cd/foo/bar.1.gz.
?
??????See below for a description of where man looks for the manual page files.
?
OPTIONS
??????-C? config_file
?????????????Specify the configuration file to use; the default is /etc/man.config.?(See man.config(5).)
?
??????-M? path
?????????????Specify? the? list? of? directories? to search for manpages.? Separate the directories with colons.? An
?????????????empty list is the same as not specifying -M at all.? See SEARCH PATH FORMANUAL PAGES.
?
??????-P? pager
?????????????Specify which pager to use.? This option overrides the MANPAGER?environment? variable,? which? in? turn
?????????????overrides the PAGER variable.? By default, man uses /usr/bin/less -is.
?
??????-B???? Specify? which browser to use on HTMLfiles.? This option overrides the BROWSER environment variable. By
?????????????default, man uses /usr/bin/less-is,
?
??????-H???? Specify a command that renders HTML files astext.? This? option? overrides? the? HTMLPAGER?environment
?????????????variable. By default, man uses /bin/cat,
?
??????-S? section_list
?????????????List is a colon separated list of manual sections to search.? This optionoverrides the MANSECT environ-
?????????????ment variable.
?
??????-a???? By default, man will exit after displaying the firstmanual page it finds.? Using this option forces man
:q
[root@jfht ~]#
?
示例二 顯示C函數(shù)printf的手冊(cè)頁(yè)
[root@jfht ~]# man printf
PRINTF(1)???????????????????????UserCommands??????????????????????PRINTF(1)
?
NAME
??????printf - format and print data
?
SYNOPSIS
??????printf FORMAT [ARGUMENT]...
??????printf OPTION
?
DESCRIPTION
??????Print ARGUMENT(s) according to FORMAT.
?
??????--help display this help and exit
?
??????--version
?????????????output version information and exit
?
??????FORMAT controls the output as in C printf.? Interpreted sequences are:
?
??????\"???? double quote
?
??????\NNN?? character with octal value NNN (1 to 3 digits)
?
??????\\???? backslash
?
??????\a???? alert (BEL)
?
??????\b???? backspace
?
??????\c???? produce no further output
?
??????\f???? form feed
?
??????\n???? new line
?
??????\r???? carriage return
?
??????\t???? horizontal tab
?
??????\v???? vertical tab
:q
注:上面顯示的是命令printf的手冊(cè)頁(yè),但不是C函數(shù)printf的手冊(cè)頁(yè)。
[root@jfht ~]# man 3 printf
PRINTF(3)?????????????????Linux Programmer’sManual????????????????PRINTF(3)
?
NAME
??????printf, fprintf, sprintf, snprintf, vprintf, vfprintf, vsprintf, vsnprintf -formatted output conversion
?
SYNOPSIS
??????#include <stdio.h>
?
??????int printf(const char *format, ...);
??????int fprintf(FILE *stream, const char *format, ...);
??????int sprintf(char *str, const char *format, ...);
??????int snprintf(char *str, size_t size, const char *format, ...);
?
??????#include <stdarg.h>
?
??????int vprintf(const char *format, va_list ap);
??????int vfprintf(FILE *stream, const char *format, va_list ap);
??????int vsprintf(char *str, const char *format, va_list ap);
??????int vsnprintf(char *str, size_t size, const char *format, va_list ap);
?
DESCRIPTION
??????The? functions? in? the? printf() family produce outputaccording to a format as described below. The functions
??????printf() and vprintf() write output to stdout, the standard output stream;fprintf() and vfprintf() write? out-
??????put to the given output stream; sprintf(), snprintf(), vsprintf() andvsnprintf() write to the character string
??????str.
?
??????The functions vprintf(),? vfprintf(),? vsprintf(),?vsnprintf()? are? equivalent? to? the? functions?printf(),
??????fprintf(),? sprintf(),? snprintf(), respectively, except that theyare called with a va_list instead of a vari-
??????able number of arguments. These functions do not call the va_end macro.Consequently, the value of ap is? unde-
??????fined after the call. The application should call va_end(ap) itself afterwards.
?
??????These eight functions write the output under the control of a format stringthat specifies how subsequent argu-
??????ments (or arguments accessed via the variable-length argument facilities ofstdarg(3)) are converted? for? out-
??????put.
?
?? Returnvalue
??????Upon? successful? return,? these? functions return thenumber of characters printed (not including the trailing
??????’\0’ used to end output to strings).? The functions snprintf() andvsnprintf() do? not? write? more? than? size
??????bytes? (including? the? trailing ’\0’).? If the output wastruncated due to this limit then the return value is
??????the number of characters (not including the trailing ’\0’) which would havebeen written to the final string if
[root@jfht ~]#
?
示例三 查找與kill有關(guān)的手冊(cè)頁(yè)
[root@jfht ~]# man-k kill
kill????????????????(1)? - terminate a process
kill????????????????(1p)? - terminate or signal processes
kill????????????????(2)? - send signal to a process
kill????????????????(3p)? - send a signal to a process or a group of processes
kill[builtins]????? (1)? - bash built-in commands,see bash(1)
killall?????????????(1)? - kill processes by name
killchar[curs_termattrs] (3x)? - curses environment query routines
killpg??????????????(2)? - send signal to a process group
killpg??????????????(3)? - send signal to all members of a process group
killpg??????????????(3p)? - send a signal to a process group
killwchar[curs_termattrs] (3x)? - curses environment query routines
mysql_waitpid???????(1)? - kill process and wait for its termination
mysql_zap???????????(1)? - kill processes that match a pattern
pkill[pgrep]??????? (1)? - look up or signalprocesses based on name and other attributes
pthread_kill????????(3p)? - send a signal to a thread
skill???????????????(1)? - send a signal or report process status
snice[skill]??????? (1)? - send a signal orreport process status
tgkill??????????????(2)? - Send signal sig to one specific thread, tgid
tkill???????????????(2)? - send a signal to a single process
xkill???????????????(1x)? - kill a client by its X resource
yes?????????????????(1)? - output a string repeatedly until killed
[root@jfht ~]#
?
源文檔 <http://codingstandards.iteye.com/blog/971078>
?
man page
嗄?不知道怎么使用date 這個(gè)指令?嘿嘿嘿!不要擔(dān)心,我們 Linux 上面的在線求助系統(tǒng)已經(jīng)都幫您想好要怎么辦了,所以你只要使用簡(jiǎn)單的方法去尋找一下說(shuō)明的內(nèi)容, 馬上就清清楚楚的知道該指令的用法了!怎么看呢?就是找男人( man ) 呀!?喔!不是啦!這個(gè) man 是 manual (操作說(shuō)明) 的簡(jiǎn)寫(xiě)啦!只要下達(dá): 『man date』 馬上就會(huì)有清楚的說(shuō)明出現(xiàn)在你面前喔!如下所示:
?
[root@linux ~]#LANG="en"
# 還記得這個(gè)咚咚的用意吧?前面提過(guò)了,是為了『語(yǔ)系』的需要啊!下達(dá)過(guò)一次即可!
[root@linux ~]# man date
DATE(1)????????????????????????? UserCommands???????????????????????? DATE(1)
NAME
?????? date - print or set the systemdate and time
SYNOPSIS
?????? date [OPTION]...[+FORMAT]
?????? date [-u|--utc|--universal][MMDDhhmm[[CC]YY][.ss]]
DESCRIPTION
?????? Display the current time in thegiven FORMAT, or set the system date.
-d,--date=STRING
????????????? display time described bySTRING, not 'now'
-f,--file=DATEFILE
????????????? like --date once for eachline of DATEFILE
-ITIMESPEC,--iso-8601[=TIMESPEC]
????????????? output? date/time?in ISO 8601 format.? TIMESPEC='date'for date
????????????? only, 'hours', 'minutes',or 'seconds' for date and time to?the
????????????? indicated? precision.??--iso-8601? without TIMESPECdefaults to
????????????? 'date'.
................(略)....
AUTHOR
?????? Written by David MacKenzie.
REPORTINGBUGS
?????? Report bugs to .
COPYRIGHT
?????? Copyright ?2004 Free SoftwareFoundation, Inc.
?????? This is free software; see thesource for copying conditions.? Thereis
?????? NO warranty; not even forMERCHANTABILITY or FITNESS FOR? A? PARTICULAR
?????? PURPOSE.
SEE ALSO
?????? The? full documentation for date is maintained asa Texinfo manual.? If
?????? the info and date programs areproperly installed? at? your?site,? the
?????? command
info coreutils date
should give youaccess to the complete manual.
date (coreutils)5.2.1???????????? May 2005??????????????????????????? DATE(1)
看!馬上就知道一大堆的用法了!如此一來(lái),不就可以知道date 的相關(guān)參數(shù)了嗎?呵呵!真方便! 而出現(xiàn)的這個(gè)屏幕畫(huà)面,我們稱(chēng)呼他為 man page , 您可以在里頭查詢(xún)他的用法與相關(guān)的參數(shù)說(shuō)明。如果仔細(xì)一點(diǎn)來(lái)看這個(gè) man page 的話(huà), 您會(huì)發(fā)現(xiàn)幾個(gè)有趣的東西。
?
首先,在上個(gè)表格的第一行,您可以看到的是:『DATE(1)』,DATE 我們知道是指令的名稱(chēng), 那么 (1) 代表什么呢?他代表的是『一般用戶(hù)可使用的指令』的意思!咦!還有這個(gè)用意啊!!呵呵! 沒(méi)錯(cuò)~在查詢(xún)數(shù)據(jù)的后面的數(shù)字是有意義的喔!他可以幫助我們了解或者是直接查詢(xún)相關(guān)的資料。 常見(jiàn)的幾個(gè)數(shù)字的意義是這樣的:
?
?
| 代號(hào) | 代表內(nèi)容 |
| 1 | 用戶(hù)可以操作的指令或可執(zhí)行文件 |
| 2 | 系統(tǒng)核心可呼叫的函數(shù)與工具等 |
| 3 | 一些常用的函數(shù)(function)與函式庫(kù)(library) |
| 4 | 裝置檔案的說(shuō)明 |
| 5 | 配置文件或者是某些檔案的格式 |
| 6 | 游戲(games) |
| 7 | 慣例與協(xié)議等,例如 Linux 標(biāo)準(zhǔn)文件系統(tǒng)、 網(wǎng)絡(luò)協(xié)議、ASCII code 等等的說(shuō)明內(nèi)容 |
| 8 | 系統(tǒng)管理員可用的管理指令 |
| 9 | 跟 kernel 有關(guān)的文件 |
所以,未來(lái)您如果使用man page 在察看某些數(shù)據(jù)時(shí),就會(huì)知道該指令/檔案所代表的基本意義是什么了。 舉例來(lái)說(shuō),如果您下達(dá)了 man null 時(shí),會(huì)出現(xiàn)的第一行是:『NULL(4)』,對(duì)照一下上面的數(shù)字意義, 嘿嘿!原來(lái) null 這個(gè)玩意兒竟然是一個(gè)『裝置檔案』呢!很容易了解了吧!?
?
再來(lái),manpage 的內(nèi)容也分成好幾個(gè)部分來(lái)加以介紹該指令呢!就是上頭 man date 那個(gè)表格內(nèi), 以 NAME 作為開(kāi)始介紹,最后還有個(gè)SEE ALSO 來(lái)作為結(jié)束。基本上, man page 大致分成底下這幾個(gè)部分:
?
?
| 代號(hào) | 內(nèi)容說(shuō)明 |
| NAME | 簡(jiǎn)短的指令、數(shù)據(jù)名稱(chēng)說(shuō)明 |
| SYNOPSIS | 簡(jiǎn)短的指令下達(dá)語(yǔ)法(syntax)簡(jiǎn)介 |
| DESCRIPTION | 較為完整的說(shuō)明,這部分最好仔細(xì)看看! |
| OPTIONS | 針對(duì) SYNOPSIS 部分中,有列舉的所有可用的參數(shù)說(shuō)明 |
| COMMANDS | 當(dāng)這個(gè)程序(軟件)在執(zhí)行的時(shí)候,可以在此程序(軟件)中下達(dá)的指令 |
| FILES | 這個(gè)程序或數(shù)據(jù)所使用或參考或連結(jié)到的某些檔案 |
| SEE ALSO | 可以參考的,跟這個(gè)指令或數(shù)據(jù)有相關(guān)的其他說(shuō)明! |
| EXAMPLE | 一些可以參考的范例 |
| BUGS | 是否有相關(guān)的臭蟲(chóng)! |
有時(shí)候除了這些外,還可能會(huì)看到Authors 與 Copyright 等等,不過(guò)也有很多時(shí)候僅有 NAME 與 DESCRIPTION 等部分。 通常鳥(niǎo)哥在查詢(xún)某個(gè)數(shù)據(jù)時(shí),一定會(huì)察看NAME 約略看一下這個(gè)數(shù)據(jù)的意思,再詳看一下 DESCRIPTION ,這個(gè) DESCRIPTION 會(huì)提到很多相關(guān)的資料與使用時(shí)機(jī),從這個(gè)地方可以學(xué)到很多小細(xì)節(jié)呢!而如果這個(gè)指令其實(shí)很熟悉了 (例如上面的 date ),那么鳥(niǎo)哥主要就是查詢(xún)關(guān)于 OPTIONS 的部分了!可以知道每個(gè)參數(shù)的意思, 這樣就可以下達(dá)比較細(xì)部的指令內(nèi)容呢!最后,鳥(niǎo)哥會(huì)再看一下,啊跟這個(gè)資料有關(guān)的還有哪些東西可以使用的? 舉例來(lái)說(shuō),上面的 SEE ALSO 就告知我們還可以利用『info coreutils date』來(lái)進(jìn)一步查閱數(shù)據(jù), 某些說(shuō)明內(nèi)容還會(huì)列舉有關(guān)的檔案(FILES 部分) 來(lái)提供我們參考!這些都是很有幫助的!
?
好了,大致上了解了man page 的內(nèi)容后,那么,在 man page 當(dāng)中我還可以利用哪些按鍵來(lái)幫忙查閱呢? 首先,如果要向下翻頁(yè)的話(huà),可以按下鍵盤(pán)的 空格鍵 ,也可以使用 [PageUp] 與[Page Down] 來(lái)翻頁(yè)呢!同時(shí),如果您知道某些關(guān)鍵詞的話(huà), 那么可以在任何時(shí)候輸入『 /word 』,來(lái)主動(dòng)搜尋關(guān)鍵詞!例如在上面的搜尋當(dāng)中, 我輸入了 /date 會(huì)變成怎樣?
?
DATE(1)????????????????????????? User Commands???????????????????????? DATE(1)
NAME
?????? date - print or set the systemdate and time
SYNOPSIS
?????? date [OPTION]...[+FORMAT]
?????? date [-u|--utc|--universal][MMDDhhmm[[CC]YY][.ss]]
DESCRIPTION
?????? Display the current time in thegiven FORMAT, or set the system date.
...........(中間省略)........
/date
看到了嗎?您按下『/』之后,光標(biāo)應(yīng)該就會(huì)移動(dòng)到屏幕的最下面一行,并等待您輸入搜尋的字符串了。此時(shí),輸入 date 后, man page 就會(huì)開(kāi)始搜尋跟 date 有關(guān)的字符串, 并且移動(dòng)到該區(qū)域呢!很方便吧!最后,如果要離開(kāi) man page 時(shí),直接按下『 q 』就能夠離開(kāi)了。 我們將一些在 man page 常用的按鍵給他整理整理:
?
?
| 按鍵 | 進(jìn)行工作 |
| 空格鍵 | 向下翻一頁(yè) |
| [Page Down] | 向下翻一頁(yè) |
| [Page Up] | 向上翻一頁(yè) |
| [Home] | 去到第一頁(yè) |
| [End] | 去到最后一頁(yè) |
| /string | 向『下』搜尋 string 這個(gè)字符串,如果要搜尋 vbird 的話(huà),就輸入 /vbird |
| ?string | 向『上』搜尋 string 這個(gè)字符串 |
| n, N | 利用 / 或 ? 來(lái)搜尋字符串時(shí),可以用 n 來(lái)繼續(xù)下一個(gè)搜尋 (不論是 / 或 ?) ,可以利用 N 來(lái)進(jìn)行『反向』搜尋。舉例來(lái)說(shuō),我以 /vbird 搜尋 vbird 字符串, 那么可以 n 繼續(xù)往下查詢(xún),用 N 往上查詢(xún)。若以 ?vbird 向上查詢(xún) vbird 字符串, 那我可以用 n 繼續(xù)『向上』查詢(xún),用 N 反向查詢(xún)。 |
| q | 結(jié)束這次的 man page |
要注意喔!上面的按鍵是在man page 的畫(huà)面當(dāng)中才能使用的! 比較有趣的是那個(gè)搜尋啦!我們可以往下或者是往上搜尋某個(gè)字符串,例如要在 man page 內(nèi)搜尋 vbird 這個(gè)字符串, 可以輸入 /vbird 或者是 ?vbird ,只不過(guò)一個(gè)是往下而一個(gè)是往上來(lái)搜尋的。而要 重復(fù)搜尋 某個(gè)字符串時(shí),可以使用 n 或者是 N 來(lái)動(dòng)作即可呢! 很方便吧!^_^
?
既然有man page ,自然就是因?yàn)橛幸恍┪募?shù)據(jù),所以才能夠以 man page 來(lái)讀出來(lái)啰! 那么這些 man page的數(shù)據(jù) 放在哪里呢?不同的distribution 通常可能有點(diǎn)差異性,不過(guò),通常是放在 /usr/share/man 這個(gè)目錄里頭,然而,我們可以透過(guò)修改他的 man page 搜尋路徑來(lái)改善這個(gè)目錄的問(wèn)題!修改/etc/man.config ( 有的版本為 man.conf 或 manpath.conf) 即可啰!至于更多的關(guān)于 man 的訊息您可以使用『 manman 』來(lái)查詢(xún)呦!關(guān)于更詳細(xì)的設(shè)定,我們會(huì)在 Shell 的章節(jié)當(dāng)中繼續(xù)的說(shuō)明喔!
?
man還有一些有趣的使用方式呢!舉例來(lái)說(shuō),如果您還想要知道更多跟 man 有較相關(guān)的訊息, 可以下達(dá):
?
[root@linux ~]# man-f man
man????????????????? (1)? - format and display the on-line manualpages
man????????????????? (7)? - macros to format man pages
man.conf [man]?????? (5)? - configuration data for man
看到了嗎?使用-f 的參數(shù),可以取得更多的 man 的相關(guān)信息,而上頭這個(gè)表格當(dāng)中,也有提示了 (數(shù)字) 的內(nèi)容, 舉例來(lái)說(shuō),第二行的『 man(7) 』表示有個(gè) man (7) 的說(shuō)明文件存在喔!但是卻有個(gè) man (1) 存在啊! 那當(dāng)我們下達(dá)『 man man 』的時(shí)候,到底是找到哪一個(gè)說(shuō)明檔呢?嘿嘿!混亂了吧?! 其實(shí),您可以指定不同的文件的,舉例來(lái)說(shuō),上表當(dāng)中的兩個(gè) man 您可以這樣將他的文件叫出來(lái):
?
[root@linux~]# man 1 man? <==這里是用 man(1) 的文件數(shù)據(jù)
[root@linux ~]# man 7 man? <==這里是用 man(7) 的文件數(shù)據(jù)
你可以自行將上面兩個(gè)指令輸入一次看看,就知道,兩個(gè)指令輸出的結(jié)果是不同的。那個(gè)1, 7 就是分別取出在 man page 里面關(guān)于 1 與 7 相關(guān)數(shù)據(jù)的文件檔案啰! 好了,那么萬(wàn)一我真的忘記了下達(dá)數(shù)字,只有輸入『 man man 』時(shí),那么取出的數(shù)據(jù)到底是 1 還是 7 啊? 這個(gè)就跟搜尋的順序有關(guān)了。搜尋的順序是記錄在 /etc/man.conf 這個(gè)配置文件當(dāng)中, 先搜尋到的那個(gè)說(shuō)明檔,就會(huì)先被顯示出來(lái)! 一般來(lái)說(shuō),通常會(huì)先找到數(shù)字較小的那個(gè)啦!因?yàn)榕判虻年P(guān)系啊!所以, man man 會(huì)跟 man 1 man 結(jié)果相同! 這樣說(shuō),可以明白了嗎?!
?
除此之外,我們還可以利用『關(guān)鍵詞』找到更多的說(shuō)明文件數(shù)據(jù)喔!例如:
?
[root@linux ~]# man-k man
. [builtins]???????? (1)? - bash built-in commands, seebash(1)
alias [builtins]???? (1)? - bash built-in commands, seebash(1)
........(中間省略)....
xsm????????????????? (1x)? - X Session Manager
zshall?????????????? (1)? - the Z shell meta-manpage
zshbuiltins????????? (1)? - zsh built-in commands
zshzle?????????????? (1)? - zsh command line editor
看到了吧!很多對(duì)吧!因?yàn)檫@個(gè)是利用關(guān)鍵詞將說(shuō)明文件里面只要含有man 那個(gè)字眼的(不見(jiàn)得是完整字符串) 就將他取出來(lái)!很方便吧! ^_^
?
事實(shí)上,還有兩個(gè)指令與man page 有關(guān)呢!而這兩個(gè)指令是 man 的簡(jiǎn)略寫(xiě)法說(shuō)~ 就是這兩個(gè):
?
[root@linux~]# whatis? [指令或者是數(shù)據(jù)]?? <==相當(dāng)于 man -f [指令或者是數(shù)據(jù)]
[root@linux ~]# apropos [指令或者是數(shù)據(jù)]?? <==相當(dāng)于 man -k [指令或者是數(shù)據(jù)]
?
總結(jié)
以上是生活随笔為你收集整理的Linux man --显示在线手册页的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: P1658 购物
- 下一篇: syslinux引导硬盘linux,使用