|
you never mentioned what shell you are using?
The command you typed only works for ksh
do an echo $SHELL and see what it says.
if you are using bourne shell then the command is in complete
the complete command to export EDITOR or export anything under bourne shell is ..
EDITOR=vi;export EDITOR
|