You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
-
- #EOF allows the contents inside of be displayed as is and not affect the rest of the script
- IFS='' read -r -d '' VAR <<-'EOF'
- //////////////////////////////////////////////////////////////////////////////
- \ ______ _ __ /
- \ |_ _ `. (_) | ] /
- \ .--. _ .--. .---. _ .--. | | `. \ __ _ .--. ______ .--.| | /
- \ / .'`\ \[ '/'`\ \/ /__\\[ `.-. | | | | |[ | [ `/'`\]|______|/ /'`\' | /
- \ | \__. | | \__/ || \__., | | | | _| |_.' / | | | | | \__/ | /
- \ '.__.' | ;.__/ '.__.'[___||__]|______.' [___][___] '.__.;__] /
- \ [__| /
- \ 2.0 /
- //////////////////////////////////////////////////////////////////////////////
- Version 2.0
- Totally Modular Dude!
- A modular bash script for downloading shit
- Written by HMSheets
-
- -------------------------------------------------------------------------------
- EOF
-
- title() {
- echo "$VAR"
- }
|