Skip to content

Instantly share code, notes, and snippets.

@gerzenstl
Last active August 7, 2020 16:17
Show Gist options
  • Select an option

  • Save gerzenstl/7914753d2083a8d806b970b746d625f2 to your computer and use it in GitHub Desktop.

Select an option

Save gerzenstl/7914753d2083a8d806b970b746d625f2 to your computer and use it in GitHub Desktop.
#!/bin/sh
## A useful snippet for deploy on Fridays
set -e
DAYOFWEEK=$(date +"%u")
if [ "$DAYOFWEEK" -eq 5 ]; then
echo "┐┌┐┌┐┐┌┐┌┐";
echo "┘└┘└┘\ₒ/";
echo "┐┌┐┌┐ ∕ Friday";
echo "┘└┘└┘ノ)";
echo "┐┌┐┌┐ deploy,";
echo "┘└┘└┘";
echo "┐┌┐┌┐ good";
echo "┘└┘└┘";
echo "┐┌┐┌┐ luck!";
echo "│││││";
echo "┴┴┴┴┴";
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment