From: Intransition Date: 2010-07-16T09:27:23+09:00 Subject: Re: Setting configuration until end of parent bash session On Jul 15, 8:10 pm, Intransition wrote: > > #!/bin/sh > > if [ -n "$myuniquefoovar" ]; then > >   echo "$myuniquefoovar" # or possibly printf > >   exit 0 > > fi > > if [ $# -ne 0 ]; then > >   myuniquefoovar="$*" > >   export myuniquefoovar > >   exec $SHELL > > fi > > exit 0 > > Thanks, I feel like I've gotten a step closer, but still no cigar. I > was able to get the child shell, which is cool --and I can accept that > if need to be o get this to work. But I can't get the environment > variable transfer into the new shell. Just discovered that capitalized variables (environment variables) are not transferred. But lowercase variables (shell variables) are. So this will work! Thanks Bob.