script de shell se a entrada estiver vazia

if [ $# -eq 0 ]
  then
    echo "No arguments supplied"
fi
Ill Ibis