From 0e3fdfd1d6ad818001bdb3d12223d06d817e6936 Mon Sep 17 00:00:00 2001 From: frrobert2 Date: Thu, 13 May 2021 21:58:23 -0400 Subject: [PATCH] Added strict option --- laced | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/laced b/laced index d779bb7..ae8c825 100755 --- a/laced +++ b/laced @@ -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