Skip to content

Instantly share code, notes, and snippets.

@mayuki
Last active December 11, 2015 10:08
Show Gist options
  • Save mayuki/4584325 to your computer and use it in GitHub Desktop.
Save mayuki/4584325 to your computer and use it in GitHub Desktop.
C:\>type Get-Hoge.ps1
$args | %{ Write-Host $_ }
C:\>powershell -File Get-Hoge.ps1 "foo bar" "hauhau maumau"
foo bar
hauhau maumau
C:\>powershell -Command "&{ $args | %{ Write-Host $_ } }" "foo bar" "hauhau maumau"
foo
bar
hauhau
maumau
C:\>powershell -File Get-Hoge.ps1 '"foo bar"' '"hauhau maumau"'
'foo bar'
'hauhau maumau'
C:\>powershell -Command "&{ $args | %{ Write-Host $_ } }" '"foo bar"' '"hauhau maumau"'
foo bar
hauhau maumau
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment