Home | History | Annotate | Download | only in tools

Lines Matching full:args

23 def parse_command_line(args):
26 program = args[0]
27 args = args[1:]
28 while len(args) > 0 and args[0][0] == "-":
29 option = args[0][1:]
30 args = args[1:]
37 if len(args) > 2:
40 if len(args) == 0:
48 linux_root = args[0]