Linux刪除目錄下的檔案的10種方法

2021-08-29 21:00:56 字數 832 閱讀 9186

看到了一遍文章,便突發奇想的想起linux中刪除目錄下的所有檔案的方法;整理了幾個,如有不足,還望讀者不吝賜教!

刪除當前目錄下的檔案

1.rm -f *

#最經典的方法,刪除當前目錄下的所有型別的檔案

2.find . -type f -delete或find . -type f -exec rm -f {} \;

#用find命令查詢普通檔案並刪除or用find命令的處理動作將其刪除

3.find . -type f | xargs rm -f

#用於引數列表過長;要刪除的檔案太多

4.rm-f `find . -type f`

#刪除全部普通檔案

5.for delete in `ls -l`;do rm -f * ;done

#用for迴圈語句刪除當前目錄下的所有型別的檔案

刪除指定目錄下的檔案

1.rm -f 指定目錄*

#最經典的方法,刪除指定目錄下的所有型別的檔案

2.find 指定目錄 -type f -delete或find 指定目錄 -type f -exec rm -f {} \;

#用find命令查詢指定目錄下的所有普通檔案並刪除or用find命令的處理動作將其刪除

3.find 指定目錄 -type f | xargs rm -f

#用於引數列表過長;要刪除的檔案太多

4.rm-f `find 指定目錄 -type f`

#刪除指定目錄下的全部普通檔案

5.for delete in `ls –l 指定目錄路徑`;do rm -f * ;done

#用for迴圈語句刪除指定目錄下的所有型別的檔案

Linux刪除目錄下的檔案的方法

方法一 刪除當前目錄下的所有型別的檔案,命令語句如下 rm f 刪除指定目錄下的所有型別的檔案,例如 刪除 home wwwroot 目錄下的所有檔案,命令語句如下 rm f home wwwroot 方法二 用find命令在當前目錄下查詢普通檔案並刪除,命令語句如下 find type f del...

Linux 刪除目錄下的檔案的常用方法

使用rm rf 目錄名字 命令即可 r 就是向下遞迴,不管有多少級目錄,一併刪除 f 就是直接強行刪除,不作任何提示的意思 注意 f 一定要慎重 1 最經典的方法,刪除當前目錄下的所有型別的檔案 rm f 2 用find命令查詢普通檔案並刪除or用find命令的處理動作將其刪除 find type ...

刪除目錄下檔案

刪除當前目錄下的檔案 1.rm f 最經典的方法,刪除當前目錄下的所有型別的檔案 2.find type f delete或find type f exec rm f 用find命令查詢普通檔案並刪除or用find命令的處理動作將其刪除 3.find type f xargs rm f 用於引數列表...