Last active
August 7, 2020 16:17
-
-
Save gerzenstl/7914753d2083a8d806b970b746d625f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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