16、要将tmp目录下名字以script字样打头,紧接两个任意字符,以.sh结尾的文件的访问权限改成700,下面哪种做法是正确的?

A.chmod 700 /tmp/script??.sh B.find /tmp -name "script??.sh" -exec chmod 700 {} \; C.chmod 700 /tmp/script**.sh D.chmod 700 /tmp/script[??].sh E.chmod 700 /tmp/script[**].sh F.find /tmp -name "script**.sh" -exec chmod 700 {} \;

时间:2023-12-29 11:09:21

相似题目