1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
---
title: PRIVATEBIN-CREATE
header: Privatebin Manual
footer: 1.0.0
date: Jan 20, 2022
section: 1
---
# NAME
**privatebin-create** – create a paste
# SYNOPSIS
**privatebin create** [-h | -help] [-\-burn-after-reading] [-\-expire=\<time\>]\
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ [-\-formatter=\<format\>] [-\-open-discussion]\
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ [-\-password=\<password\>] [-\-gzip] [-\-attachment] \
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ [-\-filename=\<filename\>] *STDIN*
# DESCRIPTION
Create paste.
# OPTIONS
**-h, -\-help**
: Show help message.
**-\-burn-after-reading**
: Delete the paste after reading.
**-\-expire** \<time\>
: The time to live of the paste.
**-\-formatter** \<format\>
: The text formatter to use, can be plaintext, markdown or
syntaxhighlighting.
**-\-open-discussion**
: Enable discussion on the paste.
**-\-password**
: Add password on the paste.
**-\-attachment**
: Create the paste as an attachment.
**-\-filename**
: Open and read filename instead of `stdin`.
**-\-gzip**
: GZip the paste data.
# EXAMPLES
Create a paste on the default privatebin instance:
$ cat example.txt | privatebin create
# SEE ALSO
**privatebin.conf**(5)
# AUTHORS
Bryan Frimin.
|