群里有朋友问我如何检查一个目录是否为空目录
#!/bin/bashDIR=$1if [ "$(ls -A $DIR)" ]; thenecho "$DIR is not Empty"elseecho "$DIR is Empty"fi
enjoy it!
本文共 168 字,大约阅读时间需要 1 分钟。
群里有朋友问我如何检查一个目录是否为空目录
#!/bin/bashDIR=$1if [ "$(ls -A $DIR)" ]; thenecho "$DIR is not Empty"elseecho "$DIR is Empty"fi
enjoy it!
转载于:https://blog.51cto.com/laoxu/1215322