我想從正在運行的批處理文件創建另一個文件輸出,這意味着原始內容在其中。在這個批處理文件中,它會執行一段時間或for循環,直到它找到「end」或任何在內容末尾添加的獨特單詞。創建內容處於批處理代碼的文件
我不想簡單地複製文件(它有重要的內容),因爲這會暴露信息。然後通過批量調用文件來運行它。
code:
-start of batch
-check if the file a.txt exist del a.txt
-starts to create the a.txt file
>start of content:
>"the quick brown fox jump over the lazy dog"
>lynx: unique word
>end of content
-writes the content to a.txt using for loop or while until it finds the unique word
-runs the a.txt file
-deletes the a.txt file
-exit
希望有人可以幫忙。謝謝! 或者如果有人可以建議一個更好的方式來做到這一點。我將不勝感激
爲什麼你需要創建新的批處理文件?爲什麼不簡單地將代碼作爲現有批處理文件中的函數調用? – dbenham