Linux作業(三)-shell統計某文章中出現頻率最高的N個單詞並排序輸出出現次數

來源:互聯網
上載者:User

標籤:shell   linux   

Linux課上的作業周三交,若有考慮不周到的地方,還請多多指教。

 

 

shell處理文本相關的常用命令見此部落格

 

 

#

#如果輸入兩個參數 則第一個為統計單詞的個數,第二個為要統計的文章

#如果輸入一個參數 則預設統計單詞的個數為10

#

 

具體思路:

將各種符號用換行替換(tr命令)

大寫改小寫(tr命令)

排序、統計單詞個數併除去重複 (sort和uniq)

按出現次數的高低排序(sort)

列印N個需要統計的單詞

 

#!/bin/bashif [ $# -ne 2 -a $# -ne 1 ] ;then        echo "usage: `basename $0 ` [n] input file "        echo        exitfiif [ $# -eq 1 ];then        I_TOP=10        I_FILE=$1fiif [ $# -eq 2 ];then        I_TOP=$1        I_FILE=$2fitr -sc "[A-Z][a-z]"  "[\012*]"  < $I_FILE |  tr  "[A-Z]"  "[a-z]"  | sort  | uniq -c |   sort  -k1 -n -r  |  head -$I_TOP | nl


 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.