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>"
Select a result to preview
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>"