-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved all functions to a shared file
- Loading branch information
Abdullah A
committed
Feb 13, 2023
1 parent
aea4785
commit 41ea3c7
Showing
4 changed files
with
20 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
print_important() { | ||
echo -e "\n ${yellow}[+]${reset} ${bold}$1${reset} \n" | ||
} | ||
|
||
yellow=$'\e[1;93m' | ||
bold=$'\e[1m' | ||
reset=$'\e[0m' | ||
red=$'\e[1;31m' | ||
green=$'\e[1;32m' | ||
blue=$'\e[1;34m' | ||
magenta=$'\e[1;35m' | ||
cyan=$'\e[1;36m' | ||
white=$'\e[0m' | ||
norm=$'\e[21m' |