Create ASCII art message (Bash)
cat <<EOF
(*- { $@ }
//\
v_/_
EOF
Uses a here-document (cat <<EOF) to print a customizable ASCII art message, with $@ representing passed arguments, and outputs a simple "Tux say!" design.
cat <<EOF
(*- { $@ }
//\
v_/_
EOF
Uses a here-document (cat <<EOF) to print a customizable ASCII art message, with $@ representing passed arguments, and outputs a simple "Tux say!" design.