find . –name "A-Z" –print 4.在/etc目录下查找文件名以host开头的文件 find /etc –name "host*" –print 5.在当前目录查找文件名以一个小写字母开头,最后是4到9加上.txt结束的文件 find . –name "a-z*4-9.txt" –print find file by name -iname :根据文件名查找文件,不区分大小写 1.查...
bash-4.1$ find . -name '*prev'
$ find . -name "file*" -print | xargs echo "" > /temp/core.log$ cat /temp/core.log./file6 1. 2. 3. 在当前目录下查找所有用户具有读、写和执行权限的文件,并收回相应的写权限: $ ls -ldrwxrwxrwx 2 sam adm 4096 10月30 20:14 file6-rwxrwxrwx 2 sam adm 0 10月31 01:01 http3...
findis a powerful tool that can not only find files but it can run a command on each matching file too. In this lesson, we’ll learn how to find all the images that match a pattern and run an image optimization tool on them. FInd files: findimages/ -name"*.png"findimages/ -iname...
For example, find a file namedtest1.txtin your home directory with: find ~ -name "test1.txt" This command searches the current user's directory (~) for any file namedtest1.txt Find Files by Approximate Name To find files with names that approximately match a given pattern, use thefind...
查找无有效属主的文件,即该文件的属主在/etc/passwd中不存在。-newer file1!file2 查找更改时间比文件file1新但比文件file2旧的文件。-type 查找某一类型的文件,诸如: b-块设备文件。 d-目录。 c-字符设备文件。 p-管道文件。 l-符号链接文件。
/.bash_history ./.xauthj5FCx1 It should be noted that locating a file with the find command itself changes that file’s access time as part of its metadata. You can also find files that have been modified or accessed in comparison to a specific file with the options -newer, -anewer,...
-used N -user NAME -xtype [bcdpfls] -context 文本 actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit -exec COMMAND ; -exec COMMAND {} + -ok COMMAND ;
#find 。 -name “file*” -print | xargs echo “”》 /temp/core.log # cat /temp/core.log 。/file6 在当前目录下查找所有用户具有读、写和执行权限的文件,并收回相应的写权限: # ls -l drwxrwxrwx 2 sam adm 4096 10月 30 20:14 file6 -rwxrwxrwx 2 sam adm 0 10月 31 01:01 http3.co...
被修改过 -cnewer file :比文件 file 更新的文件 -ctime n : 在过去n天内被修改过的文件 -empty : 空的文件-gid n or -group name : gid 是 n 或是 group 名称是 name -ipath p, -path p : 路径名称符合 p 的文件,ipath 会忽略大小写 -name name, -iname name : 文件名称符合 name 的...