Hi - Sorry to bother everyone with such a trivial question. There are a
handful of enviromental variables that I need to set for all users. Most I
was able to add to ~/.bashrc files. However, some I want the users (who
aren't that cmd line savvy) to be able to edit. I thought about adding
scripts to the /usr/bin directory, which looked like this:
# cat /usr/bin/lincds
#!/bin/bash
export LINDA_CLC=cds
export LINDA_FLC=cds
--
# cat /usr/bin/linnet
#!/bin/bash
export LINDA_CLC=network
export LINDA_FLC=network
The scripts run, but upon examination of the output of the env and export
commands, it doesn't look like the variables have 'stuck'. I known that
this should be a pretty simple matter, and any help would be appreciated.
Thanks!