其他
Linux 中几个正则表达式的用法
正则表达式就是用于匹配每行输入的一种模式,模式是指一串字符序列。拥有强大的字符搜索功能。也非常方便的搜索过滤出我们想要的内容。
ifconfig | head -n 2 |tail -1 |tr -s " " |cut -d" " -f3
cat /etc/passwd |egrep "^(root|A8)" |cut -d: -f1,3
echo /etc/rc.d/init.d/functions | egrep "[a-z]$"
echo /etc/rc.d/init.d/functions | egrep "/.*/"
9、统计 last 命令中以 root 登录的每个主机IP地址登录次数
echo {1..255} |egrep "\<[0-9]\>"
egrep "\<1[0-9]\>"
egrep "\<1[0-9][0-9]\>"
egrep "\<2[0-4][0-9]\>"
egrep "\<25[0-5]\>"
ifconfig |egrep "[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}"
链接:https://www.linuxmi.com/linux-zhengzebiaodashi.html
发改委官员重磅演讲:天天忽悠新概念,中国要为此付出沉重代价!
界面酷炫,功能强大!这款 Linux 性能实时监控工具超好用!
牛逼!Intellij IDEA竟然有个功能可自动生成代码,你用过没?