需要将/root/test1.txt文件复制到/mnt中并重命名为test2.txt ,下面正确的命令是()
举一反三
- 需要将/root/test1.txt文件复制到/mnt中并重命名为test2.txt ,下面正确的命令是()
- 重命名文件test1.txt为test2.txt。
- [root@localhost ~]# touch test1.txt test2.txt test3.txt #建立三个测试文件使用mv命令移动文件,加入()选项,可以看到有哪些文件进行了移动[root@localhost ~]# mv () *.txt /tmp "test1.txt" -> "/tmp/test1.txt" "test2.txt" -> "/tmp/test2.txt" "test3.txt" -> "/tmp/test3.txt"
- 需要设置某个文件test属于root用户,abc组,如下命令那个正确? A: chmod u+x test B: chown abc:root test C: chmod root:abc test D: chmod test:root abc
- 需要设置某个文件test属于root用户,abc组,如下命令那个正确? A: chmod u+x test B: chown abc:root test C: chmod root:abc test D: chmod test:root abc