Yo uso Ubuntu 12.04.4. Instalo tcsh. Pero aún veo este error:
No command 'setenv' found, did you mean:
Command 'netenv' from package 'netenv' (universe)
setenv: command not found
Cómo puedo arreglarlo ?
Yo uso Ubuntu 12.04.4. Instalo tcsh. Pero aún veo este error:
No command 'setenv' found, did you mean:
Command 'netenv' from package 'netenv' (universe)
setenv: command not found
Cómo puedo arreglarlo ?
Respuestas:
Tienes dos opciones! Ejecute un cshshell compatible o cambie la sintaxis de su comando.
setenv VARIABLE value
es la cshsintaxis (y parece que lo sabes). Para kshy bashel comando equivalente es,
export VARIABLE=value
Para ejecutar tcsh(después de instalar con sudo apt-get install tcsh) puede
tcsh
Para cambiar su shell a tcsh" permanentemente ",
chsh -s /usr/bin/tcsh
Para volver a bash,
chsh -s /bin/bash