2

I'm telnetting into an IRIX 64 server and I'm trying to create shortcuts to emacs, gvim, and other executables that are stored in a certain directory. I tried using the alias command on the command line in the following manner:

alias gvim="/usr/.../gvim"
alias emacs="/usr/.../emacs"
...

but whenever I try this and run emacs/gvim, it still doesn't work. And when I run alias -p, nothing shows up. What am I doing wrong?

Jeff Schaller
  • 66,199
  • 35
  • 114
  • 250
de1337ed
  • 143
  • 3

1 Answers1

3

From what I found, IRIX uses csh as its default shell. Thus its syntax is different: rather than alias foo=bar you use alias foo bar.

Try

alias gvim /usr/.../gvim
alias emacs /usr/.../emacs
Renan
  • 16,976
  • 8
  • 69
  • 88