Shell編程學習之“列目錄”

來源:互聯網
上載者:User

標籤:shell   萬用字元   列目錄   

有關列出當前路徑下目錄(不列子目錄)的方法,和大家分享一下~~

1、使用ls -d 配合萬用字元
ls -d */ 

2、ls -F 配合grep查詢以/結尾的內容
-F :顯示目錄後邊的/
ls -F | grep "/$"

3、ls -l 配合grep查詢以d開頭的內容
ls -l | grep "^d"

4、find尋找,這裡用到一個參數: -maxdepth (最大目錄數)
find . -maxdepth 1 -type d

-maxdepth 1 :表示只列出第一層目錄
-maxdepth 2 : 列出目錄到第二層,以此類推

還有一個有意思的參數:-mindepth  (最小目錄數)
也就是說,-mindepth 5  就代表只列出有5層以上的目錄

650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/6D/42/wKiom1VfDwXRpqjpAAHqCcYFzOU997.jpg" border="0" style="margin:0px;padding:0px;border:medium none;line-height:22.3999996185303px;font-family:‘宋體‘, Arial, Helvetica, ‘san-serif‘;font-size:14px;white-space:normal;background-color:rgb(255,255,255);" />

本文出自 “Just For Fun” 部落格,請務必保留此出處http://linuxmz.blog.51cto.com/9860985/1657124

Shell編程學習之“列目錄”

相關文章

聯繫我們

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