I have specified a variable like this in shell script,
organisation="${organisation:-'$1/'}" I have passed $1 as "repo" while executing this script, then organisation variable is echoed as "repo/". without passing $1 it's "/", Which i don't want.
My Question is i want this variable to print null if $1 is not passed or print "repo/" if $1 is passed.