I wrote a small korn script, but when I try to run the script, it will not echo the message I want to display. When I try to run it by
ksh script.sh -1
it is not echoing the message.
if [ $# -le 0 ]
then
echo "That is a negative integer!"
exit
fi
In bash/ksh
$#
represents the number of arguments passed as parameters. What you needed isOr a shorted version of the above
Edit 1
${1:-0}
supply a default value.-le
with-lt
Edit 2
If you're looking forward to match a particular string then do below
If you're looking to see if the output is just has atleast one non-digit character,then do something like below
Warning : Not all expansions mentioned in the link may not be supported by
ksh