Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #!/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"
- }
|