linux 常用命令
刪除 90 天之前的所有檔案:
find ./ -mtime +90 | xargs rm -rf
查詢大小在某個區間的檔案:
查詢大小在某個範圍內的檔案使用-size 引數,-size +n 表示大於 n 單位的範圍,-size –n 表示小於 n 單位的範圍。例如,查詢大於 100k 且小於 400k 的檔案
find . -type f -mtime -1 -size +100k -size -400k | xargs ls -al
-type f 表示只查詢檔案,過濾掉資料夾,塊檔案等.
size 引數說明:
-sizen[cwbkMG]
File uses n units of space,rounding up. The following suffixes can be used:
b' for 512-byte blocks (this is the default if no suffix is used)
c' for bytes
w' for two-byte words
k' for Kilobytes (units of 1024 bytes)
M' for Megabytes (units of 1048576 bytes)
G' for Gigabytes (units of 1073741824 bytes)
相關文章
- Linux常用命令Linux
- Linux常用命令100Linux
- Linux 的常用命令Linux
- Linux——常用命令整理Linux
- Linux 常用命令合集Linux
- Linux常用命令分享Linux
- Linux裡常用命令Linux
- Linux常用命令使用Linux
- Linux常用命令整理Linux
- linux常用命令速查Linux
- Linux常用命令全名Linux
- linux vim 常用命令Linux
- linux 不常用命令Linux
- Linux下常用命令Linux
- Linux常用命令大全Linux
- Linux的常用命令Linux
- Linux(1) linux入門以及常用命令Linux
- Linux入門(二) ~ Linux的常用命令Linux
- linux常用命令安裝Linux
- linux簡單常用命令Linux
- Linux的docker常用命令LinuxDocker
- Linux 常用命令安裝Linux
- Linux常用命令介紹Linux
- Linux系統常用命令Linux
- Linux常用命令與工具Linux
- Linux 常用命令記錄Linux
- Linux 常用命令集合Linux
- linux常用命令詳解Linux
- Linux 運維常用命令Linux運維
- linux開發常用命令Linux
- Linux常用命令大合集Linux
- Linux和Docker常用命令LinuxDocker
- linux 常用命令彙總Linux
- Linux | 常用命令學習Linux
- Linux常用命令總結Linux
- Linux 常用命令學習Linux
- linux常用命令大全(一)Linux
- linux常用命令大全(四)Linux