Can someone please tell me what is the right way to set up a bunch of environment variables in a fish shell?
In my .config / fish / config.fish file, I have a function to configure my environment variables, e.g.
function setTESTENV set -x BROKER_IP '10.14.16.216' set -x USERNAME 'foo' set -x USERPASS 'bar' end
when I enter setTESTENV from the command line and do env on the command line, I do not see this information.
shell fish
cfpete 02 Sep '14 at 21:39 2014-09-02 21:39
source share