what is the meaning of First line of shell script ,what is
meaning of #! pleas explain brifly
Answers were Sorted based on User's Feedback
Answer / alpkumar
#! indicates from where the path of the interpretor should
be considered and also directs that the contents of the
file which will be following will be executed under the
guidelines of this interpretor being used.
| Is This Answer Correct ? | 30 Yes | 1 No |
Answer / shivani
It tells u that which is the shell whose interpreter would
come into action for the execution of that particular
script.
| Is This Answer Correct ? | 15 Yes | 3 No |
Answer / r r mishra
#!/bin/sh. which dictates that the following program is a
shell script,
| Is This Answer Correct ? | 21 Yes | 13 No |
I want to read all input to the command from file1 direct all output to file2 and error to file 3, how can I achieve this?
What is eval in shell script?
What is the significance of $#?
Differentiate between ‘ and ” quotes.
What is the difference between scripting and coding?
What happens on a system call?
What is a program shell?
How can you get the value of pi till a 100 decimal places?
When we login into our account which files are executed?
How do I edit a .sh file?
What is the way to do multilevel if-else's in shell scripting?
what are command line arguments? what is the need of those?