TSlivede
TSlivede
@bitcrazed >The problem is that the lack of an ability to delimit a portion of a command-line to be passed varbatim to the receiving command/script is something that trips users...
>So, how about wrapping the args in quotes? >Doesn't work because that would make `arg[1]` `'cd / && ls . | cowsay'` which wouldn't make sense to bash. To bash...
If https://github.com/PowerShell/PowerShell/issues/13068 was implemented (and I hope it will not - at least not as yet another spedial syntax/operator), I guess this issue would be resolved with that.
I think that is incorrect. It should be `unsigned int sums_diff = *haystack - *needle`;
Even with the linked file, the same exception is raised. The problem seems to be on [line 98 in `conf.py`](https://github.com/biojppm/cmany/blob/master/src/c4/cmany/conf.py#L98): ``` self.flag_aliases = self.flag_aliases.merge_from(other.flag_aliases) ``` `self.flag_aliases` is overwritten with result...
Though as you said, the project settings in cmany.yml still seem to be ignored... As that's the case: Could you mention in the output of [cmany --help](https://github.com/biojppm/cmany/blob/master/src/c4/cmany/main.py#L239) that the `create_proj`...
I absolutely don't see how this would resolve #1995: See https://github.com/PowerShell/PowerShell/issues/1995#issuecomment-653174261 Also, the problem with WSL is a problem of the behavior of `wsl.exe` (see https://github.com/PowerShell/PowerShell/issues/12975#issuecomment-650353021) not of powershell. (Ok,...
@jazzdelightsme The "Windows only" part was perhaps more related to the issue where I originally posted that statement - yes OK, this is not an exact duplicate of that issue....
Another idea: If this is issue is actually about copy&pasting full commands that were intended for native shells, maybe PsReadLine could add a feature to roughly translate a command from...