Skip to content

Instantly share code, notes, and snippets.

@maciakl
Created June 26, 2022 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maciakl/93e2a445e17f3959e56462063f8474a9 to your computer and use it in GitHub Desktop.
Save maciakl/93e2a445e17f3959e56462063f8474a9 to your computer and use it in GitHub Desktop.
A nice script generating a red Debian Spiral logo. Perfect for your MOTD.
#!/bin/bash
echo -e "\e[1;31m"
echo -e " _,edm\$\$\$\$\$on."
echo -e " ,d\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$P."
echo -e " ,g\$\$P\"\" \"\"\"Y\$\$.\"."
echo -e " ,\$\$P' \`\$\$\$."
echo -e " ',\$\$P ,ggs. \`\$\$b:"
echo -e " \`d\$\$' ,\$P\"' . \$\$\$"
echo -e " \$\$P d\$' , \$\$P"
echo -e " \$\$: \$\$. - ,d\$\$'"
echo -e " \$\$; Y\$b._ _,d\$P'"
echo -e " Y\$\$. \`.\`\"Y\$\$\$\$P\"'"
echo -e " \`\$\$b \"-.__"
echo -e " \`Y\$\$b"
echo -e " \`Y\$\$. \e[0;1mDebian GNU\Linux `cat /etc/debian_version`\e[1;31m"
echo -e " \`\$\$b."
echo -e " \`Y\$\$b."
echo -e " \`\"Y\$b._"
echo -e " \`\"\"\"\""
echo -e "\e[0m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment