Código
#!/bin/bash declare -i G=0 while getopts :g: OPTIONS do case $OPTIONS in g) G=1 PATH=$OPTARG;; esac done if [ $G -eq 1 ] then mkdir -p $PATH ls -l fi
cualquier comando que escriba dentro del if me da fallo, me dice mkdir: command not found y ls: command not found, alguien sabe que puede ser? :s
gracias un saludoo