Say I have a file under /var and I want to make its shortcut on desktop without using the mouse. Is that possible? I really want to use the trackpad as little as possible since I don't like it.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Aliases are just symlinks, so ln -s will do it.

ln -s /var/whatever ~/Desktop
link|improve this answer
1  
Not true for files. Both are treated the same in Finder, so from a user perspective it makes no difference. But try making an alias in Finder and ls -l the directory, it's not a symlink. – Daniel Beck Nov 12 '10 at 7:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.