Text und Ausgaben teilen mithilfe von Pastebins
https://termbin.com/
# Send text to termbin echo just testing! | nc termbin.com 9999 # send a file to termbin cat ~/some_file.txt | nc termbin.com 9999 # pipe output of a command to termbin ls -la | nc termbin.com 9999
Aliases für (ba|fi|z)sh
# alias for termbin alias tb="nc termbin.com 9999"
THE NULL POINTER (envs.net)
Upload files with HTTP POST:
curl -F'file=@yourfile.png' https://envs.sh
post your text directly:
echo "text here" | curl -F'file=@-;' https://envs.sh
you can also POST remote URLs:
curl -F'url=https://example.com/image.jpg' https://envs.sh
or you can shorten URLs:
curl -F'shorten=http://example.com/some/long/url' https://envs.sh
Aliases
bash:
0file() { curl -F"file=@$1" https://envs.sh ; } 0pb() { curl -F"file=@-;" https://envs.sh ; } 0url() { curl -F"url=$1" https://envs.sh ; } 0short() { curl -F"shorten=$1" https://envs.sh ; }
fish:
### envs.sh - nullpointer ### # Functions for sending files, text or console output to the null pointer # Function to send a file to the null pointer function 0file --argument file curl -F"file=@$file" https://envs.sh end # Function that takes the piped output akak pipe-bin function 0pb curl -F"file=@-;" https://envs.sh end # Function that posts a remote url function 0url --argument url curl -F"url=$url" https://envs.sh end # Function that works as a url shortener function 0short --argument url curl -F"shorten=$url" https://envs.sh end