update get command
This commit is contained in:
@@ -13,9 +13,10 @@ def main():
|
||||
# a send command
|
||||
send_parser = subparsers.add_parser("send", description="Send data to PrivateBin instance", usage="""
|
||||
%(prog)s --burn --discus --expire 1day --format plaintext \\
|
||||
--password mypass image.txt"""
|
||||
--comment "My file" --password mypass image.txt"""
|
||||
)
|
||||
send_parser.add_argument("-b", "--burn", default=False, action="store_true", help="burn sent paste after reading")
|
||||
send_parser.add_argument("-c", "--comment", help="comment in quotes")
|
||||
send_parser.add_argument("-d", "--discus", default=False, action="store_true", help="open discussion of sent paste")
|
||||
send_parser.add_argument("-e", "--expire", default="1day", action="store", help="expiration of paste (default: 1day)")
|
||||
send_parser.add_argument("-f", "--format", default="plaintext", action="store", help="format of paste (default: plaintext)")
|
||||
|
||||
Reference in New Issue
Block a user