From d80ed7b85303516f176b11f98f29644a21566d26 Mon Sep 17 00:00:00 2001 From: borekon Date: Fri, 23 Jun 2023 09:53:12 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20'colores.sh'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- colores.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 colores.sh diff --git a/colores.sh b/colores.sh new file mode 100644 index 0000000..c7daaea --- /dev/null +++ b/colores.sh @@ -0,0 +1,19 @@ +RED='\033[1;31m' +GREEN='\033[1;32m' +BLUE='\033[1;35m' +YELLOW='\033[1;33m' +NC='\033[0m' +ip_to_find="0.0.0.0" +blocked=0 +rojo(){ + echo -e "${RED}$1${NC}" +} +amarillo(){ + echo -e "${YELLOW}$1${NC}" +} +verde(){ + echo -e "${GREEN}$1${NC}" +} +azul(){ + echo -e "${BLUE}$1${NC}" +} \ No newline at end of file