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 |
What is scripting used for?
What is a shell? · Types of shell · what is shell scripting?
What is sudo command?
what are special characters and explain how does text varies by the usage of single quotes,double quotes and back quotes?
what are bootlevel in linux?which level is booting by default.
How to rename all the files in a folder having specific extension? Example: I have some files with extension (.txt) in a folder name 'Test'. I have to rename all the .txt files in a test and its subdirectories to .my extension.
How will you pass and access arguments to a script in linux?
Can we run shell script in windows?
Determine the output of the following command: [ -z “” ] && echo 0 || echo 1
What is subshell?
What is a beat in a script?
What is .sh file in mac?