Linux命令之touch 、mkdir 、cp


touch

描述:创建或修改文件时间

[root@iZ94c75kte0Z ~]# touch hello.txt


如果hello.txt不存在,则创建,如果已存在,责更新文件所有的时间为当前系统时间。


mkdir

描述:创建目录

用法:mkdir[选项]...[目录]...

选项: -p 创建多级目录.


[root@iZ94c75kte0Z ~]# mkdir candy

[root@iZ94c75kte0Z ~]# mkdir -p /tmp/test/jerry/book/computer


cp

描述:复制文件与目录

用法:cp[选项] 源 目标

选项: -r 递归,复制子文件与子目录,一般复制目录时使用。

[root@iZ94c75kte0Z ~]# cp /etc/hosts /tmp/    #复制文件/etc/hosts至/tmp目录下

[root@iZ94c75kte0Z ~]# cp /etc/hosts /tmp/host    #复制文件/etc/hosts至/tmp/目录下并改名为host

[root@iZ94c75kte0Z ~]# cp -r /var/log/ /tmp/ #复制目录/var/log至/tmp/目录下