script de shell si la entrada está vacía

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