how to search for vowels a,e,i,o,u appearing in the same sequence in a file
Answer Posted / karthik.g.r
grep -w "a[^aiou]*e[^aeou]*i[^aeiu]*o[^aeio]*u" filename
| Is This Answer Correct ? | 19 Yes | 0 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 difference between scripting and coding?
How will you print the login names of all users on a system?
How do you debug a script?
I want to connect to a remote server and execute some commands, how can I achieve this?
Set up a Sev 2 alert when the Primary WA service fails. A windows batch script needs to be created that will monitor the WA service on the Primary and when the service stops/fails a Sev 2 TT is generated for a particular team ?
How can you get the value of pi till a 100 decimal places?
What are the advantages of using shell scripts?
Why do we write bin bash in shell scripts?
What is in a script?
What is shell prompt?
When should shell programming/scripting not be used?
one folder contains lot of students name but I want to fetch hello with every student name individually using shell script
What is the conditional statement in shell scripting?
c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l