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 find duplicate record in file using shell script?
0 Answers IBM, Saama Tech, Wipro,
What is a boot block?
What is ms powershell?
What is mac default shell?
Is powershell a language?
Why is shell scripting important?
What is shell prompt?
what is the meaning of First line of shell script ,what is meaning of #! pleas explain brifly
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?
How do I run a shell script on a mac?
Hi, i want to zip the files that generates automatically every few minutes (files generated are in .arc extension)....any body write a script for this... thanks in advance
How shell works?