linux常用命令積累

來源:互聯網
上載者:User

//在目前的目錄以及子目錄尋找包含main字元的檔案

 grep "main" ./ -r

    grep -i pattern files :不區分大小寫地搜尋。預設情況區分大小寫,

    grep -l pattern files :只列出匹配的檔案名稱,

    grep -L pattern files :列出不匹配的檔案名稱,

    grep -w pattern files :只匹配整個單詞,而不是字串的一部分(如匹配‘magic’,而不是‘magical’)

    grep -C number pattern files :匹配的上下文分別顯示[number]行,

    grep pattern1 | pattern2 files :顯示匹配 pattern1 或pattern2 的行,

    grep pattern1 files | grep pattern2 :顯示既匹配
    pattern1 又匹配 pattern2 的行。

     

    ===========================

    //尋找檔案名稱字中包含xvim字元的檔案,包含當前以及子目錄

    find .|grep "xvim"

    ============================

    只顯示目前的目錄

    ls -d .*/

     

    相關文章

    聯繫我們

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