docs/tutorial/testlib/arguments_printer.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 25 Apr 2019 13:58:29 -0700
changeset 4612 c289f06028d0
parent 3376 aad37ffd7d58
permissions -rw-r--r--
evolve: move more of the progress-related variables together

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))