ale5000
ale5000
**PS:** An alternative way would be instead of a blacklist use a whitelist so that only variables that are know to contain pathes are changed.
It isn't breaking, it is just annoying. I'm a bit perfectionist. For example, without conversion, with this: `export ANDROID_SDK_ROOT="${LOCALAPPDATA:?}/Android/Sdk"` I end up with mixed slashes/backslashes that isn't nice. I know...
> Hmm... `export -n` is not posix, and 100% undetectable as far as I can tell, because even `export --help` doesn't help. > > 100% undetectable applies to many bb...
@rmyorston Thanks, your solution works fine but for this specific case isn't better an automated solution? **Note:** PS0, PS1, PS2, PS4 are not executed (just displayed) so there isn't any...
@avih Since you have done changes there, maybe (if you want) you can also fix the issue in the bash included in git that just using `set -eu` make the...
I know but I think the developers of git for windows are mostly focused to git and not much to bash; in fact the bugs (including a crash) that I...
You can use: `adb uninstall com.google.android.gsf` But it is possible the installation failed and you didn't noticed so maybe you have never installed it.
This also timeout: `timeout 6 sleep 5.9; echo $?`
Thanks, for the other one I will report it upstream when I get some time.
This works perfectly: `timeout 5.99 sleep 5.95; echo $?` It seems good enough for almost all uses, thanks a lot.