Files
IfcOpenShell/win/utils/cecho.cmd
T

6 lines
299 B
Batchfile
Raw Normal View History

:: Usage: call cecho.cmd background foreground "message here"
:: NOTES/TODOS 1) This is super slow 2) leading spaces are omitted 3) printing string with quotes doesn't work (quotes must be escaped awkwardly)
2017-09-01 12:50:42 +02:00
:: @powershell -command write-host -background %~1 -foreground "%~2" "%3"
echo %3
@exit /b