git-subtree-dir: lcthw-remnants git-subtree-mainline: 4107485591a9ea2121b65d60d8a08c298451a74b git-subtree-split: e172f73c8297b22a579c94558f0c171ca74a0e5c
11 lines
234 B
Python
11 lines
234 B
Python
from __future__ import print_function
|
|
|
|
import os
|
|
import sys
|
|
|
|
argc = int(sys.argv[1]) if sys.argv[1:] else 23694
|
|
command = "valgrind ./ex10 " + " ".join(map(str, range(argc)))
|
|
print("command = {0}".format(command))
|
|
|
|
os.system(command)
|