Write a shell script to looking at the log file to see if
the test has passed or not
Answer Posted / guest
tail -f /var/log/messages provided all the messages are
appended to the log.
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
What does path stand for?
What does debug script mean?
Print the 10th line without using tail and head command.
Devise a script that takes file name as arguement(which must present in the current directory)and locates from your home directory tree all thpath names of its links.Then mail the list to self.
What is sed in shell script?
What is shell company all about?
What are the advantages of shell scripting?
Why is shell scripting important?
What is another name for a bash shell script that you might see?
write a shell script to generate a alert ? like when ur birthday came then generate a alert ur birthday is today like that ?
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 scripting used for?
Explain about sourcing commands?
What is the syntax of while loop in shell scripting?
What is a batch file used for?