From 24f52c0e3196d4dbfb4a3c8b32d29a10ad021dac Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 15 Jul 2012 01:01:50 +0200 Subject: dezebraised and non-kms-comp. ttyponies + auto building of ttyponies --- ttyponies.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 ttyponies.sh (limited to 'ttyponies.sh') diff --git a/ttyponies.sh b/ttyponies.sh new file mode 100755 index 0000000..bcfbe95 --- /dev/null +++ b/ttyponies.sh @@ -0,0 +1,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 + -- cgit