字符串判空
Posted yin.kh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串判空相关的知识,希望对你有一定的参考价值。
主要用到两个命令
-n -z
if [ -n "$PID" ]; then
echo "PID is not empty"
fi
if[ -z "$PID" ]; then
echo "PID is empty"
fi
以上是关于字符串判空的主要内容,如果未能解决你的问题,请参考以下文章
Posted yin.kh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串判空相关的知识,希望对你有一定的参考价值。
主要用到两个命令
-n -z
if [ -n "$PID" ]; then
echo "PID is not empty"
fi
if[ -z "$PID" ]; then
echo "PID is empty"
fi
以上是关于字符串判空的主要内容,如果未能解决你的问题,请参考以下文章