Creating a symbolic link on Ubuntu 12.10
The ln
command can be used to create a symbolic link on Ubuntu 12.10.
The example below will create a symlink from /usr/bin/nodejs
to /usr/bin/node
$ ln -s /usr/bin/nodejs /usr/bin/node
now, when I use the node
command, I'm actually calling nodejs