显示文本 TRUE 的代码

显示文本 TRUE 的代码

如果使用 if then 语句测试文件设置了可读位,我将尝试在屏幕上显示文本 TRUE。

答案1

if [[ -r /path/to/your/file ]]; then
  echo "TRUE"
fi

相关内容