3 个不稳定版本
0.4.0 |
|
---|---|
0.2.2 |
|
0.2.1 |
|
0.2.0 | 2019年3月28日 |
0.1.1 | 2018年12月30日 |
26 在 #文件共享
每月 24 次下载
18KB
409 代码行
pf
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