how do i run filename.py files as a argv[1] and settings.config files as a argv[2]

Viewed 31

i am writing a python program for automatically uploaded files into google drive. need to run filename.py file with .CONFIG File input file in command prompt

ex: python3 filename.py .CONFIG File

1 Answers

try to use && oprator

python3 filename && .CONFIG File
Related