我有一個批處理文件,幷包含兩個perl的譯碼,併爲例:我如何通過從其他perl腳本的輸入在批處理文件
MyBatchfile:
rem This perl coding input is Filename output as an number.
perl -w E:\Testing\PerlFile_1.pl %1
需要保存數目,併產生與第二個腳本的輸入相同。
rem This perl coding input is as number from the previous perl script.
perl -w E:\Testing\PerlFile_2.pl %1
如何將輸出(Number)從第一個腳本傳遞到第二個腳本作爲輸入。
https://stackoverflow.com/questions/2323292/windows-batch-assign-output-of-a-program-to-a-variable – xxfelixxx
可能重複的[Windows批處理分配輸出到一個變量的程序] (https://stackoverflow.com/questions/2323292/windows-batch-assign-output-of-a-program-to-a-variable) – geisterfurz007
我不明白從上面的鏈接,因爲我是批處理文件編程新手。 – ssr1012