0
I need to add a program to the windows shell to call it more comfortably.
In the linux environment I usually create a soft link between the program and the program installation folder, follow 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 play the same result on Windows 10?
I already found a solution using the variables windows environment, but I wonder if there is another method to get the same result.