- 在家目录下创建目录名为:shuren
ubuntu@ubuntu:~$ mkdir shuren
- 在shuren目录下创建d1/d2/d3(注意d2在d1目录下,d3在d2目录下)
ubuntu@ubuntu:~$ mkdir shuren/d1/d2/d3 -p
- 在d2下创建2个文件,名为f1 f2
ubuntu@ubuntu:~$ touch shuren/d1/d2/f1 ubuntu@ubuntu:~$ touch shuren/d1/d2/f2
- 把d2下的f1和f2文件分别赋值一份存到d3里面
ubuntu@ubuntu:d2$ cd ~ ubuntu@ubuntu:~$ cd shuren/d1/d2 ubuntu@ubuntu:d2$ cp f1 f2 d3
- 把d3目录移到家目录下
ubuntu@ubuntu:~$ mv shuren/d1/d2/d3 ~
- 删除文件shuren 和d3
ubuntu@ubuntu:~$ rm shuren d3 -r
思考:cp f1 f2 (假设f1和f2均有内容,请问拷贝后f2的内容是追加,还是覆盖)
假设f1和f2均有内容,拷贝后f2的内容是覆盖。