Crates.io | pmis |
lib.rs | pmis |
version | 1.0.1 |
source | src |
created_at | 2022-01-22 22:30:13.696422 |
updated_at | 2022-01-22 22:49:24.579606 |
description | Companion CLI tool for paste.misterio.me |
homepage | https://paste.misterio.me |
repository | https://sr.ht/~misterio/paste.misterio.me |
max_upload_size | |
id | 519363 |
size | 100,498 |
This is a CLI companion tool for paste.misterio.me, allowing you to easily upload and manage your pastes, as well as download any pastes you want.
The source code (licensed under GPLv3) for this app can be found (together with paste.misterio.me's) at sourcehut or github. Feel free to contribute wherever you feel more confortable.
The CLI is handled by clap, the API requests are made through reqwest, and the output is formatted using bat.
pmis
is available on crates.io, on the AUR, and there's also a nix flake in the repo for usage with nix.
Use cargo install pmis
.
You can generate completions using pmis completions <SHELL>
(check your distro docs on where to install them).
You can get a shell with pmis
using nix shell github:misterio77/pmis
.
For a more permanent solution, you should add pmis
to your flake inputs, add the overlay, and put it wherever you usually put packages (i recommend using home-manager
, we even have a module you can import).
If you want to avoid compiling, pmis
is cached on cachix: cachix use misterio
.
Completions are provided through the derivation.
Use your favorite AUR helper: paru -S pmis
.
Completions are provided through the package.
The default API URL is https://paste.misterio.me
, you can switch to another (if you're self hosting an instance, for example) using --api
.
All commands and options are fully documented through --help
Use pmis download <ID>
. The output is pretty printed using bat
(unless it is piped, or if you use --raw
).
Do keep in mind pastes can easily be downloaded using many utilities, such as curl
: curl https://paste.misterio.me/p/ID/raw
. This makes it easy to get them on any barebones system or to share with friends that don't use pmis
.
You can list a users public pastes (or all of them, if you're authenticated and the user is you) using pmis list [OWNER]
. You can ommit OWNER
if you're authentiucated. If you just want the IDs, add --ids-only
.
You should generate a key, and then use pmis auth
.
Use pmis upload [FILE]
. The title of the paste is the filename, by default. You can ommit FILE
to read from stdin. Use --description
to add a description, and --unlisted
if you don't want it to appear on your profile. When the upload is complete the link and ID will be output, you can get just the link by piping or using --link-only
.
You can delete your pastes by using pmis delete <ID>
.