2018-08-15 05:28:59 +02:00
|
|
|
pb ![calver](https://img.shields.io/badge/calver-2018.08.14-22bfda.svg?style=flat-square) ![status](https://img.shields.io/badge/status-working-green.svg?style=flat-square) ![license](https://img.shields.io/badge/license-GPL3-blue.svg?style=flat-square)
|
|
|
|
------
|
|
|
|
|
|
|
|
**pb** is a helper utility for using 0x0 pastebin services
|
|
|
|
|
2018-08-15 06:00:46 +02:00
|
|
|
pb provides an easy-to-use interface for uploading images or piping output to a 0x0
|
|
|
|
pastebin service. While it comes pre-configured with a specific pastebin, the service
|
|
|
|
endpoint can be overridden.
|
|
|
|
|
2018-08-15 06:03:30 +02:00
|
|
|
## Usage Examples
|
2018-08-15 05:28:59 +02:00
|
|
|
|
|
|
|
```bash
|
2018-08-15 06:00:46 +02:00
|
|
|
pb scores.txt
|
2018-08-15 06:03:30 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Upload 'scores.txt' to the pastebin
|
2018-08-15 06:00:46 +02:00
|
|
|
|
2018-08-15 06:03:30 +02:00
|
|
|
```bash
|
2018-08-15 06:00:46 +02:00
|
|
|
echo 'Secret info' | pb
|
2018-08-15 06:03:30 +02:00
|
|
|
```
|
2018-08-15 05:28:59 +02:00
|
|
|
|
2018-08-15 06:03:30 +02:00
|
|
|
Upload piped output to the pastebin
|
|
|
|
|
|
|
|
```bash
|
2018-08-15 06:00:46 +02:00
|
|
|
find . -type f -name '*.js' -print | pb -f
|
|
|
|
```
|
2018-08-15 05:28:59 +02:00
|
|
|
|
2018-08-15 06:03:30 +02:00
|
|
|
Upload a list of javascript files to the pastebin individually
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pb -s http://0x0.st scores.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
Upload a file to a different pastebin endpoint
|
|
|
|
|
2018-08-15 06:00:46 +02:00
|
|
|
### Options
|
|
|
|
|
|
|
|
```bash
|
2018-08-15 05:28:59 +02:00
|
|
|
-f Explicitly interpret stdin as filename
|
|
|
|
-s server_address Use alternative pastebin server address
|
2018-08-15 06:03:30 +02:00
|
|
|
-v Show current version number
|
|
|
|
-h Show help
|
2018-08-15 05:28:59 +02:00
|
|
|
```
|
|
|
|
|
2018-08-15 05:43:31 +02:00
|
|
|
### Install
|
|
|
|
|
|
|
|
`sudo make install`
|
|
|
|
|
|
|
|
_Note: On systems without admin access the binary can be run directly from the
|
|
|
|
git repo, but will lack `man` support and command completion._
|
|
|
|
|
|
|
|
### Uninstall
|
|
|
|
|
|
|
|
`sudo make uninstall`
|
|
|
|
|
2018-08-15 05:28:59 +02:00
|
|
|
## Contributing
|
|
|
|
|
|
|
|
Pull requests are welcome. For major changes, please open an issue first to
|
|
|
|
discuss what you would like to change.
|
|
|
|
|
|
|
|
## License
|
|
|
|
[GPL3](LICENSE)
|