●在Linux中,可以使用命令()来给test文件赋予执行权限。
A: [root@root]#chmod -X test
B: [root@root]#chmod +x test
C: [root@root]#chmod -W test
D: [root@root]#chmod +w test
A: [root@root]#chmod -X test
B: [root@root]#chmod +x test
C: [root@root]#chmod -W test
D: [root@root]#chmod +w test
举一反三
- 需要设置某个文件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
- 在Linux中,可以使用命令()来给test文件赋予执行权限。 A: [root@root]#chmod-xtest B: [root@root]#chmod+xtest C: [root@root]#chmod-wtest D: [root@root]#chmod+wtest
- 如何在vi的环境中将样例文件的root在当前行中都替换为test? A: :1,2s/root/test/g B: :s/root/test C: :s/root/test/g D: :s/root/test/g
- 将当前目录下的test文件夹复制到/root目录下,并改名为dir() A: cp test /root/di B: cp -r test /root C: cp -p test /root/di D: cp -r test /root/di