echo command
Prints message onto script output.
Advertisement
Syntax
echo <message>
Examples
echo Uploading all report files...
Converting to .NET Assembly
When converting script to .NET Assembly, map echo
command to any reporting functionality of your runtime environment. In .NET framework, you can use System.Console.WriteLine
. In PowerShell, you can use also Write-Host
cmdlet.