Michael Klement

Results 1234 comments of Michael Klement

* @dkaszews, I like [your suggestion](https://github.com/PowerShell/PowerShell/issues/8270#issuecomment-1244905016): it amounts to a very flexible batching mechanism. * @iRon7, I also don't think that a batching command should _re_-batch: it should be up...

@237dmitry, why do you think that _Bash_ syntax is in any way relevant here?

In PowerShell terms: if ``Write-Output `"`` is the same as ``Write-Output '"'``, why isn't `` `* `` the same as ``'*'`` (as it indeed is with `Write-Output`)? Granted, the escaping...

And to bring it back to Bash syntax _by analogy_: `echo \*` - which prints verbatim `*` - is the analog of ``/bin/echo `*`` in PowerShell. > Because in bash...

Yes, if you pass `*`. By contrast, if you _quote_ the `*` as `'*'` or `"*"`, PowerShell does _not_ apply native globbing and `/bin/echo` receives _verbatim_ `*` (which it prints...

* `PSNativeCommandArgumentPassing` is incidental to this discussion, because in effect it only relates to `"` chars. embedded in arguments. * Use of `--%` is virtually pointless on Unix-like platforms (and...

It's a moot point, as @vexx32 states, but the bug is related to `New-TemporaryFile` being implemented as a _function_ in Windows PowerShell. In other words: it seems that all commands...

I got myself confused earlier: I actually only see the problem in `7.1.0-rc.2`, and no longer in `7.1.0`, in combination with Windows PowerShell `v5.1.19041.610`. Also, unless the following test is...

Interesting, @hero101111; your experience is consistent with @iSazonov's explanation, but the strange thing is that the despite the presence of these extra, PS Core-only folders, the command succeeds for me...

It sounds like you're describing the _opposite_ direction: piping _to_ an external program. In my experience that usually _does_ work; e.g.: ```powershell @' one two three '@ | bash -c...