Answer Posted / guest
echo "Text to print"
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is a boot block?
What are the advantages of using shell scripts?
How to print pid of the current shell?
What does .sh file contain?
How can any user find out all information about a specific user like his default shell, real-life name, default directory, when and how long he has been using the system?
What is shell and shell script?
Why do we use shell scripting?
determine the output of the following command: echo ${new:-variable}
I want to create a directory such that anyone in the group can create a file and access any person's file in it but none should be able to delete a file other than the one created by himself.
How do I open the shell prompt?
What is the significance of $#?
What is mac default shell?
Differentiate between ‘ and ” quotes.
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); }
What is the syntax of "nested if statement" in shell scripting?