N25_第五周

1、显示/boot/grub/grub.conf中以至少一个空白字符开头的行;
grep -E "^[[:space:]]+" /boot/grub2/grub.cfg

2、显示/etc/rc.d/rc.sysinit文件中以#开头,后面跟至少一个空白字符,而后又有至少一个非空白字符的行;
grep -E "^#[[:space:]]+[^[:space:]]+" /etc/rc.d/rc.sysinit

3、打出netstat -tan命令执行结果中以‘LISTEN’,后或跟空白字符结尾的行;
netstat -tan | grep -E "\<LISTEN\>[[:space:]]*"

[root@server1 mail]# netstat -tan | grep -E "\<LISTEN\>[[:space:]]*"
tcp        0      0 192.168.122.1:53        0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
tcp6       0      0 ::1:631                 :::*                    LISTEN     
tcp6       0      0 ::1:25                  :::*                    LISTEN     
[root@server1 mail]#

4、添加用户bash, testbash, basher, nologin (此一个用户的shell为/sbin/nologin),而后找出当前系统上其用户名和默认shell相同的用户的信息;
grep -E "^\<([^:]+)\>.+\1$" /etc/passwd

[root@server1 ~]# useradd bash  
[root@server1 ~]# useradd testbash  
[root@server1 ~]# useradd basher  
[root@server1 ~]# useradd -s /sbin/nologin nologin  
[root@server1 ~]# grep -E "^\<([^:]+)\>.+\1$" /etc/passwd   
sync:x:5:0:sync:/sbin:/bin/sync  
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown  
halt:x:7:0:halt:/sbin:/sbin/halt  
bash:x:1002:1002::/home/bash:/bin/bash  
nologin:x:1005:1005::/home/nologin:/sbin/nologin    
[root@server1 ~]#

5、显示当前系统上root、fedora或user1用户的默认shell;
grep -E "(root|fedora|user1)" /etc/passwd | cut -d':' -f7

[root@server1 ~]# grep -E "(root|fedora|user1)" /etc/passwd | cut -d':' -f7
/bin/bash
/sbin/nologin
/bin/bash

6、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();
grep -E "[^[:space:]]+\(\)[[:space:]]+" /etc/rc.d/init.d/functions

