Enter the directory through an alias in a Mac OS X terminal

Is there any way to make this easy? I have a pretty deep directory in the file system and I get access to it a lot, so I made an alias in my home directory, but it will not let me paste it into it. What are the solutions? Thank!

+11
unix terminal alias
Oct 27 '11 at 19:02
source share
2 answers

you can make symbolic links to it, as in unix

eg.

ln -s ~/Library/Documentation . 

creates a symbolic link to the Documentation folder hidden in your ~ / Library folder.

+12
Oct 27 '11 at 19:22
source share

try it

Create: ln -s [Directory] [alias name of the directory] // this is stored in the current directory;

Delete: unlink [alias name of this directory]

+3
Jan 27 '16 at 23:04 on
source share



All Articles