You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
296 B
11 lines
296 B
#! /usr/bin/python3
|
|
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser(prog='HILFE',description='Demonstration der Hilfeseite',epilog='Ende der Hilfe im Epilog')
|
|
|
|
parser.add_argument('--update',help='update Hilfe')
|
|
parser.add_argument('--dry-run',help='dry-run Hilfe')
|
|
|
|
args=parser.parse_args()
|
|
|
|
|