5
0
mirror of git://git.proxmox.com/git/pxar.git synced 2025-01-10 09:17:40 +03:00

remove unused binary for now

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2020-06-05 14:06:11 +02:00
parent 5d283b7eeb
commit fd999d5695

View File

@ -1,13 +0,0 @@
use pxar::decoder::Decoder;
fn main() {
let mut args = std::env::args_os().skip(1);
let file = args.next().expect("expected a file name");
let file = std::fs::File::open(file).expect("failed to open file");
let reader = Decoder::from_std(file).expect("failed to open pxar archive contents");
for entry in reader {
println!("{:#?}", entry.expect("failed to parse entry").path());
}
}