unix shell ksh:if语句将不会同时执行两个部分

|| 关闭。这个问题是题外话。它当前不接受答案。
已邀请:
#testing file to be read and display error messages:
if [ -f \"$file\" ];then
  echo \"Error: Nonexistent or irregular file. \"
else
  echo Found
fi

if [ -r \"$file\" ];then
  echo \"No Reading access\"
else
  echo Reading Access
fi

要回复问题请先登录注册