12 lines
296 B
Python
Executable File
12 lines
296 B
Python
Executable File
#! /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()
|
|
|