You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

925 B

Title: t0txt Date: 2022-05-15 Category: Projects Summary: Minimal command line pastebin. Allows you to upload text notes from a bash pipe or web browser. Short: t

t0txt is a minimalist pastebin. You can upload text notes from the command line by using a bash alias or by submitting text through the web form.

You can find the source code on Github.

The pastes you upload take the form of txt.t0.vc/IMLV, where they are identified by four unique capital letters. This makes it easy to memorize the URL while moving it between devices.

I wrote t0txt in July 2019 and plan to continue hosting it indefinitely. I use it quite often for sysadmin and automation work, so I'm committed to keeping it alive. Here's an example use case:

$ echo "hello world!" | txt
https://txt.t0.vc/IMLV

$ curl https://txt.t0.vc/IMLV
hello world!