A command line sha1/(S)FTP-based pastebin client. Reads from STDIN or a list of filenames as arguments, uploads files to a server, and prints the urls to STDOUT.
Server information is configured using a simple toml
format in
$XDG_CONFIG_HOME/pcf/config.toml
which is typically
$HOME/.config/pcf/config.toml
. An example configuration is shown below with
the details for a free public pcf server
paste.nilsu.org.
ftp_url = "ftp:https://paste.nilsu.org:21/incoming"
sftp_anon_url = "sftp:https://paste.nilsu.org:22/incoming"
sftp_auth_url = "sftp:https://paste.nilsu.org:22/var/www/html/paste"
sftp_user = "kota"
sftp_pass = "cowscows"
# Default mode. Options are "ftp", "sftp-anon", and "sftp-auth".
default_mode = "sftp-anon"
# Prefix for the resulting file sha1 name.
output = "https://paste.nilsu.org/"
GPL3+ see LICENSE in this repo for more details.
Build dependencies:
- golang
- make
- sed
- scdoc
make all
Optionally configure config.mk
to specify a different install location.
Defaults to /usr/local/
sudo make install
sudo make uninstall
Send patches and questions to ~kota/[email protected].
Bugs & todo here: ~kota/pcf