Windows: シンボリックリンク
#Windows
Windowsでもシンボリックリンクが作れるよ
権限
Windowsでシンボリックリンクを作るには、権限が必要
Git for WindowsのWikiが一番わかりやすい
https://gitforwindows.org/symbolic-links.html
cmd
code:cmd
mklink <new link file> <source file>
ディレクトリの場合
code:cmd
mklink /D <new link dir> <source dir>
UNIX: lnと真逆なので注意!
PowerShell
code:ps1
New-Item -ItemType SymbolicLink -Target <source dir> -Path <new link dir>