leeroyMarv
New Member
Is it possible to actually transfer a line from one batch file to another, for instance;
@echo off
echo abcdefghij
start C:\windows\file.bat
Is it possible to transfer that last line into another program so that this program runs the bat file when it is opened, so they could both open when i run the program. I already tried copy, but unfortunately that simply erased all the data that i had in the second .bat and replaced it with the first one. Is it possible that i could just insert a line of code? Any help would be apreciated.
@echo off
echo abcdefghij
start C:\windows\file.bat
Is it possible to transfer that last line into another program so that this program runs the bat file when it is opened, so they could both open when i run the program. I already tried copy, but unfortunately that simply erased all the data that i had in the second .bat and replaced it with the first one. Is it possible that i could just insert a line of code? Any help would be apreciated.