http://qs321.pair.com?node_id=24193


in reply to RE: setenv
in thread setenv

well technically setenv is a csh'ism, so you would expect to see #!/bin/csh at the top.

the equivalent /bin/sh'ism would be

VAR="this is the value of the variable" export VAR

</offtopic nitpicking>
-Mark

Replies are listed 'Best First'.
RE: RE: RE: setenv
by ar0n (Priest) on Jul 25, 2000 at 01:35 UTC
    Now that we're nitpicking....
    export VAR="foo? bar! baz..."

    update: this is actually a bash thingy (or ksh. thanks tye!)

    -- ar0n

      And the nitpicking continues... You've used a ksh'ism that won't work with a real /bin/sh. ;>