cp [source] [destination] 将文件复制到新的目录下
如果在同一个目录下,文件复制时,名字要不一样,同时,如果复制的是目录,需要添加 -r
如果在不同目录下,文件复制时,输入destination dirctory后即可复制成同名的目录
[root@localhost admin18]# mkdir study1 –新增目录study study1
[root@localhost admin18]# mkdir study
[root@localhost admin18]# ls -A
[root@localhost admin18]# cd study –切换到目录sudy下,创建目录order
[root@localhost study]# mkdir order1
[root@localhost study]# cp -r order1 order2 –将文件复制为order2
[root@localhost study]# ls -A
order1 order2
[root@localhost study]# cp -r order1 /home/admin18/study1 –将文件复制到目录/home/admin18/study1
[root@localhost study]# cd ..
[root@localhost admin18]# cd study1
[root@localhost study1]# ls -A
order1
[root@localhost study1]# cd ..
[root@localhost admin18]# mv study study2 –将文件study重命名为study2
[root@localhost admin18]# ls -A
study1 study2
[root@localhost admin18]# rm -r study1 –递归删除目录study1
rm: descend into directory `study1′? y
rm: remove directory `study1/order1′? y
rm: remove directory `study1′? y
[root@localhost admin18]# rm study2 -rf –递归强制删除study2文件以及目录下的子文件
[root@localhost admin18]#man -ls –查看ls的帮助手册