Computer scienceSystem administration and DevOpsCommand lineText processing

Grep basic options

Yes films

Report a typo

Using grep, print the lines from the file /tmp/movies.txt with the films that do not have the word "No" in the title.

Sample Input 1:

2006 - The Girl Who Leapt Through Time
2021 - No Time To Die
1997 - Nothing To Lose
2008 - Yes man

Sample Output 1:

2006 - The Girl Who Leapt Through Time
1997 - Nothing To Lose
2008 - Yes man
Write a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here

}
___

Create a free account to access the full topic