Create semantic links on mac
Create Link
Sometimes you want to have a “shortcut”. I often create a shortcut (semantic link) for ~/code
to a location where i keep source code
General pattern:
ln -s /original location /destination location
Specific pattern:
ln -s /really/complicated/path/where/code/is/located ~/code
Destroy link
General pattern
unlink SymLinkToRemove
Specific pattern
unlink ~/code