blob: 70f3bae88f29c589d4ee8c5e16153061c83e0042 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
Write-Host ""
Write-Host ' Welcome to use `run.sh` / `run.ps1`'
Write-Host ""
Write-Host ' > "Hello World"'
Write-Host " > cwd : `"$(Get-Location)`""
$items = ($args | ForEach-Object { "`"$_`"" }) -join ", "
Write-Host " > args : $items"
Write-Host ""
|