diff options
Diffstat (limited to '.run/src/bin/powershell-script.ps1')
| -rw-r--r-- | .run/src/bin/powershell-script.ps1 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.run/src/bin/powershell-script.ps1 b/.run/src/bin/powershell-script.ps1 new file mode 100644 index 0000000..70f3bae --- /dev/null +++ b/.run/src/bin/powershell-script.ps1 @@ -0,0 +1,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 "" |
