i have
syntax error near unexpected token `elif'
`elif [[$# -gt 31]]
when i execute following script (its part from script by "Fred Weinhaus" for text-cleaner) by python 3
if [ $# -eq 0 ] then # help information
echo ""
usage2
exit 0 elif [ $# -gt 31 ] then errMsg "--- TOO MANY ARGUMENTS WERE PROVIDED ---" else while [ $# -gt 0 ] do # get parameter values case "$1" in
-h|-help) # help information
echo ""
usage2
exit 0
;;
how i solve this problem?