• #!/bin/bash
  • a="zzz"
  • if [[ "$a" = "" ]]
  • then
  • echo $a empty
  • else
  • echo $a no empty
  • fi
  • 发表回复