From 3d601f12d200fc5dcf860628dd698f1b3cb2bfd5 Mon Sep 17 00:00:00 2001 From: Ionel Andrei Cataon Date: Tue, 16 Dec 2025 04:32:41 +0200 Subject: [PATCH] 2ndUpdate --- Bash_scripting/colors.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 Bash_scripting/colors.sh diff --git a/Bash_scripting/colors.sh b/Bash_scripting/colors.sh deleted file mode 100755 index d592461..0000000 --- a/Bash_scripting/colors.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -# --- Color/Style Variables --- -RED='\e[0;31m' -GREEN='\e[0;32m' -YELLOW='\e[1;33m' # 1 for Bold, 33 for Yellow -NC='\e[0m' # No Color - Reset all attributes - -# --- Usage Example --- -echo -e "${GREEN}SUCCESS:${NC} Configuration loaded successfully." -echo -e "${RED}ERROR:${NC} Failed to connect to database." -echo -e "${YELLOW}WARNING:${NC} Disk space is getting low." -echo -e "This is ${RED}Red ${NC}and this is ${YELLOW}Yellow${NC} text." \ No newline at end of file