Computer scienceSystem administration and DevOpsCommand lineText processing

Grep basic options

Me

Report a typo

Using grep, print the lines from the file /tmp/movies.txt that contain the substring "me" no matter what case it has.

Sample Input 1:

2014 - Birdman
2006 - A Scanner Darkly
2007 - No Country for Old Men
2015 - The Visit
1990 - Misery

Sample Output 1:

2007 - No Country for Old Men
Write a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here

}
___

Create a free account to access the full topic