一、显示当前系统上root、fedora或者user1用户的默认shell;
[root@localhost ~]# grep -E “^(root|fedora|user1)” /etc/passwd | cut -d: -f7
/bin/bash
/bin/tcsh
/bin/bash
二、找出/etc/rc.d/init.d/functions文件中某单词后面跟一小组括号的行,刑如:hello()
[root@localhost ~]# cat /etc/rc.d/init.d/functions | grep -o -E “\\(\)”
checkpid() {
daemon() {
killproc() {
pidfileofproc() {
三、使用echo命令输出一个绝对路径,使用grep取出基名
[root@localhost ~]# echo “/etc/tmp/test/” | grep -o -E “[^/]+/?$” | cut -d/ -f1
test
四、找出ifconfig命令结果中的1-255之间的数字;
[root@localhost ~]# ifconfig | grep -o -E “\”
29
31
192
168
106
1
五、查找/var目录下属主为root,且属组为mail的所有文件或者目录;
root@localhost ~]# find /var -user root -a -group mail
/var/spool/mail
/var/test1
/var/test
六、查找当前系统上没有属主或者属组的文件;进一步:查找当前系统上没有属主或属组,且最近3天内曾被被访问过的文件或者目录。
[root@localhost ~]# find / \( -nouser -o -nogroup \) -a -atime -3
七、查找/etc目录下所有用户都有写权限的文件;
[root@localhost ~]# find /etc -perm +222
八、查找/etc目录下大于1M,且类型为普通文件的所有文件。
[root@localhost ~]# find /etc -size +1M -a -type f
/etc/gconf/gconf.xml.defaults/%gconf-tree.xml
/etc/selinux/targeted/modules/active/policy.kern
/etc/selinux/targeted/policy/policy.24
本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/87970