A CLI tool for rustypaste.
sh
cargo install rustypaste-cli
pacman -S rustypaste-cli
See the available binaries on releases page.
sh
git clone https://github.com/orhun/rustypaste-cli.git
cd rustypaste-cli/
cargo build --release
rpaste [options] <file(s)>
-h, --help prints help information
-v, --version prints version information
-o, --oneshot generates one shot links
-p, --pretty prettifies the output
-c, --config CONFIG sets the configuration file
-s, --server SERVER sets the address of the rustypaste server
-a, --auth TOKEN sets the authentication token
-u, --url URL sets the URL to shorten
-r, --remote URL sets the remote URL for uploading
-e, --expire TIME sets the expiration time for the link
Either set the credentials on the command line (not recommended):
sh
rpaste -s "https://paste.example.com" -a "<token>"
or specify them in the configuration file.
sh
rpaste awesome.txt other.txt
sh
rpaste -u https://example.com/some/long/url
sh
rpaste -r https://example.com/file.txt
sh
rpaste -o disappear_after_seen.txt
sh
rpaste -e 10min expires_in_10_minutes.txt
sh
rpaste -e 1hour -u https://example.com/expire/1hour
* Supported units: ns
, us
, ms
, sec
, min
, hours
, days
, weeks
, months
, years
rpaste -p [...]
NO_COLOR=1 rpaste -p [...]
The configuration file can be specified via --config
argument and RPASTE_CONFIG
environment variable or it can be placed to the following global locations:
$HOME/.config/rustypaste/config.toml
$HOME/.rustypaste/config.toml
See config.toml for configuration options.
Pull requests are welcome!
All code is licensed under The MIT License.