mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2025-02-22 04:23:04 -05:00
11 lines
327 B
Plaintext
11 lines
327 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# POSIX shell client for PurritoBin to upload standard message
|
||
|
|
||
|
: "${P_SERVER=https://bsd.ac}"
|
||
|
: "${P_PORT=42069}"
|
||
|
: "${P_MAXTIME=30}"
|
||
|
: "${P_TIME=week}" # can be set to day/week/month/<lifetime-in-minutes>
|
||
|
|
||
|
curl --silent --max-time "${P_MAXTIME}" --data-binary "@${1:-/dev/stdin}" "${P_SERVER}:${P_PORT}/${P_TIME}"
|