[go: up one dir, main page]

Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.
/ minigrep Public archive

Rust I/O project derived from The Rust Programming Language book

Notifications You must be signed in to change notification settings

RiccardoSagramoni/minigrep

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

minigrep

Source: An I/O Project: Building a Command Line Program

Rust's speed, safety, single binary output, and cross-platform support make it an ideal language for creating command line tools, so for our project, we’ll make our own version of the classic command line search tool grep (globally search a regular expression and print).

In the simplest use case, grep searches a specified file for a specified string. To do so, grep takes as its arguments a file path and a string. Then it reads the file, finds lines in that file that contain the string argument, and prints those lines.

About

Rust I/O project derived from The Rust Programming Language book

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages