Echo equivalent in PowerShell for script testing

前端 未结 11 1589
梦如初夏
梦如初夏 2020-12-07 10:08

I would like to output variables and values out in a PowerShell script by setting up flags and seeing the data matriculate throughout the script.

How would I do thi

11条回答
  •  渐次进展
    2020-12-07 10:25

    PowerShell interpolates, does it not?

    In PHP

    echo "filesizecounter: " . $filesizecounter 
    

    can also be written as:

    echo "filesizecounter: $filesizecounter" 
    

    In PowerShell something like this should suit your needs:

    Write-Host "filesizecounter: $filesizecounter"
    

提交回复
热议问题