apt-packages-depend/addmore.py

6 lines
197 B
Python
Executable File

#!/usr/bin/env python3
import os
import sys
programPath = os.path.split(os.path.realpath(__file__))[0] # 返回 string
for i in sys.argv[1:]:
os.system(f"python3 '{programPath}/add.py' '{i}'")