I need to add a program to the windows shell so I can call it more conveniently.
In the Linux environment I usually create a soft link between the program and the program installation folder, here is an example:
ln -s /opt/sublime-text/sublime-text /usr/bin/sublime-text
Then I can:
sublime-text index.php
What would be the best solution to reproduce the same result in Windows 10?
I've already got a solution using the windows environment variables, but I wonder if there is another method to get the same result.