Files
learngo/23-input-scanning/exercises/04-grep/main.go

38 lines
1.0 KiB
Go
Raw Normal View History

2019-10-30 19:34:44 +03:00
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
// For more tutorials : https://learngoprogramming.com
// In-person training : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus
2019-04-12 16:55:26 +03:00
package main
// ---------------------------------------------------------
// EXERCISE: Grep Clone
//
// Create a grep clone. grep is a command-line utility for
// searching plain-text data for lines that match a specific
// pattern.
//
// 1. Feed the shakespeare.txt to your program.
//
// 2. Accept a command-line argument for the pattern
//
// 3. Only print the lines that contains that pattern
//
// 4. If no pattern is provided, print all the lines
//
2019-05-07 12:17:07 +03:00
//
2019-04-12 16:55:26 +03:00
// EXPECTED OUTPUT
2019-05-07 12:17:07 +03:00
//
2019-04-12 16:55:26 +03:00
// go run main.go come < shakespeare.txt
2019-05-07 12:17:07 +03:00
//
2019-04-12 16:55:26 +03:00
// come night come romeo come thou day in night
// come gentle night come loving black-browed night
2019-05-07 12:17:07 +03:00
//
2019-04-12 16:55:26 +03:00
// ---------------------------------------------------------
func main() {
}