Skip to content

Instantly share code, notes, and snippets.

@souhaiebtar
Created April 8, 2024 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save souhaiebtar/c51d5d3fffc04acc108f8971d2abd8f4 to your computer and use it in GitHub Desktop.
Save souhaiebtar/c51d5d3fffc04acc108f8971d2abd8f4 to your computer and use it in GitHub Desktop.
[symbolic link in windows using powershell] symbolic link in windows using powershell #ln #SymblicLink #windows #powershell
# let say you have a folder called " C:\Users\PROFILENAME\cli " that you add to your PATH environment variable
# you can `cd` to this folder (cd C:\Users\PROFILENAME\cli) and run the next command
# now you can access run `lite-xl` program from powershell from whaterver directory you are in
new-item -Path litexl -ItemType SymbolicLink -Value C:\Users\starhoun\tools\litexl\lite-xl.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment