Computer Science, asked by Nitinshrama5192, 11 months ago

output for grep "abc" file.txt|cut -d " " -f1

Answers

Answered by armaangoel217
0

Grep will search for any line containing abc in file.txt . The cut removes the delimiter " " aka space from the searched line

Similar questions