--- localepurge/localepurge.ori 2013-11-11 10:17:48.952289775 +0100 +++ localepurge/localepurge.ori 2013-11-11 10:17:21.430961953 +0100 @@ -96,7 +96,14 @@ for x in $@; do - if [ "$x" = "-help" ] || [ "$x" = "-h" ]; then + # These options have already been tested, but if we ignore them + # here they are caught by the else block and the program quits. + if [ "$x" = "-debug" ] || [ "$x" = "-d" ] || \ + [ "$x" = "-nocolor" ] || [ "$x" = "-nc" ]; then + # Empty block + : + + elif [ "$x" = "-help" ] || [ "$x" = "-h" ]; then ayuda exit 0