文件名通配符

来源:互联网 发布:美的售后软件 编辑:程序博客网 时间:2024/05/19 15:24
[root@localhost ~]# ls -l *.log
-rw-r--r--. 1 root root   58 Aug 10 01:26 error.log
-rw-r--r--. 1 root root 8737 Aug  6 09:26 install.log
[root@localhost ~]# ls -l *.??g
-rw-------. 1 root root 1099 Aug  6 09:26 anaconda-ks.cfg
-rw-r--r--. 1 root root   58 Aug 10 01:26 error.log
-rw-r--r--. 1 root root 8737 Aug  6 09:26 install.log
[root@localhost ~]# ls -l ??r*
-rw-r--r--. 1 root root 58 Aug 10 01:26 error.log
[root@localhost ~]# ls  -d [af]*
anaconda-ks.cfg  file
[root@localhost ~]# ls -ld [a-Z]*
-rw-------. 1 root root 1099 Aug  6 09:26 anaconda-ks.cfg
-rw-r--r--. 1 root root   58 Aug 10 01:26 error.log
drwxr-xr-x. 2 root root 4096 Aug 10 03:14 file
-rw-r--r--. 1 root root 8737 Aug  6 09:26 install.log
-rw-r--r--. 1 root root 3091 Aug  6 09:24 install.log.syslog
-rw-r--r--. 1 root root  102 Aug 10 20:19 name
-rw-r--r--. 1 root root  108 Aug 11 04:36 newsed
-rw-r--r--. 1 root root   89 Aug 10 22:48 sedtest
-rw-r--r--. 1 root root    1 Aug 10 22:47 setest
drwxr-xr-x. 2 root root 4096 Aug 10 01:47 test
[root@localhost ~]# ls -ld [0-9]*
-rw-r--r--. 1 root root 0 Aug 11 10:12 3huhdf
-rw-r--r--. 1 root root 0 Aug 11 10:12 4thuhi
-rw-r--r--. 1 root root 0 Aug 11 10:12 89812adbc
[root@localhost ~]#