docs/tutorial/testlib/arguments_printer.py
author willstott101@gmail.com
Mon, 02 Mar 2020 17:12:09 +0000
branchstable
changeset 5137 4fef6b157175
parent 3376 aad37ffd7d58
permissions -rw-r--r--
py3-exceptions: wrap more Exceptions in forcebytestr before formatting

import sys

formatted_args = []

UNSAFE_CHARACTERS = [" ", "!", "\"", "#", "$", "&", "'", "(", ")", "*", ",", ";", "<", ">", "?", "[", "\\", "]", "^", "`", "{", "|", "}", ":", "~", "/"]


def find_unsafe(arg):
    for unsafe in UNSAFE_CHARACTERS:
        if unsafe in arg:
            return True

    return False


for arg in sys.argv[1:]:
    if find_unsafe(arg):
        formatted_args.append('"%s"' % arg)
    else:
        formatted_args.append(arg)

print("$ " + " ".join(formatted_args))