如何将tmp目录下名字以script字样打头,紧接两个任意字符,以.sh结尾的文件的访问权限改成文件拥有者有全部权限,从属组用户有读选项,其他用户无权限
A: chmod 740 /tmp/script??.sh
B: chmod 740 /tmp/script**.sh
C: chmod 750 /tmp/script?.sh
D: chmod 750 /tmp/script*.sh
A: chmod 740 /tmp/script??.sh
B: chmod 740 /tmp/script**.sh
C: chmod 750 /tmp/script?.sh
D: chmod 750 /tmp/script*.sh
举一反三
- 如何将tmp目录下名字以script字样打头,紧接两个任意字符,以.sh结尾的文件的访问权限改成文件拥有者有全部权限,从属组用户有读选项,其他用户无权限
- 如何将tmp目录下名字以script字样打头,紧接两个任意一个字符,以.sh结尾的文件的访问权限改成700
- 将/root/tmp目录中所有的.sh文件的访问权限改为文件所有者具有可读可写可执行,与文件所有者同组用户具有可读可执行权限,其他只具有执行的权限 A: chown 751 /root/tmp/*.sh B: chmod 751 /root/tmp/*.sh C: chmod 777 /root/tmp/*.sh D: chmod 777 *.sh
- chmod 3775 /tmp命令执行后,tmp目录具有了哪两种特殊权限?( )
- LINUX系统下,在/tmp/下新建目录testqq,并指定权限711的命令包括() A: mkdir /tmp/ttestqq B: chmod 711 /tmp/testqq C: chown 711 /tmp/testqq D: touch /tmp/ttestqq