usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
281 B
19 lines
281 B
6 years ago
|
import sys
|
||
|
|
||
|
print('Args:', sys.argv)
|
||
|
|
||
|
if 7 != len(sys.argv):
|
||
|
print('ERROR')
|
||
|
exit()
|
||
|
else:
|
||
|
try:
|
||
|
int(sys.argv[3])
|
||
|
int(sys.argv[4])
|
||
|
int(sys.argv[5])
|
||
|
except Exception as e:
|
||
|
print(e)
|
||
|
print('ERROR')
|
||
|
exit()
|
||
|
|
||
|
print('SUCCESS')
|