Garrett wants to search through a csv file to find all rows that have either the name John or Bob in them and display them out to the terminal. Which of the following commands could Garrett use to perform this search? a. grep - E " (John|Bob) " salesemployees. csv
b grep - E (John|Bob) salesemployees. csv
c. egrep (John|Bob) salesemployees. csv
d. grep (John|Bob) salesemployees. csv
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Garrett wants to search through a csv file to find all rows that have either the name John or Bob in them and display them out to the ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Garrett wants to search through a csv file to find all rows that have either the name John or Bob in them and display them out to the terminal. Which of the following commands could Garrett use to perform this search? a.