From cbacd3db509745b5043fe34a319c257593b81efa Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 28 Mar 2026 14:41:27 -0700 Subject: [PATCH] Only export functions without underscores. --- rc_shared.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc_shared.sh b/rc_shared.sh index 27b87b6..845c05c 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -317,7 +317,7 @@ alias pull-audio="v2a" alias pa="v2a" # Export all functions! # -eval "$(declare -F | sed 's/-f /-fx /')" +eval "$(declare -F | grep -v _ | sed 's/-f /-fx /')" ## Complete! ##