From 3edd0628528867f3b78ca39b2920ad0f7bde4145 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 31 Mar 2026 19:44:34 -0700 Subject: [PATCH] Change single quotes to double so regex works. --- rc_shared.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc_shared.sh b/rc_shared.sh index a82c56a..9de44c7 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -89,7 +89,7 @@ function today { date "+%Y%m%d"; } function send-masters { echo -e "`date` - Looping through MASTER & SYNC directories." - ls | grep '\-MASTER\|\-SYNC' | while read dir; do + ls | grep "\-MASTER\|\-SYNC" | while read dir; do echo -e "\n`date` - Found '$dir'..." cd $dir send-master