1,在当前系统创建用户student student1 student2,查找当前系统名为student(必须出现在行首)的用户的账号和相关信息,文件为/etc/passwd
grep "^student\>" /etc/passwd | cut -d: -f3
2,分析/etc/inittab文件中如下文本呢中前两行的特征(每一行出现数字的地方必须相同),请写出可以精确找到类似两行的模式:
11:1:wait:etc/rc.d/rc 1
13:3:wait:etc/rc.d/rc 3
grep "^1\([0-9]\):\1.*\1$" /etc/inittab
ls *[^[:space:]]*[0-9] 文件名
4,找出/boot/grub/grub.conf文件中1-255之间的数字
\<([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>
原文链接:https://www.f2er.com/regex/358306.html