1、在vim中设置tab缩进为4个字符
set autoindent 或 set ai
2、复制/etc/rc.d/init.d/functions文件至/tmp目录,替换/tmp/functions文件中的/etc/sysconfig/init 为/var/log
cp /etc/rc.d/init.d/functions /tmp
vim /tmp/functions
%s@/etc/sysconfig/init@/var/log@g
3、删除/tmp/functions文件中所有以#开头,且#后面至少有一个空白字符的行的行首的#号
vim /tmp/functions
%s@^#([[:space:]]*)@\1@
4、找出ifconfig “网卡名” 命令结果中本机的IPv4地址
ifconfig ens160 | head -2|tail -1|tr -s ' ' :|cut -d: -f3
5、查出分区空间使用率的大百分比值
df -h| tr -s ' ' :|cut -d: -f5|tail -8|sort -nr |head -1
6、查出用户UID大值的用户名、UID及shell类型
cut -d: -f1,3,7 /etc/passwd |sort -t: -k2 -n | tail -1
7、查出/tmp的权限,以数字方式显示
stat /tmp/|head -4|tail -1|cut -d/ -f1|cut -d'(' -f2
8、统计当前连接本机的每个远程主机IP的连接数,并按从大到小排序
netstat -tunlp |grep ESTAB|tr -s ' ' |cut -d: -f5|sort -nr|uniq -c
9、显示/proc/meminfo文件中以大小s开头的行(要求:使用两种方法)
grep '^S.' /proc/meminfo 或 cat /proc/meminfo | grep '^S.'
10、显示/etc/passwd文件中不以/bin/bash结尾的行
grep -v '/bin/bash$' /etc/passwd
11、显示用户rpc默认的shell程序
grep '\
12、找出/etc/passwd中的两位或三位数
grep -E '\<[0-9]{2,3}\>' /etc/passwd
13、显示CentOS7的/etc/grub2.cfg文件中,至少以一个空白字符开头的且后面有非空白字符的行
grep '^[[:space:]]+[^[:space:]]' /etc/grub2.cfg 或 grep -E '^[[:space:]]+[^[:space:]]' /etc/grub2.cfg
14、找出“netstat -tan”命令结果中以LISTEN后跟任意多个空白字符结尾的行
netstat -tan | grep 'LISTEN[[:space:]]*$'
15、显示CentOS7上所有UID小于1000以内的用户名和UID
cut -d: -f1,3 /etc/passwd | grep '\<[0-9]{1,3}\>'
16、添加用户bash、testbash、basher、sh、nologin(其shell为/sbin/nologin),找出/etc/passwd用户 名和shell同名的行
grep -E '^(\<[[:alpha:]]+\>).\1$' /etc/passwd 或 grep '^(\<[[:alpha:]]+\>).\1$' /etc/passwd
17、利用df和grep,取出磁盘各分区利用率,并从大到小排序
df | tr -s ' ' :|cut -d: -f5|tail -8 |sort -nr
18、显示三个用户root、mage、wang的UID和默认shell
cut -d: -f1,3,7 /etc/passwd | grep -E 'root|mage|wang'
19、找出/etc/rc.d/init.d/functions文件中行首为某单词(包括下划线)后面跟一个小括号的行
grep -E "^\<([[:alpha:]]|_)+\>()." /etc/rc.d/init.d/functions
20、使用egrep取出/etc/rc.d/init.d/functions中其基名
echo "/etc/rc.d/init.d/functions" | egrep -o '[[:alpha:]]+$' 或echo "/etc/rc.d/init.d/functions" | egrep -o '[^/]+$'
等价于basename /etc/rc.d/init.d/functions
21、使用egrep取出上面路径的目录名
echo "/etc/rc.d/init.d/functions" | egrep -o '^.*/'
22、统计last命令中以root登录的每个主机IP地址登录次数
last | grep 'root' |tr -s ' '| cut -d' ' -f1,3|sort|uniq -c
23、利用扩展正则表达式分别表示0-9、10-99、100-199、200-249、250-255
[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]
24、显示ifconfig命令结果中所有IPv4地址
ifconfig | egrep -o "\<(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4]).){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\>"
25、将此字符串:welcome to magedu linux 中的每个字符去重并排序,重复次数多的排到前面
echo "welcome to magedu linux"|grep -o '.'|sort|uniq -c|sort -nr
26、删除centos7系统/etc/grub2.cfg文件中所有以空白开头的行行首的空白字符
sed -r 's/^[[:space:]]+(.*)/\1/' /etc/grub2.cfg
27、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符
sed -r 's/^#[[:space:]]+(.*)/\1/' /etc/fstab
28、在centos6系统/root/install.log每一行行首增加#号
sed -r 's/(.*)/#\1/' /root/install.log
29、在/etc/fstab文件中不以#开头的行的行首增加#号
sed -r 's/^^#/#\1/' /etc/fstab
30、处理/etc/fstab路径,使用sed命令取出其目录名和基名
取目录名:echo "/etc/fstab" | sed -r 's#(.)\/.+#\1#'
取基名:echo "/etc/fstab" | sed -r 's#.\/(.+)#\1#'
31、利用sed 取出ifconfig命令中本机的IPv4地址 32、统计centos安装光盘中Package目录下的所有rpm文件的以.分隔倒数第二个字段的重复次数 33、统计/etc/init.d/functions文件中每个单词的出现次数,并排序(用grep和sed两种方法分别实现) 34、将文本文件的n和n+1行合并为一行,n为奇数行 35、文件host_list.log 如下格式,请提取”.magedu.com”前面的主机名部分并写入到回到该文件中 36、统计/etc/fstab文件中每个文件系统类型出现的次数 37、统计/etc/fstab文件中每个单词出现的次数 38、提取出字符串Yd$C@M05MB%9&Bdh7dq+YVixp3vpw中的所有数字
ifconfig | sed -rn '/inet\b/p'|sed -r 's#.inet\>(.)\
ls /misc/cd/Packages/.rpm | sed -r 's@..(.*).rpm@\1@' | sort | uniq -c
sed -r 's@[^[:alpha:]]+@\n@g' /etc/init.d/functions |sort | uniq -c|sort -n
grep -Eo '[[:alpha:]]+' /etc/init.d/functions |sort |uniq -c|sort -n
seq 1 10|sed -r 'N;s/\n//'
1 www.magedu.com
2 blog.magedu.com
3 study.magedu.com
4 linux.magedu.com
5 python.magedu.com
......
999 study.magedu.comawk -F"[ .]" '{print $2}' host_list.log >> host_list.log
cat /etc/fstab | awk '/^UUID/{sys[$3]++}END{for(i in sys){print i,sys[i]}}'
grep -Eo '\<[[:alpha:]]+\>' fstab |sort|uniq -c
echo "Yd$C@M05MB%9&Bdh7dq+YVixp3vpw"|awk 'gsub(/[^0-9]/,"")'