how to search for vowels a,e,i,o,u appearing in the same sequence in a file
Answers were Sorted based on User's Feedback
Answer / karthik.g.r
grep -w "a[^aiou]*e[^aeou]*i[^aeiu]*o[^aeio]*u" filename
| Is This Answer Correct ? | 19 Yes | 0 No |
what is the difference between cmp and diff commands
How to check if the previous command was run successfully?
write a shell script to find the largest number from 3 given numbers.
What is the use of script interpreter in shell scripting?
What does $@ mean bash?
What does echo mean in scripting?
Where cron file kept?
What are the different types of shell scripting?
Why is a script important?
A file has multiple records each having three 30-bit long fields(field1,field2,field3).There is also a lookup file,LOOK_UP.dat.Now, we need to consider only the last ten digits of field1 and lookup the file LOOK_UP.dat. If there a match then field2 and field3 should replaced with corresponding data from the lookup file. otherwise that particular record,for which there is no match, should be stored in a seperate file.
What does sh mean?
How do I run a .sh file?