Last active
April 14, 2024 16:51
-
-
Save kyb3rcipher/d5d22faf081f8b427394d5cf608823f1 to your computer and use it in GitHub Desktop.
Shell scripting colors
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
# Colours | |
resetColor="\e[0m\e[0m" | |
redColor="\e[0;31m\e[1m" | |
blueColor="\e[0;34m\e[1m" | |
cyanColor="\e[01;96m\e[1m" | |
grayColor="\e[0;37m\e[1m" | |
greenColor="\e[0;32m\e[1m" | |
magentaColor="\e[0;35m\e[1m" | |
yellowColor="\e[0;33m\e[1m" | |
turquoiseColor="\e[0;36m\e[1m" | |
dot="${redColor}[${endColor}${yellowColor}*${endColor}${redColor}]${endColor}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment