Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```