SIMULATION - Find the rows that contain abcde from file /etc/testfile, and write it to the file/tmp/testfile, and the sequence is requested as the same as /etc/testfile.
There is no specified if the content of destination file can be replaced. So i suppose that it can.. in that case these commands are correct:
cat /etc/testfile | grep abcde > /tmp/testfile
OR
grep abcde /etc/testfile > /tmp/testfile
In case that content of destination file should not be replaced, following command will work:
cat /etc/testfile | while read line; do echo $line | grep abcde | tee -a /tmp/testfile; done
There is missing ";" in "correct answer" here, so the command from there will work if you will copy paste it but if you need to write it on your own, you must add the ";" or use bash script!
This section is not available anymore. Please use the main Exam Page.EX200 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
airphreak
Highly Voted 3 years, 10 months agoadolfoale
Highly Voted 3 years, 9 months agoBittercampari
Most Recent 9 months, 1 week agothomasstate
11 months, 2 weeks agoertgrty
1 year, 2 months agoRahul95
1 year, 5 months agoVelda
1 year, 8 months agotechzideas
1 year, 9 months agoktd971
1 year, 9 months agoptmude
2 years, 10 months agoeid
2 years, 10 months agoMELO225
3 years, 1 month ago