Parametr kontroli bash jest ustawiony

if [ -z "$1" ]; then
    echo "no paramater given"
else
	echo paramater is "$1"
fi
AttractivePenguin