You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In POSIX shells, the `#` needs to be after a whitespace or
start-of-line to delimit a comment. Compare:
```sh
$ echo asdf#qwert
asdf#qwert
$ echo asdf #qwert
asdf
```
I checked a few other languages as well that use #-delimited comments,
but it seems this behaviour is unique to bash and other POSIX shells.
Fixes#3917
0 commit comments