diff options
author | Erkin Batu Altunbaş <erkinbatu@gmail.com> | 2012-03-11 23:04:18 +0100 |
---|---|---|
committer | Erkin Batu Altunbaş <erkinbatu@gmail.com> | 2012-03-11 23:04:18 +0100 |
commit | d4e4715cae4ee9f4ad7a79667cca12e88e98b06b (patch) | |
tree | 5fec8b32ffbd88cb08fbd0d23c575c94beeaae2e /ponysay | |
parent | 6fd482e773c40fc7c4f5cc45779e9933eb59a7e6 (diff) | |
download | ponysay-d4e4715cae4ee9f4ad7a79667cca12e88e98b06b.tar.gz ponysay-d4e4715cae4ee9f4ad7a79667cca12e88e98b06b.tar.bz2 ponysay-d4e4715cae4ee9f4ad7a79667cca12e88e98b06b.zip |
added to check if cowsay exists, also readme
Diffstat (limited to 'ponysay')
-rwxr-xr-x | ponysay | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1,11 +1,20 @@ #!/usr/bin/env bash -version=0.4 +version=0.5 SYSTEMPONIES=/usr/share/ponies HOMEPONIES="${HOME}/.ponies" pony="*" wrap= +if [[ -f `which cowsay` ]]; +then continue; +else + echo "You don't seem to have the cowsay program." + echo "Please install it in order to use this wrapper." + echo -n "(Or symlink it to 'cowsay' in anywhere in \$path " + echo "if it actually exists under a different filename." +fi + cmd=cowsay [[ ${0} == *ponythink ]] && cmd=cowthink @@ -15,8 +24,7 @@ version() { usage() { version - echo - echo "Usage:" + echo -e "\nUsage:" echo "${0##*/} [options] [message]" echo echo "If [message] is not provided, reads the message from STDIN" |