1.用一条命令建立12个文件WESTOS_classX_linuxY(X的取值范围为1-2,Y的取值范围为1-6),这些文件都包含在root用户桌面下的student目录中。
mkdir /root/Desktop/student && touch /root/Desktop/student/WESTOS-class{1,2}_linux{1..6}
2.用一条命令建立8个文件redhat_versionX(范围1-8),这些文件都包含在/tmp目录下的VERSION 中。
cd /tmp && mkdir VERSION && touch VERSION/redhat_version{1..8}
3.用一条命令,把redhat-versionX中的含奇数的文件复制到桌面的SINGLE中。
mkdir SINGLE && cd /tmp && cp /tmp/VERSION/{*1*,*3*,*5*,*7*} /root/Desktop/SINGLE
4.用一条面令将redhat_versionX中含偶数的文件复制到/DOUBLE中。
mkdir /DOUBLE && cp /tmp/VERSION/{*2*,*4*,*6*,*8*} /DOUBLE
5.用一条命令把WESTOS_classX_linuxY中的class1中的文件移动到用户桌面的CLASS1.
mkdir /root/Desktop/CLASS1 && mv /root/Desktop/student/class1* /root /Desktop/CLASS1
6.用一条命令把WESTOS_classX_linuxY中的class2的文件移动到用户桌面的CLASS2.
mkdir CLASS2 && cp /root/Desktop/student/{class2*} /root/Desktop/CLASS2
7.备份/etc下所有以数字、名字和以.conf结尾的文件到桌面上的confdir中;删除刚才建立和备份的所有文件。
mkdir /root/Desktop/confdir && cp /etc/*[[:digit:]]*.conf /root/Desktop/confdir