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