Skip to content

This is a Rust implementation of the Unix pv utility.

Notifications You must be signed in to change notification settings

robsonfs/pipviewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pipeviewer

This is a Rust implementation of the Unix pv utility. I don't intend to make a faithful implementation, I just replicated some features for fun and learning.

Usage

echo "hello" | cargo run -- -o /dev/null # Printing "hello" message to the /dev/null
yes | cargo run | head -n 1000000000 > yes.txt # Generating a large text file
cargo run yes.txt -o yes2.txt # Copying content from file `yes.txt` to `yes2.txt`

Running tests

cargo test

About

This is a Rust implementation of the Unix pv utility.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages