Created
August 25, 2014 20:37
-
-
Save crahan/0b19d00972e628adc7f3 to your computer and use it in GitHub Desktop.
Revisions
-
crahan revised this gist
Aug 25, 2014 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ if [ "$#" -ne 1 ]; then fi for i in `ls /usr/local/Cellar/figlet/2.2.5/share/figlet/fonts/*.flf`; do echo -e "==== $(basename $i) ====\n" figlet -f $i $1 echo -e "\n\n\n" done -
crahan created this gist
Aug 25, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ #!/bin/sh if [ "$#" -ne 1 ]; then echo "I need some text to print." exit 1 fi for i in `ls /usr/local/Cellar/figlet/2.2.5/share/figlet/fonts/*.flf`; do echo -e "==== $(basename $i) ====\n" figlet -f $i $1 echo -e "\n\n\n" done