find命令檔名字尾
find命令
1、檢視當前目錄下以.txt結尾的檔案
[root@test ~]# find . -name “*.txt”
./.subversion/README.txt
./2.txt
./nmaptest.txt
./1.txt
不是以.txt結尾的檔案查詢:
[root@test ~]# find . ! -name “*.txt”| more
.
./.cshrc
./.subversion
./.subversion/servers
./.subversion/config
2、根據檔案型別查詢
f 普通檔案 l 符號連線 d 目錄 c 字元裝置 b 塊裝置 s 套接字 p Fifo
[root@test ~]# find /tmp/ -type d -name mysql
/tmp/mysql
/tmp/mysql/mysql
3、根據檔案時間戳進行搜尋
Linux檔案系統每個檔案都有三種時間戳:
訪問時間(-atime/天,-amin/分鐘):使用者最近一次訪問時間。
修改時間(-mtime/天,-mmin/分鐘):檔案最後一次修改時間。
變化時間(-ctime/天,-cmin/分鐘):檔案資料(例如許可權等)最後一次修改時間。
[root@test ~]# stat 1.txt
File: `1.txt`
Size: 37 Blocks: 8 IO Block: 4096 regular file
Device: fd00h/64768dInode: 21749 Links: 2
Access: (0626/-rw–w-rw-) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-10-23 12:12:07.619932872 +0800#當檔案被訪問時變化
Modify: 2017-10-23 14:36:12.180013439 +0800#當檔案被修改時變化
Change: 2017-10-23 14:36:12.192013624 +0800#當檔案被修改時變化
+2:2天以外的;-2:2天以內的;xargs:額外擴充套件
[root@test ~]# find . -ctime +2 -name “*.txt”|xargs ls -lt
-rw-r–r– 1 root root 4276 Oct 17 14:45 ./.subversion/README.txt
-rw-r–r– 1 root root 4821 Oct 11 04:12 ./setuptools-36.5.0/setuptools.egg-info/SOURCES.txt
-rw-r–r– 1 root root 2939 Oct 11 04:12 ./setuptools-36.5.0/setuptools.egg-info/entry_points.txt
該目錄10分鐘之前被訪問過的
[root@test ~]# find . -type f -amin +10
You have new mail in /var/spool/mail/root
該目錄10分鐘之內被訪問過的
[root@test ~]# find . -type f -amin -10
./2.txt
./1.txt
4、根據檔案大小進行匹配(K/M/G)
4.1 搜尋大於10KB的檔案
[root@test ~]# find . -type f -size +10k
./get-pip.py
./.bypy/bypy.hashcache.json
小於10KB的檔案
[root@test ~]# find . -type f -size -10k
5、藉助-exec選項與其他命令結合使用
將”.txt”結尾的檔案都刪除
[root@test76 83-server]# find . -name `*.txt` -exec rm {} ;
6、用到-o選項(兩個條件滿足一個即可);找出當前目錄下以.txt,.php結尾的檔案;
[root@test ~]# find . -name `*.php` -o -name `*.txt`
./.subversion/README.txt
./2.txt
./123.txt
./index.php
用到-a選項;兩個條件同時滿足
[root@test ~]# find . -size +10k -a -size -100k|xargs du -sh
52K ./.cache/pip/http/2/e/a/f/9/2eaf9e7adb17e72f1ab2b6510f37425dc6772b
16K ./.cache/pip/http/9/e/6/1/9/9e61964f51d8a05a20ecf21eef694877f28cb
52K ./.cache/pip/http/c/e/8/8/0/ce880eded052487dc850e45bc
88K ./.cache/pip/http/d/f/6/b/4/df6b402f6800301aea4d1b04d0c
68K ./.cache/pip/http/e/8/a/4/5/e8a45d85bbef483
56K ./.cache/pip/http/f/c/9/f/0/fc9f0666469c64f19c
20K ./.pip/pip.log
32K ./.bash_history
檔名字尾
file 檔名
[root@~]# file test.sh
test.sh: POSIX shell script text executable
.php php解釋語言
.so 庫檔案
.bz2 bzip2的壓縮檔案
.gz gzip的壓縮檔案
.tar tar打包檔案
.sh shell指令碼
.log 日誌檔案
相關文章
- find命令批量修改檔案字尾
- linux 批量修改檔名字尾名命令renameLinux
- 【轉】find命令批次修改檔案字尾
- win10 怎麼改檔案字尾名_win10如何更改檔名字尾Win10
- 域名字尾有哪些型別?各種域名字尾名的區別型別
- 通過登錄檔完成檔名字尾與運用程式相關聯
- win10系統顯示檔名字尾的兩種方法Win10
- linux 查詢檔案命令 findLinux
- Windows環境下批次更改檔名字尾為mp4格式Windows
- find 命令
- find命令
- python檔案查詢之find命令Python
- 檔案屬性及find命令總結
- 除了find命令,還有這麼多檔案查詢命令!
- find -newer命令
- 【Shell】【find】使用find命令“完美”刪除10天以上未修改的歸檔日誌檔案
- Find命令查詢最近幾天修改的檔案
- Linux檔案查詢命令find,xargs詳述Linux
- find 命令入門
- grep、find命令整理
- Find命令總彙
- find命令詳解
- find 命令專題
- find 命令詳解
- linux find命令Linux
- linux find 命令Linux
- Find命令練習
- linux find 命令!Linux
- find 命令全面解析
- find 命令及其示例
- `find` 命令詳解
- 使用批處理指令碼修改指定資料夾(可包含子目錄)中的檔名字尾指令碼
- Linux刪除指定字尾名檔案的命令Linux
- dos命令:ren或rename,批量修改檔案字尾名
- linux下的find檔案查詢命令與grep檔案內容查詢命令Linux
- linux shell 命令下批量新增檔案的字尾 和批量刪除 擁有某字尾的檔案Linux
- Unix 下使用 Find 命令查詢需要清理的檔案
- Linux/Unix 檔案查詢命令 find, xargs 詳述Linux