在/tmp目录下创建以tfile开头,后跟当前日期和时间的文件,文件名形如:tfile-2016-05-27-09-32-22。
-
~]# touch /tmp/tfile-$(date +%Y-%m-%d-%H-%M-%S)
-
~]# tree /tmp 查看输出结果
复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。
-
~]# mkdir /tmp/mytest1
-
~]# cp -r /tmp/p*[^0-9] /tmp/mytest1
复制/etc目录下所有以.d结尾的文件或目录至/tmp/mytest2目录中。
-
~]# mkdir /tmp/mytest2
-
~]# cp -r /etc/*.d /tmp/mytest2
复制/etc/目录下所有以l或m或n开头,以.conf结尾的文件至/tmp/mytest3目录中。
-
~]# mkdir /tmp/mytest3
-
~]# cp -r /etc/{l,m,n}*.conf /tmp/mytest3
-
~]# tree /tmp/mytest3
原创文章,作者:Estel,如若转载,请注明出处:http://www.178linux.com/57822
评论列表(1条)
内容有点少~能把学的多补充下会更好~加油~