23 lines
925 B
Markdown
23 lines
925 B
Markdown
|
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](https://txt.t0.vc) 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](https://github.com/tannercollin/t0txt) on Github.
|
||
|
|
||
|
The pastes you upload take the form of [txt.t0.vc/IMLV](https://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!
|
||
|
```
|
||
|
|