diff options
-rw-r--r-- | LICENSE | 13 | ||||
-rw-r--r-- | README | 3 | ||||
-rwxr-xr-x | ponysay | 4 |
3 files changed, 18 insertions, 2 deletions
@@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2012 <our names> + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. @@ -1,3 +1,6 @@ +I don't even know... + Author of the cows is unknown. Depends on cowsay for obvious reasons. Not even finished. +Put "ponies" to /usr/share or /usr/local/share @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash export PERL_UNICODE=S ponydir=$PWD/ponies @@ -6,7 +6,7 @@ function ponyf() { if [[ -f ${ponydir}/${1}.cow ]] ; then cowsay -f "${ponydir}/${1}.cow" $@ else - ponyr + ponyr fi } function ponyr() { |