Answered step by step
Verified Expert Solution
Question
1 Approved Answer
What is wrong with my code: grep -n hi|hello file.tsv | grep -v USA file.tsv | cut -d : -f 1 to answer question: Given
What is wrong with my code: grep -n hi\|hello file.tsv | grep -v USA file.tsv | cut -d : -f 1 to answer question: Given file.tsv, use bash (Shell) to find the rows that contain either of two words in a column (i.e., say one word is 'hello' and the other word is 'hi'. Identify rows that contain either of these two words in the column called 'greeting') and do not have a word in another column (i.e., word 'USA' in column called 'location)). The final output should contain line numbers that meet this criteria.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started