这是我的 demo.sh 文件
#!/bin/bash
if [[ $(ls -A) ]]; then
echo "there are files"
else
echo "no files found"
fi
但是当我运行这个时我得到的输出是
demo.sh: 3: demo.sh: [[: not found
no files found
但此目录中有一些文件
这是我的 demo.sh 文件
#!/bin/bash
if [[ $(ls -A) ]]; then
echo "there are files"
else
echo "no files found"
fi
但是当我运行这个时我得到的输出是
demo.sh: 3: demo.sh: [[: not found
no files found
但此目录中有一些文件