ConditionalsΒΆ

Argument 1 is not specified:

if [ -z $1 ]; then
  echo "Not specified"
fi

One liner:

[ -z $1 ] && echo "Not specified"