aboutsummaryrefslogtreecommitdiff
path: root/ttyponies.sh
blob: bcfbe95c3b6b58d7db35b91818fb430aba61e07e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

for pony in $(ls ponies/); do
    echo "building ttypony: $pony"
    if [[ `readlink "ponies/$pony"` = '' ]]; then
	ponysay2ttyponysay < "ponies/$pony" | unzebra -e | tty2colourfultty -c 1 -e > "ttyponies/$pony"
    elif [[ ! -f "ttyponies/$pony" ]]; then
	ln -s `readlink "ponies/$pony"` "ttyponies/$pony"
    fi
done