Jump to content

Command Crate ¿about?

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.

utilities [kb:216]