Reword unsetting external variables to avoid confusion on what it does

This commit is contained in:
Gregoo 2025-01-24 12:32:57 +01:00
parent 1685867494
commit 466e2e39d9

View File

@ -4,7 +4,7 @@
for VAR in `env | cut -d '=' -f 1`
do
case $VAR in BK_*)
echo "Unsetting $VAR"
echo "Unsetting external $VAR"
unset "$VAR"
esac
done