From 3ed66ea059fb610780f61abef6e98d8e96da27cf Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 13 Apr 2026 19:28:32 -0700 Subject: [PATCH] Add exporting of all functions, same as done in env-shared. --- bashrc.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bashrc.sh b/bashrc.sh index 81a2183..c0e8673 100644 --- a/bashrc.sh +++ b/bashrc.sh @@ -327,6 +327,10 @@ alias prod-backup="pull_prod_backups" alias pull-prod="pull_prod_backups" alias prod-pull="pull_prod_backups" + +# Export all functions! # +eval "$(declare -F | grep -v _ | sed 's/-f /-fx /')" + # Complete! PROG="$(basename -- "${BASH_SOURCE[0]}")" echo "`date` - '$PROG' completed!"