Compare commits
No commits in common. "valentinpic" and "v1.0" have entirely different histories.
valentinpi
...
v1.0
3 changed files with 1 additions and 21 deletions
1
LICENSE
1
LICENSE
|
@ -10,4 +10,3 @@ christmastree: jgs, from http://chris.com/ascii/index.php?art=holiday/christmas/
|
|||
pizza: http://www.ascii-art.de/ascii/pqr/pizza.txt
|
||||
heart: Norman Veilleux/Ryan Harding, from http://www.ascii-fr.com/-Hearts-.html
|
||||
birthdaycake: http://chris.com/ascii/index.php?art=events/birthday
|
||||
valentine: http://loveascii.com/valentines2.html
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
.-"""-. .-"""-.
|
||||
/ `..' \
|
||||
| |
|
||||
| H A P P Y |
|
||||
\ VALENTINE'S /
|
||||
__\ D A Y ! /
|
||||
_ / |`\ /'
|
||||
| \ \/_/ `\ /'
|
||||
\_\| / __ `\ /'
|
||||
\/_/__\ `\/' .--='/~\
|
||||
____,__/__,_____,______)/ /{~}}}
|
||||
-,-----,--\--,-----,---,\'-' {{~}}
|
||||
__/\_ '--=.\}/
|
||||
/_/ |\\
|
||||
\/
|
|
@ -18,7 +18,6 @@ help() {
|
|||
echo " -b Send happy birthday"
|
||||
echo " -c Send merry christmas"
|
||||
echo " -n Send a happy new year"
|
||||
echo " -v Send a happy valentine's day"
|
||||
echo " -m <addr> Receivers address (non-optional)"
|
||||
echo " -s <addr> Senders address, defaults to user@host"
|
||||
echo " -h Print this help-message"
|
||||
|
@ -30,7 +29,7 @@ if [ ! $1 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
while getopts "plbcnhmv:s:" opt; do
|
||||
while getopts "plbcnhm:s:" opt; do
|
||||
case ${opt} in
|
||||
p )
|
||||
: ${PIZZAART:="pizza"}
|
||||
|
@ -47,9 +46,6 @@ while getopts "plbcnhmv:s:" opt; do
|
|||
n )
|
||||
: ${PIZZAART:="new_year"}
|
||||
;;
|
||||
v )
|
||||
: ${PIZZAART:="valentine"}
|
||||
;;
|
||||
m )
|
||||
PIZZARCV="${OPTARG}"
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue