What's the difference between export
and setenv
?
Asked
Active
Viewed 1.7k times
1 Answers
18
there is none but:
setenv
is the name of the command in the *csh family of shells
export
is the name of the command in the "other" family of shells (ash, bourne, bourne again, zsh)
and, ok, the syntax is slightly different. but other than that? none.

akira
- 1,054
export VARIABLE=VALUE
. Instead you need to do – Mike Vella Apr 04 '17 at 16:19