#!/bin/bash
# Valentine's Day ansi art (2/14/2014)
if [ $# -eq 0 ]
then
echo "usage: for_my_valentine [person]"
exit 1
fi
echo "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░"
echo "░░░░░░░████████████░░░░░░█████████████░░░░░░░░░"
echo "░░░░█████████████████░░██████████████████░░░░░░"
echo "░░░███████████████████████████████████████░░░░░"
echo "░░█████████████████████████████████████████░░░░"
echo "░░██████████████████████████████████████████░░░"
echo "░░██████████████████████████████████████████░░░"
echo "░░██████████████████████████████████████████░░░"
echo "░░░████████████████████████████████████████░░░░"
echo "░░░░██████████████████████████████████████░░░░░"
echo "░░░░░░██████████████████████████████████░░░░░░░"
echo "░░░░░░░████████████████████████████████░░░░░░░░"
echo "░░░░░░░░░████████████████████████████░░░░░░░░░░"
echo "░░░░░░░░░░█████████████████████████░░░░░░░░░░░░"
echo "░░░░░░░░░░░██████████████████████░░░░░░░░░░░░░░"
echo "░░░░░░░░░░░░░██████████████████░░░░░░░░░░░░░░░░"
echo "░░░░░░░░░░░░░░░██████████████░░░░░░░░░░░░░░░░░░"
echo "░░░░░░░░░░░░░░░░░██████████░░░░░░░░░░░░░░░░░░░░"
echo "░░░░░░░░░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░░░░░░"
echo "░░░░░░░░░░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░"
echo "Happy Valentine's Day, $1!!"
# |
Change |
User |
Description |
Committed |
|
#1
|
8561 |
Liz Lam |
Adding a Valentine's Day shell script for fun. |
|
|