Common shebangs include:
-
Bash:
#!/bin/bash -
Python:
#!/usr/bin/env python3 -
Perl:
#!/usr/bin/perl -
Ruby:
#!/usr/bin/env ruby -
Node.js:
#!/usr/bin/env node -
Sh (Bourne shell):
#!/bin/sh -
PHP:
#!/usr/bin/env php
Using #!/usr/bin/env is a common practice as it allows the system to find the interpreter in the user's PATH, making scripts more portable across different environments.
