题目:
1.拷贝etc下面的passwd、group、gshadow到/tmp目录下
2.在tmp目录下创建一个文件夹叫 Container
3.将/tmp下的passwd、group、gshadow移动到Container中
4.将passwd、group、gshadow重命名为1、2、3
5.将1中的内容覆盖到2中
6.将1,2,3中的内容合并为一个新文件叫4
1.拷贝etc下面的passwd、group、gshadow到/tmp目录下
[root@localhost tmp]# cp /etc/passwd /etc/group /etc/gshadow /tmp
2.在tmp目录下创建一个文件夹叫 Container
[root@localhost tmp]# mkdir /tmp/Container
3.将/tmp下的passwd、group、gshadow移动到Container中
[root@localhost tmp]# mv /tmp/passwd /tmp/Container
[root@localhost tmp]# mv /tmp/group /tmp/Container
[root@localhost tmp]# mv /tmp/gshadow /tmp/Container
4.将passwd、group、gshadow重命名为1、2、3
[root@localhost tmp]# mv /tmp/Container/group /tmp/Container/1
[root@localhost tmp]# mv /tmp/Container/group /tmp/Container/2
[root@localhost tmp]# mv /tmp/Container/gshadow /tmp/Container/3
5.将1中的内容覆盖到2中
[root@localhost tmp]# cp -f /tmp/Container/1 /tmp/Container/2
cp:是否覆盖'/tmp/Container/2'? y
6.将1,2,3中的内容合并为一个新文件叫4
[root@localhost tmp]# cat /tmp/Container/1 /tmp/Container/2 /tmp/Container/3 > /tmp/Container/4