Quote:
Originally Posted by rjames
If you could help me with the symlink question that would be great, otherwise I think I am near-enough there thank you.
|
Sure.
Quote:
Originally Posted by rjames
I guess that is the command line equivalent of the File Browser's right-click Make Link
|
Exactly. What you would think of as a "shortcut" in Windows.
For the manual page just type
But for the most part you only need to know one switch, the '-s' switch which stands for symbolic.
To make a symbolic link or shortcut just do
Code:
ln -s /path/to/somefile /path/to/shortcut
So let's say you wanted to symlink /opt/processing/processing.sh to /usr/bin, you would just do
Code:
ln -s /opt/processing/processing.sh /usr/bin/
and that would create /usr/bin/processing.sh which is just a shortcut to the real file.
By the way the purpose of placing a shortcut into /usr/bin is to put that program in your path, so that you can just type processing.sh instead of having to type out the full path "/opt/processing/processing.sh" or whatever every time you want to run it.
Hope that helps.