pf is client tool for file sharing from the command line using the paste.rs service
install
sh
cargo install pf
Build and install
```sh
git clone https://github.com/robatipoor/pf \ && cd pf \ && make ```
how to use command
```sh
echo 'Hello !' | pf
pf some-file.txt
pf https://paste.rs/some
pf -d https://paste.rs/some
pf --log ```
how to use crate ```rust extern crate pf;
use pf::PastFile;
fn main() { let link = PastFile::create("Some Text ...").unwrap(); println!("{}", link); } ```