I have seen some Linux scripts having Shebang different from the file extension.
Ex:
- somefile.sh has
#!/bin/bash
inside it - somefile.ksh has
#!/bin/sh
inside it - somefile.bash has
#!/bin/sh
inside it
Can someone tell me what is proper naming convention to be followed while mentioning file extension and Shebang inside it?