initial commit

This commit is contained in:
Jose Falanga 2025-09-08 17:38:31 -03:00
commit 9df80bf3d3
62 changed files with 3401 additions and 0 deletions

View file

@ -0,0 +1,37 @@
#!/bin/bash
#############
# DESCRIPTION
#############
# Displays ASCII art of the Arise logo :)
#
#############
# Usage:
# arise_logo
arise_logo() {
cat <<EOF
=========================================================
=========================================================
@@@
@@#@ @####@@@ ##@ @@@#+@@@@@ @@@@@@@@@@
@++@ @+++++++@ ++@ @+++++++@ @++++++++@
@+++@ @++@@@*++@ ++@ @++++++++@ @+++++++@
@@+*+@ @++@ @@+@ ++@ @++@#+@@@ @@@@@@@@@
@++@+@ @++@ @++@ ++@ @++@#+@
@++@@+@ @++@ @++@ ++@ @++@#+@@@ @@@@@@@@@
@#+#@@+@ @++@ @++@ ++@ *+++++++@ @+++++++@
@+++@@+@ @++@++@ ++@ @@+++++++ @+++++++@
@++++@@+@ @@@@@++++@ ++@ @@#+@@++@ @@@@@@@@@
@#+@@++@+@ @++++++#@ ++@ #+@@++@
@++@ @+++@ @+@@@@++@ ++@ @@@#+@@++@ @@@@@@@@@@
@++@ @+++@ @+@ @++@ ++@ @++++++++ @++++++++@
@*+@@ @++@ @+@ @++@ ++@ ++++++++@ @++++++++@
@@@@ @@@ @@@ @@@@ @@@ @@@@#+@@@ @@@@@@@@@@
@@@
=========================================================
=========================================================
EOF
}