Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antony/pipebin-cli
CLI for https://pipeb.in
https://github.com/antony/pipebin-cli
cli firewall pastebin pastebin-client pipe pipebin stderr stdout unix
Last synced: 12 days ago
JSON representation
CLI for https://pipeb.in
- Host: GitHub
- URL: https://github.com/antony/pipebin-cli
- Owner: antony
- Created: 2018-05-24T20:26:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-06T16:04:33.000Z (over 6 years ago)
- Last Synced: 2024-10-27T22:53:58.113Z (2 months ago)
- Topics: cli, firewall, pastebin, pastebin-client, pipe, pipebin, stderr, stdout, unix
- Language: JavaScript
- Size: 376 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Pipebin CLI
This is the cli for [Pipebin](https://pipeb.in), a service like pastebin, for piping files and content to!
## Installation
```bash
npm install -g pipebin
```## Usage
To create a new pipe
```bash
whoami | pb
# will return a pipebin id like 'BqStMv'
```To get the contents of the pipe on another machine, terminal, wherever!
```bash
pb BqStMv
# Will return your pipe contents
```You can also do things with the contents
```bash
pb BqStMv > /tmp/mydate.txt
# Will pipe your previously piped contents into the file /tmp/mydate.txt
```