find [搜尋範圍] [搜尋標準] 關鍵字
| - > -name :預設按名稱搜尋
| - > -size :按檔案大小搜尋
| - > -user:按檔案的所有者搜尋
find / -name *e* 全域性搜尋檔名中包含e的檔案或者目錄
find /etc *.txt 搜尋etc目錄下所有.txt檔案
find / -size +(-,==)5m(k) 搜尋/ 目錄下所有 大於(小於,登入)5m(k)的檔案
find / -size +100m
find /etc -user zhangsan 搜尋/etc目錄下所有的所有者是zhangsan的檔案和目錄
find / -type f -size +200m
linux centos find引數說明
find type f mtime 1 xargs rm f mtime說明 n 24 1 內表示 1 24 24小時以外.0 才表示 0 24 24小時以外 1 表示 1 24 24 到 24 之間.0 表示 0 24 24 到 0 之間.1 表示 0 24 24 內,甚至為未來時間.參考 typ...
mysql dba常用命令 MYSQL常用命令
安裝利用rpm包安裝mysql,設定tcp 3306埠的iptables。root密碼管理設定root使用者的密碼mysqladmin uroot password password 修改root使用者的密碼mysqladmin uroot p password password 資料庫,表管理進入...
mysql tovdate MySQL常用命令
啟動 net start mysql 進入 mysql u root p mysql h localhost u root p databasename 列出資料庫 show databases 選擇資料庫 use databasename 列出 show tables 顯示 列的屬性 show c...