diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-02 11:29:07 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-02 11:29:07 +0800 |
| commit | c990959635d6a3496ca15a56b4ee85c6ca357987 (patch) | |
| tree | 6cf2ce43c4473beec3ab43d41fb0000281af792b /.run/src/bin/powershell-script.ps1 | |
| parent | 66d9277fecdc0440cbd686a28bd448613a56b94c (diff) | |
fix: correct misspelled PowerShell script filename
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 "" |
