SHELL編程四劍客工具(Find、grep、sed、awk):提高腳本的功能,完善腳本,讓腳本更加高大上!編程
find path -option [ -print ] [ -exec -ok command ] { } \;vim
find . -name "*.log" -type f -size +100M -perm 644 ! -name "test1.log"編輯器
atime:access time,文件被訪問的時間;工具
ctime:change time,文件屬性被修改時間;操作系統
mtime:modify time,文件內容修改時間;3d
find . -name "*.log" -type f -size +100M -perm 644 ! -name "test1.log" -mtime -30 -mmin -1blog
grep -[acinv] 'word' Filenameci
SHELL編程四劍客工具(Find、grep、sed、awk):提高腳本的功能,完善腳本,讓腳本更加高大上!io
find path -option [ -print ] [ -exec -ok command ] { } \;test
find . -name "*.log" -type f -size +100M -perm 644 ! -name "test1.log"
atime:access time,文件被訪問的時間;
ctime:change time,文件屬性被修改時間;
mtime:modify time,文件內容修改時間;
find . -name "*.log" -type f -size +100M -perm 644 ! -name "test1.log" -mtime -30 -mmin -1
grep -[acinv] 'word' Filename