#!/bin/ksh
is the first line in a shell script always
what is the importance of this line and why is it kept as the first line.
#!/bin/ksh
is the first line in a shell script always
what is the importance of this line and why is it kept as the first line.
it signals that the script is to be executed by ksh (instead of any of the other shells)
If the file is executable, it tells the os, which program can execute the script.