Nicholas Bamber Sun, 01 Nov 2015 13:25:17 -0800
tag 792733 + pending thanks
I'm going for # view/manipulate and export environment variables setenv() { case $# in 0) export ;; 1) export "$1"= ;; *) export "$1"="$2" ;; esac } I also made some other necessary changes to this file.