Computer scienceSystem administration and DevOpsCommand lineText processing

Grep basic options

00s films

Report a typo

Using grep, print the lines from the file /tmp/movies.txt with the films created in the period from 2000 to 2009.

Assume that there are numbers only in the year column.

Sample Input 1:

2008 - The Midnight Meat Train
2015 - Chappie
1976 - Taxi Driver
2014 - Birdman
2015 - The Visit

Sample Output 1:

2008 - The Midnight Meat Train
Write a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here

}
___

Create a free account to access the full topic