3 个不稳定版本

0.4.0 2021年2月19日
0.2.2 2019年9月9日
0.2.1 2019年6月26日
0.2.0 2019年3月28日
0.1.1 2018年12月30日

26#文件共享

每月 24 次下载

MIT 许可证

18KB
409 代码行

pf

Crates.io Build Status Build status License: MIT

pf 是使用 paste.rs 服务从命令行进行文件共享的客户端工具

安装

cargo install pf

构建和安装

# dependencies git, rustc, cargo, gnu make, binutils, upx
# build and install pf 
git clone https://github.com/robatipoor/pf \
&& cd pf \
&& make 

如何使用命令

# post string
echo 'Hello !' | pf
# post file
pf some-file.txt
# get file 
pf https://paste.rs/some
# delete file
pf -d https://paste.rs/some
# read log file
pf --log

如何使用包

extern crate pf;

use pf::PastFile;

fn main() {
    let link = PastFile::create("Some Text ...").unwrap();
    println!("{}", link);
}

依赖项

~5–20MB
~254K SLoC