I have a batch file and contains two perl codings and for Example:
MyBatchfile:
rem This perl coding input is Filename output as an number.
perl -w E:\Testing\PerlFile_1.pl %1
Need to save the number and produce the same as an input for the second script.
rem This perl coding input is as number from the previous perl script.
perl -w E:\Testing\PerlFile_2.pl %1
How do I pass the output (Number) from first script into the second script as an input.