如何检查umask是否阻止设置组位?我的尝试:
#!/bin/sh
out=$(umask)
echo "$out"
if (($out & 070) != 0); then
echo "$out"
echo "Incorrect umask" > /dev/tty
exit 1
fi
输出:
./test.sh: line 6: syntax error near unexpected token `!='
./test.sh: line 6: `if (($out & 070) != 0); then'
如果它让事情变得更容易,我可以切换到bash。
答案 0 :(得分:4)
您需要使用双括号来进行算术评估。见https://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs
m=$(umask)
if (( ($m & 070) != 0 )); then
echo error
fi
或者您可以将umask视为字符串并使用glob-pattern matching:
if [[ $m == *0? ]]; then
echo OK
else
echo err
fi
bash有很多独特的语法:它根本不是C / perl。阅读(或至少参考)手册,并在此处阅读大量bash个问题。继续提问。