Symbolic Link

Symbolic Link

Pointer in a filesystem to another file or folder.

# Windows
New-Item -ItemType SymbolicLink -Path "<link-path>" -Target "<actual-path>"

# Linux/MacOS
ln -s "<actual-path>" "<link-path>"
Powered by Forestry.md