Added a basic README.

This commit is contained in:
2016-06-07 17:52:06 +02:00
parent 7309717303
commit a18a709a76
2 changed files with 17 additions and 1 deletions

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# PI Archive
Only works for single files, and is slooooooow. And when I say slow, I mean really slow.
And the compression rate? Not so god, in fact, the result is larger than the original.
But hey, it works! And it's using freaking PI!!!
## Compress
```shell
$ piar -c my_file.txt my_file.pi
```
## Decompress
```shell
$ piar -d my_file.pi my_file.txt
```

View File

@@ -18,7 +18,6 @@ use pbr::{ProgressBar, Units};
mod bbp; mod bbp;
fn main() { fn main() {
let args: Vec<String> = env::args().collect(); let args: Vec<String> = env::args().collect();
let program = args[0].clone(); let program = args[0].clone();