From 136feb6c8c2e8b2d70da554e264445baed116dc6 Mon Sep 17 00:00:00 2001 From: frrobert2 Date: Thu, 13 May 2021 21:51:37 -0400 Subject: [PATCH] Added strict option --- lace | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lace b/lace index 14d2183..d97f0bb 100755 --- a/lace +++ b/lace @@ -21,6 +21,12 @@ red="[31m" blue="[34m" nc="[m" esc=$(echo -e "\033") + if [[ "$1" == "strict" ]] || [[ "$1" == "--strict" ]] || [[ "$1" == "-strict" ]] || [[ "$1" == "-s" ]];then + red="" + blue="" + nc="" + esc="" + fi tmpfile=$(mktemp /tmp/lace.XXXXXX) tmpfile2=$(mktemp /tmp/lace.XXXXXX) function reldate() { -- 1.8.3.1