6 lines
99 B
PowerShell
6 lines
99 B
PowerShell
if ($args.Length -gt 0) {
|
|
type stdin.txt | python $args[0]
|
|
} else {
|
|
Write-Host "No args"
|
|
}
|