Why we are writting shell scripts?
Plz if possible explain it briefly.
Answer Posted / nagireddyunix
Shell is command line interpreter, in shell script we can
write multiple commands to do particular task by executing
the shell script.
shell is used to set our environment.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
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 command to find out users on the system?
c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l
Which is better perl or shell scripting?
What are filters explain sort with all the options available?
c program the catches the ctrl-c(SIGINT) Signal for the first time and prints a output rather and exit on pressing Ctrl-C again
What is the syntax of while loop in shell scripting?
how will you find the total disk space used by a specific user?
Please give me example of " at command , contrab command " how to use
What command needs to be used to take the backup?
What does the sh command do?
What is the default ubuntu terminal?
What is the lifespan of a variable inside a shell script?
How can you find out how long the system has been running?
What is shift command in shell script?