Answer Posted / 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 |
Post New Answer View All Answers
How to get the 3rd element/column from each line from a file?
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }
Determine the output of the following command: name=shubham && echo ‘my name is $name’.
how to print the matrix form of 2-d, 3-d arrays in unix c shell scripts ?
Explain about the slow execution speed of shells?
Explain about the exit command?
What are the types of script?
What does $1 mean in bash?
What is the fastest scripting language?
Is shell a scripting language?
What are zombie processes?
What is echo in shell?
What is a program shell?
What does $@ mean in shell?
What is bash command used for?