7:显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录
ls -lh /etc/[^[:alpha:]][[:alpha:]]*
8:复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。
cp -rv /etc/p*[^0-9] /tmp/mytest1/
9:将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中
cat /etc/issue | tr 'a-z' 'A-Z' | tee -a /tmp/issue.out