Hi,
I want create a script file that sets a variable.
I'm using the tcsh shell. I created this file:
#!/bin/tcsh
setenv GIULIO ggg
but after I called this file, if I see $GIULIO by
$ echo $GIULIO
the shell write me
$GIULIO: undefined variable
Why?
If a write
$ setenv GIULIO ggg
$ echo %GIULIO
ggg
so it runs at the prompt!
Thank you
Giulio Ballardin