https://github.com/raais/pipebank
a simple program to store and retrieve named binary streams
https://github.com/raais/pipebank
Last synced: about 1 year ago
JSON representation
a simple program to store and retrieve named binary streams
- Host: GitHub
- URL: https://github.com/raais/pipebank
- Owner: Raais
- License: mit
- Created: 2022-06-08T14:03:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-09T15:41:21.000Z (about 4 years ago)
- Last Synced: 2025-03-02T03:15:45.491Z (over 1 year ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pipebank
a simple program to store and retrieve named binary streams
```bash
Usage: [|] pipebank [key] [|]
Commands:
set/put/send/save [key]
get
fetch - get and delete
delete/rm
list/ls
clear
```
```bash
$ cat recipe.txt | pipebank save fluffy-pizza
$ pipebank fetch fluffy-pizza | grep -i secret
```
```bash
$ ls | pipebank send
#Saved as Y7E2
$ pipebank fetch Y7E2 | sort
```