def print_command_line()

in tools/create_bazel_hashdict.py [0:0]


def print_command_line(f):
  """Print the current command line."""
  f.write("create_hash_dict")
  for i in range(1, len(sys.argv)):
    f.write(" '%s'" % (sys.argv[i].replace("'", "'\\''")))