I want the user to be able to run a script which looks like this now:
# script.sh
export PASSPHRASE=123
and then be able to do this in the same terminal as that in which the script was evoked:
$ echo $PASSPHRASE
123
In other words, I want the variable in the script to be available to the user after the script has been run. How do I do that?