作用:從文件的每一行剪切字節(jié)linux常用命令,字符或者字段linux常用命令,類似與編程語(yǔ)言中的字符串截取函數(shù)
格式:cut [option] [file]
-b:僅顯示行中指定直接范圍的內(nèi)容;
-c:僅顯示行中指定范圍的字符;
-d:指定字段的分隔符,默認(rèn)的字段分隔符為“TAB”;
-f:顯示指定字段的內(nèi)容;
-n:與“-b”選項(xiàng)連用,不分割多字節(jié)字符;
N-:從第N個(gè)字節(jié)、字符、字段到結(jié)尾;
N-M:從第N個(gè)字節(jié)、字符、字段到第M個(gè)(包括M在內(nèi))字節(jié)、字符、字段;
-M:從第1個(gè)字節(jié)、字符、字段到第M個(gè)(包括M在內(nèi))字節(jié)、字符、字段。
ghostwu@dev:~/linux/cut$ cat ghostwu.txt hello,this is ghostwu how are you ghostwu@dev:~/linux/cut$ cut -b 1 ghostwu.txt h h ghostwu@dev:~/linux/cut$ cut -b 1-3 ghostwu.txt hel how ghostwu@dev:~/linux/cut$ cut -b 1-2,4-5 ghostwu.txt helo ho a ghostwu@dev:~/linux/cut$ cut -b 1- ghostwu.txt hello,this is ghostwu how are you ghostwu@dev:~/linux/cut$ cut -b -1 ghostwu.txt h h
截取/etc/passwd第一列
cut -d : -f 1 /etc/passwd
posted @ 2018-05-19 06:32ghostwu 閱讀(...) 評(píng)論(...) 編輯
上一個(gè)教程:Linux uniq 命令用法詳解
下一個(gè)教程:Linux命令之find(一)