[root@server1 ~]# grep -E "[^[:space:]]+\(\)[[:space:]]+" /etc/rc.d/init.d/functions 
checkpid() {
__pids_var_run() {
__pids_pidof() {
daemon() {
killproc() {
pidfileofproc() {
pidofproc() {
status() {
echo_success() {
echo_failure() {
echo_passed() {
echo_warning() {
update_boot_stage() {
success() {
failure() {
passed() {
warning() {
action() {
strstr() {
is_ignored_file() {
is_true() {
is_false() {
apply_sysctl() {

7、使用echo命令输出一个绝对路径,使用grep取出其基名;
[root@server1 ~]# echo /etc/sysconfig/network-scripts/ifcfg-eno16777736 | grep -E -o "[^/]*$" 
ifcfg-eno16777736

扩展:取出其路径名
echo /etc/sysconfig/network-scripts/ifcfg-eno16777736 | sed -r 's@[^/]+/?$@@'

[root@server1 ~]# echo /etc/sysconfig/network-scripts/ifcfg-eno16777736 | sed -r 's@[^/]+/?$@@'
/etc/sysconfig/network-scripts/
[root@server1 ~]# 
[root@server1 ~]# echo /etc/sysconfig/network-scripts/ | sed -r 's@[^/]+/?$@@'                  
/etc/sysconfig/
[root@server1 ~]#

8、找出ifconfig命令结果中的1-255之间数字;
ifconfig | grep -E "\<[1-9]\>|\<[1-9][0-9]\>|\<1[0-9][0-9]\>|\<2[0-4][0-9]\>|\<25[0-5]\>"

9、挑战题:写一个模式,能匹配合理的IP地址;
ifconfig | grep -E -o "((2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?)\.){3}(2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?)"

[root@server1 ~]# ifconfig | grep -E -o "((2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?)\.){3}(2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?)"
192.168.2.106
255.255.255.0
192.168.2.255
127.0.0.1
255.0.0.0
192.168.122.1
255.255.255.0
192.168.122.255

10、挑战题:写一个模式,能匹配出所有的邮件地址;
grep -E ".+@.+\.com$" mail.txt

11、查找/var目录下属主为root,且属组为mail的所有文件或目录;
find /var -user root -a -group mail -ls

[root@server1 ~]# find /var -user root -a -group mail -ls
67151162    4 drwxrwxr-x   2 root     mail         4096 Dec 24 23:14 /var/spool/mail
72124628    4 -rw-------   1 root     mail         3583 Dec 24 23:13 /var/spool/mail/root

12、查找当前系统上没有属主或属组的文件;
find / -nouser -o -nogroup

进一步:查找当前系统上没有属主或属组,且最近3天内曾被访问过的文件或目录; 
find / \( -nouser -o -nogroup \) -atime -3 -ls

[root@server1 ~]# find / \( -nouser -o -nogroup \) -atime -3 -ls
find: ‘/proc/3902/task/3902/fd/6’: No such file or directory
find: ‘/proc/3902/task/3902/fdinfo/6’: No such file or directory
find: ‘/proc/3902/fd/6’: No such file or directory
find: ‘/proc/3902/fdinfo/6’: No such file or directory
1683202    0 drwx------   3 4001     4001           74 Dec  5 08:43 /var/tmp/gentoo
36228709    0 drwxr-xr-x   4 4001     4001           37 Nov 14 06:44 /var/tmp/gentoo/.mozilla
71581776    0 drwxr-xr-x   2 4001     4001            6 Jun  9  2014 /var/tmp/gentoo/.mozilla/extensions
104016109    0 drwxr-xr-x   2 4001     4001            6 Jun  9  2014 /var/tmp/gentoo/.mozilla/plugins
1683222    0 drwx------   3 4002     4002           74 Dec  5 08:48 /home/fedora
35731203    0 drwxr-xr-x   4 4002     4002           37 Nov 14 06:44 /home/fedora/.mozilla
71592655    0 drwxr-xr-x   2 4002     4002            6 Jun  9  2014 /home/fedora/.mozilla/extensions
102930554    0 drwxr-xr-x   2 4002     4002            6 Jun  9  2014 /home/fedora/.mozilla/plugins
[root@server1 ~]#

13、查找/etc目录下所有用户都有写权限的文件;
find /etc -perm -002

14、查找/etc目录下大于1M,且类型为普通文件的所有文件;
find /etc -size +1M -a -type f -ls

[root@server1 ~]# find /etc -size +1M -a -type f -ls
35386472 5920 -r--r--r--   1 root     root      6060612 Oct 31 07:06 /etc/udev/hwdb.bin
2020639 3512 -rw-r--r--   1 root     root      3592412 Apr  7  2014 /etc/selinux/targeted/policy/policy.29
34862799 1336 -rw-r--r--   1 root     root      1367395 Jan 29  2014 /etc/brltty/zh-tw.ctb
[root@server1 ~]#

15、查找/etc/init.d/目录下,所有用户都有执行权限,且其它用户有写权限的文件;
find /etc/init.d/ -perm -113 -ls

16、查找/usr目录下不属于root、bin或hadoop的文件;
find /usr -not \( -user root -o -user bin -o -user hadoop \) -ls

[root@server1 ~]# find /usr -not \( -user root -o -user bin -o -user hadoop \) -ls
34388291    4 drwx------   2 polkitd  root         4096 Oct 31 07:06 /usr/share/polkit-1/rules.d
100815145   12 -rwsr-sr-x   1 abrt     abrt        11240 Mar  3  2014 /usr/libexec/abrt-action-install-debuginfo-to-abrt-cache
[root@server1 ~]#

17、查找/etc/目录下至少有一类用户没有写权限的文件;
find /etc/ -not -perm -222 -ls

18、查找/etc目录下最近一周内其内容被修改过,且不属于root或hadoop的文件;"
find /etc -mtime -7 -a -not \( -user root -o -user hadoop \) -ls

原创文章,作者:xiaopang304,如若转载,请注明出处:http://www.178linux.com/66087

(0)
xiaopang304xiaopang304
上一篇 2017-01-08
下一篇 2017-01-08

相关推荐

  • gawk 语法介绍及其实例

    gawk 语法介绍及其实例  §·awk介绍 Linux文本处理三剑客:grep  sed 和 awk 。其中grep是一种文本过滤工具,sed是文本行编辑器,而awk是一种报表生成器,就是对文件进行格式化处理的,这里的格式化不是文件系统的格式化,而是对文件的内容进行的各种排版,进而格式化显示。 在linux之上我们使用awk是GUN a…

    Linux干货 2016-09-22
  • Keepalived实现nginx双主

    一、架构描述与应用 1. 应用场景 大多数的互联网公司都会利用nginx的7层反向代理功能来实现后端web server的负载均衡和动静分离。这样做的好处是当单台后端server出现性能瓶颈时可以对其进行横向扩展从而提高整个系统的并发,同时也可以通过后端server提供的http或tcp监控接口对其进行健康检查实现自动Failover和Failback。&n…

    Linux干货 2016-07-16
  • N22- 第五周

    1、显示当前系统上root、fedora或user1用户的默认shell; [root@localhost Packages]# grep -E "^(root|fedora|user1\>)" /etc/passwd | cut -d: -f…

    Linux干货 2016-11-21
  • 数组和字符串处理

    数组:存储多个元素的连续的内存空间,相当于多个变量的集合     1)定义数组:        declare -a ARRAY_NAME 定义普通数组 可省略declare -a ]#arr=(a b&nbs…

    Linux干货 2016-08-24
  • 关于man的几个重要命令

    接触Linux有很多年了,以前对于linux我觉得自己懂得的还算一般吧,可是听了马哥的关于linux的视频课程,发现自己就是一个还没入门的菜鸟,所以果断的狠心的报了马哥的网络班,拜在马哥旗下,以后就打着马哥的旗号到外面混,哈哈最初的这几天学习,因为工作和时间的等等等的关系,所以才到现在还在赶着写我的博客作业,现在就最有感触的几个命令串联一下。学习linux肯…

    Linux干货 2016-10-31
  • Linux操作系统发展史

    内容摘要:Linux操作系统的诞生,Linux 的发展,Linux的特性决定其迅猛发展,Linux的应用领域与发展前景 关键词:Linux的发展  前景   1.  Linux操作系统的诞生 在1981年到1991年十年间,微软公司的MS-DOS系统一直主宰操作系统的市场,其价格十分昂贵,另一个操作系统UNIX的经销商为了高利润…

    Linux干货 2016-10-14

评论列表(1条)

  • 马哥教育
    马哥教育 2017-02-17 10:30

    写的很好,提一个问题,255.255.255.255是一个合理的ip地址吗?