On Wed, 20 May 2020 07:42:33 -0400 Trae McCombs <[email protected]> wrote:
> cat $TOMCAT_DIR/bin/setenv.sh > #!/usr/bin/csh > setenv FOO "-Dcom1 -Dcom2 -Dcom3 etc" > > run the above as a test in that bin dir: ./setenv.sh (no errors) > env |grep FOO > > Nothing. The command ./setenv.sh spans a new csh process, then creates there the env variable FOO with your desired value and exists. Your current shell is unaware of $FOO. I'm not a csh expert but in bash, you have to "source" the file with . ./setenv.sh -- Alberto Cabello Sánchez Servicio de Informática Universidad de Extremadura --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
