🌈 搜索
📅  最后修改于: 2022-03-11 14:51:46.382000             🧑  作者: Mango
#!/bin/bash DIR="/tmp" if [ "$(ls -A $DIR)" ]; then echo "Wow, $DIR is not Empty" else echo "$DIR is Empty" fi