You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
208 B
Python
10 lines
208 B
Python
6 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
import json
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
os.environ['ORIGINAL_ARGV'] = json.dumps(sys.argv)
|
||
|
os.environ['THIS_IS_STUB_SUDO'] = '1'
|
||
|
os.execv(sys.executable, sys.argv[sys.argv.index('--') + 1:])
|