[root@localhost shell]# cat student.txt ID Name Gender Mark 1 ming F 85 2 zhang F 70 3 wang M 75 4 li M 90 [root@localhost shell]# cut -f 4 student.txt Mark 85 70 75 90
3. 示例2:打印csv文件的某一行
[root@localhost shell]# cat student.csv ID,Name,Gender,Mark 1,ming,F,85 2,zhang,F,70 3,wang,M,75 4,li,M,90 [root@localhost shell]# cut -d "," -f 4 student.csv Mark 85 70 75 90
4. 示例3:打印一個字符串的第幾個字符 [root@localhost shell]# echo "abcdef" | cut -c 3 c 5. 示例4:截取中文字符的某一個文字 [root@localhost shell]# echo "Shell編程" | cut -nb 1 S [root@localhost shell]# echo "Shell編程" | cut -nb 2 h [root@localhost shell]# echo "Shell編程" | cut -nb 3 e [root@localhost shell]# echo "Shell編程" | cut -nb 4 l [root@localhost shell]# echo "Shell編程" | cut -nb 5 l [root@localhost shell]# echo "Shell編程" | cut -nb 8 編 [root@localhost shell]# echo "Shell編程" | cut -nb 11 程 四、printf命令 1. 命令格式 printf '輸出類型輸出格式' 輸出內容 2. 輸出類型 %ns:輸出字符串。n代表輸出幾個字符,n省略則代表全部字符 %ni:輸出整數。n是指輸出幾個數字,n省略代表所有數字 %m.nf:輸出浮點數。m和n是數字,指代輸出的整數位數和小數位數。如%8.2f則代表共輸出8位數,其中2位是小樹,6位是整數。 3. 輸出格式 \a:輸出警告聲音 \b:輸出退格鍵(Backspace) \f:清除屏幕 \n:換行 \r:回車(Enter) \t:水平輸出退格鍵 \v:垂直輸出退格鍵 4. 示例 [root@localhost ~]# printf '%i %s %i %s %i\n' 1 "+" 2 "=" 3 1 + 2 = 3 [root@localhost ~]# printf '%i-%i-%i %i:%i:%i\n' 2015 12 3 21 56 30 2015-12-3 21:56:30 五、awk命令 1. 命令格式 awk '條件1{動作1}條件2{動作2}...' 文件名 條件:一般使用關系表達式作為條件,如x > 10 動作:格式化輸出、流程控制語句 2. 示例1:提取制表符分割的文件的某一行 [root@localhost shell]# cat student.txt ID Name Gender Mark 1 ming F 85 2 zhang F 70 3 wang M 75 4 li M 90 [root@localhost shell]# awk '{print $1 "\t" $4}' student.txt ID Mark 1 85 2 70 3 75 4 90 3. 示例2:獲取磁盤利用率
[root@localhost shell]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda2 18G 2.4G 14G 15% / /dev/sda1 289M 16M 258M 6% /boot tmpfs 411M 0 411M 0% /dev/shm [root@localhost shell]# df -h | grep "sda1" | awk '{print $5}' 6%六、sed命令 sed是一種幾乎包括在所有UNIX平台(包括Linux)的輕量級流編輯器。sed主要是用來將數據進行選取、替換、刪除、新增的命令。 1. 命令格式 sed [選項] '[動作]' 文件名 2. 選項 -n:一般sed命令會把所有數據都輸出到屏幕,如果加入此選擇,則只會把經過sed命令處理的行輸出到屏幕。 -e:允許對輸入數據應用多條sed命令編輯。 -i:用sed的修改結果直接修改讀取數據的文件,而不是由屏幕輸出。 3. 動作 a:追加,在當前行後添加一行或多行 c:行替換,用c後面的字符串替換原數據行 i:插入,在當前行前插入一行或多行。 d:刪除,刪除指定的行 p:打印,輸出指定的行 s:字符串替換,用一個字符串替換另一個字符串。格式為“行范圍/s/舊字符串/新字符串/g”(和vim中的替換格式類似) 4. 示例
[root@localhost shell]# cat student.txt ID Name Gender Mark 1 ming F 85 2 zhang F 70 3 wang M 75 4 li M 90 #測試-n參數 [root@localhost shell]# sed -n '2p' student.txt 1 ming F 85 #測試單行刪除 [root@localhost shell]# sed '2d' student.txt ID Name Gender Mark 2 zhang F 70 3 wang M 75 4 li M 90 #測試多行刪除 [root@localhost shell]# sed '2,4d' student.txt ID Name Gender Mark 4 li M 90 #測試追加 [root@localhost shell]# sed '2a test append' student.txt ID Name Gender Mark 1 ming F 85 test append 2 zhang F 70 3 wang M 75 4 li M 90 #測試插入 [root@localhost shell]# sed '2i test insert' student.txt ID Name Gender Mark test insert 1 ming F 85 2 zhang F 70 3 wang M 75 4 li M 90 #測試行替換 [root@localhost shell]# sed '2c test replace' student.txt ID Name Gender Mark test replace 2 zhang F 70 3 wang M 75 4 li M 90 #測試內容替換 [root@localhost shell]# sed '2s/ming/replace/g' student.txt ID Name Gender Mark 1 replace F 85 2 zhang F 70 3 wang M 75 4 li M 90