diff --git a/completion/bash-completion.sh b/completion/bash-completion.sh index 54b50fe..82eb608 100644 --- a/completion/bash-completion.sh +++ b/completion/bash-completion.sh @@ -18,10 +18,10 @@ _ponysay() fi if [[ -d $sysponies ]]; then - COMPREPLY+=( $( compgen -W "$(ls $sysponies | sed -e 's/.pony//g')" -- "$cur" ) ) + COMPREPLY+=( $( compgen -W "$(ls --color=no $sysponies | sed -e 's/.pony//g')" -- "$cur" ) ) fi if [[ -d $usrponies ]]; then - COMPREPLY+=( $( compgen -W "$(ls $usrponies | sed -e 's/.pony//g')" -- "$cur" ) ) + COMPREPLY+=( $( compgen -W "$(ls --color=no $usrponies | sed -e 's/.pony//g')" -- "$cur" ) ) fi elif [[ $prev = "-W" ]]; then cols=$( echo `tput cols` - 10 | bc ) diff --git a/ttyponies.sh b/ttyponies.sh index bcfbe95..4913119 100755 --- a/ttyponies.sh +++ b/ttyponies.sh @@ -1,9 +1,9 @@ #!/bin/bash -for pony in $(ls ponies/); do +for pony in $(ls --color=no ponies/); do echo "building ttypony: $pony" if [[ `readlink "ponies/$pony"` = '' ]]; then - ponysay2ttyponysay < "ponies/$pony" | unzebra -e | tty2colourfultty -c 1 -e > "ttyponies/$pony" + ponysay2ttyponysay < "ponies/$pony" | tty2colourfultty -c 1 -e > "ttyponies/$pony" elif [[ ! -f "ttyponies/$pony" ]]; then ln -s `readlink "ponies/$pony"` "ttyponies/$pony" fi diff --git a/ttyponies/allie.pony b/ttyponies/allie.pony index a3452f2..11625fc 100644 --- a/ttyponies/allie.pony +++ b/ttyponies/allie.pony @@ -2,30 +2,30 @@ $the_cow =<