Created
May 15, 2013 22:11
-
-
Save afresh1/5587835 to your computer and use it in GitHub Desktop.
I use this in my .bashrc to update my shell environment from tmux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tmup () { | |
echo -n "Updating to latest tmux environment..."; | |
local IFS=","; | |
for line in $(tmux showenv -t $(tmux display -p "#S") | tr "\n" ","); | |
do | |
if [[ $line == -* ]]; then | |
unset $(echo $line | cut -c2-); | |
else | |
export $line; | |
fi; | |
done; | |
echo "Done" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment