常用shell執行個體

來源:互聯網
上載者:User

標籤:shell

1. 尋找目前的目錄中所有大於 500M 的檔案 , 把這些檔案名稱寫到一個文字檔file中,並統計其個數。

find / -size +500M -type f | tee /root/file.txt | wc -l  或者find / -size +50M -exec ls {} \; > /root/test.txt

2. 在目錄 /tmp 下找到 100 個以 abc 開頭的檔案,然後把這些檔案的第一行儲存到檔案 new 中 

for filename in `find /tmp -type f -name "abc*"|head -n 100`dosed -n ‘1p‘ $filename >> newdone

3. 判斷一檔案是不是塊或字元裝置檔案,如果是將其拷貝到 /dev 目錄下

read -p "input a file:" filenameif [ -b $filename -o -c $filename ]thencp $filename /dev/fi

4. 把檔案 b 中有的,但是檔案 a 中沒有的所有行,儲存為檔案 c ,並統計 c 的行數。 

[[email protected] ~]# cat a dddddddddssssssss3333333333333eeeeeeeeee[[email protected] ~]# cat bdddddddddd444444444tttttttttt[[email protected] ~]# grep -xvf a b | tee c | wc -l3


本文出自 “從心開始” 部落格,請務必保留此出處http://fuquanjun.blog.51cto.com/5820068/1432400

相關文章

聯繫我們

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