(Yes, We say script now instead of batch ... times are changing).
Here is a stupid little batch file that I have written several times. It adds a single argument to the path in your current command-line session (so it is not permanent).
Here is a stupid little batch file that I have written several times. It adds a single argument to the path in your current command-line session (so it is not permanent).
@echo off
if "%1" == "" goto end_script
set path=%path%;%1
:end_script
Comments