Part1
1、显示/etc目录下所有以l开头,以一个小写字母结尾,且中间出现至少一位数字的文件或目录列表
[root@kezai ~] #ls /etc/l*[0-9][a-z].txt
2、显示/etc目录下以任意一位数字开头,且以非数字结尾的文件或目录列表
[root@kezai ~]#ls /etc/[0-9]*[^[:alpha:]].txt
3、显示/etc/目录下以非字母开头,后面跟了一个字母及其它任意长度任意字符的文件或目录列表
[root@kezai ~]# ls /etc/[^[:alpha:]][[:alpha:]]*.txt
4、显示/etc/目录下所有以rc开头,并后面是0-6之间的数字,其它为任意字符的文件或目录列表
[root@kezai ~]#ls -d /etc/rc[0-6]*
/etc/rc0.d /etc/rc1.d /etc/rc2.d /etc/rc3.d /etc/rc4.d /etc/rc5.d /etc/rc6.d
5、显示/etc目录下,所有.conf结尾,且以m,n,r,p开头的文件或目录列表
[root@kezai ~]#ls /etc/[mnrp]*.conf
/etc/man_db.conf /etc/nsswitch.conf /etc/rsyslog.conf
/etc/mke2fs.conf /etc/resolv.conf
6、只显示/root下的隐藏文件和目录列表
[root@kezai ~]#ls -d /root/.*
/root/. /root/.bash_history /root/.bash_profile /root/.cshrc /root/.viminfo
/root/.. /root/.bash_logout /root/.bashrc /root/.tcshrc
7、只显示/etc下的非隐藏目录列表
[root@kezai ~]#ls -d /etc/*
......
/etc/host.conf /etc/protocols /etc/yum.repos.d
/etc/hostname /etc/rc0.d
.....