ADDPATH NT/DOS command line script
(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

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
Links to this post:
Create a Link
<< Home