TIL: Some surprising code execution sources in bash
https://yossarian.net/til/post/some-surprising-code-execution-sources-in-bash
TIL: Some surprising code execution sources in bash
https://yossarian.net/til/post/some-surprising-code-execution-sources-in-bash
@kees @yossarian Do we need to do something about this?
$ git grep '\[\[.*\]\]' origin/master -- ':*.sh' | wc --lines
1065
edit: there is some amount of false positives from sed regexes embedded in shell scripts. but also enough real cases
@vegard @kees @yossarian more like git grep '\[' ...
at least for me the `oh bummer' part was the observation that [ also behaves this way, because in bash it's a builtin. perhaps that can actually be considered a bug?