centos7如何用通配符代替下面的1和2,ps aux | grep "1.sh",ps aux | grep "2.sh"
时间: 2023-02-12 09:19:56 浏览: 117
CentOS6.4_mysql5.6安装配置.doc
在 Centos7 中,可以使用通配符代替"1.sh"和"2.sh"。例如:
```
ps aux | grep "*.sh"
```
这样会显示所有以".sh"结尾的进程。
如果你想查找所有以数字开头的脚本,可以使用
```
ps aux | grep "[0-9]*.sh"
```
这样会显示所有以数字开头并以".sh"结尾的进程。
阅读全文