What the actual fuck.
MacOS (XNU?) just ignores anything after `#` in shebangs.
simpe check:
`args.sh`:
```shell
#!/usr/bin/env sh
echo "\$0 is '$0'"
i=1
for arg in "$@"; do
echo "\$$i is '$arg'"
i=$((i+1))
done
uname -a
```
```shell
#!/usr/bin/env -S ./args.sh test#after
```
(wtf mastodon-glitch, where is my markdown button)
Okay lol this is real: https://github.com/apple-oss-distributions/xnu/blob/94d3b452840153a99b38a3a9659680b2a006908e/bsd/kern/kern_exec.c#L342