我正在尝试在Powershell脚本中创建需要两个参数的函数-$ input和$ output。
这些是文件路径,但是每当我调用函数时-函数中的两个参数都为空。
function Replace-Comments {
Param($input, $output)
echo("InputIS: $input")
}
Replace-Comments Templates/TemplatePage.css Templates/NewPageName.css
我已经尝试过:
Replace-Comments -input Templates/TemplatePage.css -output Templates/NewPageName.css
我对此很陌生,我不明白为什么这不起作用? 在回声中,我得到:
InputIS:
因此输入参数缺失或为空白。