标签: batch-file terminal command
我试图将所有命令合并到.BAT文件中。此行用于查找和替换文件中的文本,在CMD中工作得很好,但是当我将其放入.BAT文件时,它不会。我正在使用Windows 7
powershell -Command "(gc src\template.html) -replace 'xxxxx', '%1' | Out-File src\%1.html"
Error
经过大量的谷歌搜索,我猜%%需要逃脱,但是,当我这样做时,文件名变为%1.html而不是%1.hmtl的变量。如何获取变量?