Search found 1 match

by WarGod
21 Apr 2011 22:37
Forum: DOS Batch Forum
Topic: CALL & Data Flow Between Child and Parent Command Files
Replies: 1
Views: 3420

CALL & Data Flow Between Child and Parent Command Files

I am confused about something regarding the CALL function and how data is transferred between child and parent processes. I have the following command files: file_a.cmd @echo off set file=C:\temp\FilewithText.txt CALL file_d.cmd :HEADER <command to write data to %file%> <do some other commands> cmd ...