• 2022-06-07
    如何将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