Post4VPS Forum | Free VPS Provider
TermBin - Terminal Pastebin Service - Printable Version

+- Post4VPS Forum | Free VPS Provider (https://post4vps.com)
+-- Forum: VPS Discussion (https://post4vps.com/Forum-VPS-Discussion)
+--- Forum: VPS General Discussion (https://post4vps.com/Forum-VPS-General-Discussion)
+--- Thread: TermBin - Terminal Pastebin Service (/Thread-TermBin-Terminal-Pastebin-Service)



TermBin - Terminal Pastebin Service - Mashiro - 10-08-2019

[Image: fOVJcJl.png]


Hello everyone

I would like to share a very handy service with you that comes in as very useful when working in terminal only environments like a Linux server.

TermBin is a service that allows you to paste/upload content of text files or clear text files (scripts, logs, etc...) from your terminal to the Internet to share it with others. This is very handy when you have a issue and want to share error messages, log files and etc with others. Of course you can create a screenshot or paste the error or logs into a file, download it and then share the file. But why all of this? TerminBin makes all of these things unnecessary.

URL: https://termbin.com/

All you need on your server to use this service is the netcat client. This can be easily installed through the package manager of your Linux distribution. After that you can use already builtin commands to paste single lines or content from files straight to TerminBin. You will get a link back to view the paste online and share it.

The paste that you create is available for one month and will be deleted after that. Of course you shouldn't paste information that violates privacy laws or exposes you or your server to a security risk.


A short how to use from the TermBin page.

Pasting something (e.g. a small line of text) via echo:
Code:
echo just testing!  | nc termbin.com 9999

Pasting a whole file:
Code:
cat ~/some_file.txt | nc termbin.com 9999

Pasting the result of a command (example with ls command):
Code:
ls -la | nc termbin.com 9999


In my honest opinion this is a very great service and I would even like to host such a service myself. Popular sites like pastebin.com don't offer such a service! This needs to be way more popular.


RE: TermBin - Terminal Pastebin Service - LightDestory - 10-08-2019

Hmm I didn't know a service like this.
It is really nice, but we have to say that it just replaces another "one line" command to run scripts:
Code:
wget URL | bash

Still it is unbelievable that such services are so hidden!
Services like this needs more ads because we get to know them only thanks to very few people that decides to write an article about them.


RE: TermBin - Terminal Pastebin Service - youssefbasha - 10-09-2019

Wow
Thats really awesome!
Now i don't have to download the file and then copy and add it to pastebin.
Thanks hidden Smile