wats the she bang statment with syntax?
Answers were Sorted based on User's Feedback
Answer / shimpi
a shebang (also called a hashbang, hashpling, or pound
bang) refers to the characters "#!. The shebang is looked
for and used when a script is invoked directly.
Because the "#" character is often used as the comment
marker in scripting languages, the contents of the shebang
line will be automatically ignored by the interpreter
itself; the shebang line only exists to specify the correct
interpreter to be used.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / priya
shebang is also called as hashbang.This basically used for
interpretation.This should be the 1st line of any shell
script which indicate the script to run in specified shell.
For ex. If the 1st line of a shell script is #!/bin/ksh
then the program has to run under korn shell.If you do not
specified any shebang then it will run under default shell.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sailabala sahoo
#!/usr/bin/sh
see bang line find the path of the interpreter.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to make userdefined variables to available for all other shells?
What is @echo off?
How to get the 3rd element/column from each line from a file?
Can you write a script to portray how set –x works?
Write down the syntax for all the loops in shell scripting.
What are the advantages of bash over all other shells?
How to enable the shell to know what program should be run to interpret the script?
Is it possible to substitute "ls" command in the place of "echo" command?
What is the way to do multilevel if-else's in shell scripting?
How do I open the shell in cmd?
Which is better perl or shell scripting?
What are the different variables present in linux shell?