Skip to content

Instantly share code, notes, and snippets.

@VoQn
Created January 17, 2011 05:22
Show Gist options
  • Save VoQn/782524 to your computer and use it in GitHub Desktop.
Save VoQn/782524 to your computer and use it in GitHub Desktop.
Macのターミナルで実行できるHappyBirthday. usage > $ sh script.sh "VoQn" 26
#!usr/bin/sh
if [ $# -lt 2 ]; then
echo $0 Failed : Please give 2 arguments \”NAME\(string\) AGE\(natural number\)\"
exit
fi
name=$1
age=$2
yes "happy birthday $name" | head -n $age | say -v Good
#EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment