linux刪除檔案、檔案夾命令

來源:互聯網
上載者:User



linux刪除檔案、檔案夾命令

使用這個rm -rf刪除檔案的時候一定要格外小心,linux沒有資源回收筒的。
直接rm就可以了,不過要加個參數-f 即:rm -f   檔案路徑
-f 就是直接強行刪除,不作任何提示的意思

刪除檔案使用執行個體:
rm -f /var/log/httpd/access.log

將會強制移除/var/log/httpd/access.log這個檔案

當我們就在這個檔案對應的目錄下時只需要rm命令,可以不帶任何參數

執行個體:

rm test_bak.tar.gz

刪除目錄使用執行個體:
rm -rf /var/log/httpd/access

將會刪除/var/log/httpd/access目錄以及其下所有檔案、檔案夾

需要提醒的是:使用這個rm -rf的時候一定要格外小心,linux沒有資源回收筒的

當然,rm還有更多的其他參數和用法,man rm就可以查看了

相關文章

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.