Linux 9 Linux下獲取幫助

2021-07-02 02:40:16 字數 538 閱讀 5498

1. -h或--help引數

在linux中,幾乎所有的命令都可以通過使用-h或--help引數獲取使用方法引數資訊等.

2. man

man命令是linux中最為常用的幫助命令, 將要獲取幫助的命令作為引數執行man命令就可以獲取相應的文件幫助.

man文件分為很多態別:

1  使用者命令

2  核心系統呼叫

3  庫函式

4  特殊檔案和裝置

5  檔案格式和規範

6  遊戲

7  規範,標準和其它頁面

8  系統管理命令

9  linux核心api

man -k 《關鍵字》  可以用來查詢包含該關鍵字的文件

3. info

info命令與man類似,但是提供的資訊更為詳細深入,以類似網頁的形式顯示.

man與info都可以通過"/ 關鍵字"方式進行搜尋

4. 很多程式,命令都帶有詳細的文件,以txt,html,pdf等方式儲存在/usr/share/doc目錄中,這些文件是相應程式最為詳盡的文件

Linux下獲取時間

函式 clock gettime 是基於linux c語言的時間函式,可以用於計算時間,有秒和納秒兩種精度。函式原型 int clock gettime clockid t clk id,struct timespec tp 其中,cld id型別四種 a clock realtime 系統實時時間...

Linux 下時間獲取

1 獲得當天的日期 date y m d 2 將當前日期賦值給date變數 date date y m d 3 獲取明天的日期 date d next day y m d 4 獲取昨天的日期 date d last day y m d 5 獲取上個月的年和月 date d last month y ...

Linux下獲取系統資訊

相關函式 include int gethostname char name,size t name include int uname struct utsname name 相關結構 struct utsname 例子int main void printf host name s n comp...