Recipes

Pipes & cURL

Note that pipes are not reusable, so each upload/download is only available once

Sending a folder

tar aczf - <foldername> \
  | curl -s -L -T - -D - xfr.station307.com/<foldername>.tar.gz \
  | grep human

Sending an encrypted payload with gpg

gpg --encrypt --sign -o - -R <[email protected]> <your-file> \
  | curl -s -L -D - -T - xfr.station307.com/<payload-name>.gpg \
  | grep human

Sending a JVM stack dump

jstack <jvm-pid> \
  | curl -s -L -D - -T - xfr.station307.com/stack \
  | grep human

More recipes?

If you have suggestions for other recipes, drop us an email at [email protected].

Drop your file to share it

undefined

Scan the QR code to download the file

null