linux man 頁面格式
name顯示命令的名稱和簡介
synopsis顯示命令的格式
description描述每個命令的選項
author 該命令開發人員資訊
reporting bugs提交bug報告途徑
see also推薦檢視相似命令
ps 命令
bsd風格的引數,前面不見破折線
gnu風格長引數,前面加雙破折線
top 命令
pid程序的程序號
user程序屬主的名字
pr程序的優先順序
ni程序的謙讓度值
virt程序占用的虛擬記憶體總量
res程序占用的物理記憶體總量
shr程序和其他程序共享的內從總量
s程序狀態(d 中斷的休眠 r 執行 s 休眠 t 跟蹤狀態或停止狀態 z 殭屍狀態 程序執行完父程序沒反映
%cpu程序使用的cpu時間比例
%mem程序使用的記憶體佔可用記憶體的比例
time+自程序啟動到目前位置的cpu時間總量
command程序的命令列名稱,也就是啟動的程式名
sort 命令
-b--ignore-leading-blanks排序時忽略起始的空白
-f--ignore-case預設,會將大寫字母排在前面,-f 忽略大小寫
-k--key=pos1[,pos2]排序從pos1位置開始,如果指定了pos2的話,到pos2位置結束
-m--month-sort用三字元月份名按月份排序
-n--number-sort按字串數值來排序(並不轉換為浮點數) -g 把值當浮點數來排序
-o--output=file將排序結果寫出到指定的檔案中
-r--reverse反序排序 降序
-t--field-separator=sep指定乙個用來區分鍵位置的字元
-u--unique
grep 命令
synopsisgrep [ options ] pattern [ file ]
-v不顯示匹配pattern的行
-oprint only the matched (non-empty) parts of a matching line, with each such part on a separate output line。
-n列印的時候顯示行號
-c統計有多少行含有匹配的模式
-epattern or pattern
Linux命令列 基本的bash shell命令
如 zmcheng x 501 501 zhangmingcheng home zmcheng bin bash ps 就是每換一行命令顯示的字元。bash 手冊 linux檔案系統 根驅動器 在linux pc上安裝的第一塊硬碟 cd命令 檔案及目錄列表 a 將隱藏檔案和普通的檔案及目錄一起顯示出...
Linux命令列 基本的bash shell命令
如 zmcheng x 501 501 zhangmingcheng home zmcheng bin bash ps 就是每換一行命令顯示的字元。bash 手冊 linux檔案系統 根驅動器 在linux pc上安裝的第一塊硬碟 cd命令 檔案及目錄列表 a 將隱藏檔案和普通的檔案及目錄一起顯示出...
Bash Shell 的管道命令
1 cut 命令選取 cut d 分隔字元 f fields d 後面接分隔字元。用 f一起使用 f 根據 d的分隔字元將一段資訊分割成為數段 c 以字元的單位取出固定字元區間 eg echo path cut d f 5 以 作為分隔,取第五段字元 2 grep 上面cut命令是在一行資訊其中取出...