Answer Posted / jayachandran.g.r
syntax of "grep" command
syntax: grep {word to lookup} {filename}
Ex: grep man test
| Is This Answer Correct ? | 29 Yes | 6 No |
Post New Answer View All Answers
How to pass an argument to a script?
What is bash eval?
Where are cowrie shells found?
What does echo mean in scripting?
What are the advantages of shell script?
What is the syntax of "nested if statement" in shell scripting?
Differentiate between ‘ and ” quotes.
What does $0 mean in shell script?
What are the various stages of a linux process it passes through?
What's the difference between scripting and coding?
How can we find the process name from its process id?
What is meant by dos operating system?
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 crontab?
How do I run a script on mac?