欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

只记住命令名称中的一部分字段,如何查找命令。

程序员文章站 2022-03-26 15:52:53
...

我们常常遇到这样的情况,只记住命令的一部分字符,如果这个字符是在字段首,则可以通过双击tab键查看可能的命令。例如:

[[email protected] ~]# ls
ls        lsattr    lsblk     lscpu     lsinitrd  lsmod     lsof

但是,如果我们只记住命令字段的末尾几个字符,例如*stat,我们可以通过组合式bash命令获取。例如:

[[email protected] ~]# for i in $(echo $PATH | tr ':' '\n');do ls $i | grep stat;done
insmod.static
rpc.statd
status
netstat
avcstat
lnstat
mountstats
nfsiostat
nfsstat
nstat
sestatus
start-statd
cifsiostat
db_stat
iostat
mpstat
ntpstat
pidstat
stat
vmstat





转载于:https://my.oschina.net/jccpp/blog/127213