当我遇到以下情况时,我正在移植另一个 shell 脚本:
if [[ ! -x $DVDREC ]]; then
print "ERROR: $DVDREC not found. Exiting ..."
exit 1
fi
if [[ ! -c ${DVDDEV} ]]; then
print "ERROR: ${DVDDEV} not found. Exiting ..."
exit 1
fi
我想知道 -c 和 -x 选项实际上对存储在 DVDREC 和 DVDDEV 中的字符串有什么作用?