29、linux shell常用的幾個函數,cut

來源:互聯網
上載者:User

1、說明

cut [option] files

cut -d'分隔字元' -f fields

取出分欄位的檔案的某些特定欄位

2、options

-d:用來定義分隔字元,預設為tab鍵,與-f一起使用

-f:需要取得哪個欄位,根據-d的分隔欄位

-c:以字元 (characters) 為單位取出固定字元區間;-c後面的值指定從第幾個字元開始輸出。

-c 和 -f 參數可以跟以下子參數:

N 第N個字元或欄位

N- 從第一個字元或欄位到檔案結束

N-M 從第N個到第M個字元或欄位

-M 從第一個到第M個字元或欄位

3、樣本

echo $PATH | cut -d: -f 3,5 //取出第3行和第5行

last | cut -d ' '  -f 1

last | cut -c  9-15

last | cut -c  9-

last | cut -d " " -f 1 | sort | uniq

last | cut -d " " -f 1 | sort | uniq -c

參考

【1】 http://doc.linuxpk.com/425.html

【2】 http://linux.vbird.org/linux_basic/0320bash.php#split

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.