In the header of a Bash script, what\'s the difference between those two statements:
#!/usr/bin/env bash
#!/usr/bin/bash<
Instead of explicitly defining the path to the interpreter as in /usr/bin/bash/, by using the env command, the interpreter is searched for and launched from wherever it is first found. This has both upsides and downsides
/usr/bin/bash/