查询当天修改过的文件
[root@]# find ./ -mtime -1 -type f -exec ls -l {} \;
查询文件并询问是否要显示
[root@]# find ./ -mtime -1 -type f -ok ls -l {} \;
< ls ... ./classDB.inc.php > ? y
-rw-r--r-- 1 cnscn cnscn 13709 1月 12 12:22 ./classDB.inc.php
[root@]# find ./ -mtime -1 -type f -ok ls -l {} \;
< ls ... ./classDB.inc.php > ? n
[root@]#
查询并交给awk去处理
[root@]# who | awk '{print $1"\t"$2}'
cnscn pts/0
awk---grep---sed
[root@]# df -k | awk '{print $1}' | grep -v 'none' | sed s"/\/dev\///g"
文件系统
sda2
sda1
[root@]# df -k | awk '{print $1}' | grep -v 'none'
文件系统
/dev/sda2
/dev/sda1