正则:方便我们进行过滤(在文件中找内容),Linux三剑客 开拓措辞Python Go PHP JAVA
通配符:
方便我们进行查找文件 Linux乃至windows下面很多命令都支持.
ls/oldboy/.txt#找出以.txt结尾的文件find/oldboy/-typef-name'.log'#找出/oldboy下以.txt结尾的文件touchlidao{01..10}.txt#创建多个文件
正则表达式方便我们进行过滤
在 /etc/services 文件中过滤出包含3306或1521的行
[root@oldboyedu59~]#egrep'3306|1521'/etc/servicesmysql3306/tcp#MySQLmysql3306/udp#MySQLncube-lm1521/tcp#nCubeLicenseManagerncube-lm1521/udp#nCubeLicenseManager
在这个文件中找出以ssh开头的行
[root@oldboyedu59~]#grep'^ssh'/etc/servicesssh22/tcp#TheSecureShell(SSH)Protocolssh22/udp#TheSecureShell(SSH)Protocolssh22/sctp#SSHsshell614/tcp#SSLshellsshell614/udp#SSLshellssh-mgmt17235/tcp#SSHTectiaManagerssh-mgmt17235/udp#SSHTectiaManager