33 lines
832 B
Python
Executable File
33 lines
832 B
Python
Executable File
|
|
import os
|
|
import subprocess
|
|
|
|
def RemoveArgs(Execline):
|
|
NewExecline = []
|
|
Specials=["\"%c\"", "%f","%F","%u","%U","%d","%D","%n","%N","%i","%c","%k","%v","%m","%M", "-caption", "/bin/sh", "sh", "-c", "STARTED_FROM_MENU=yes"]
|
|
for elem in Execline:
|
|
elem = elem.replace("'","")
|
|
elem = elem.replace("\"", "")
|
|
if elem not in Specials:
|
|
print elem
|
|
NewExecline.append(elem)
|
|
return NewExecline
|
|
|
|
# Actually execute the command
|
|
def Execute( cmd ):
|
|
if isinstance( cmd, str ):
|
|
if (cmd.find("/home/") >= 0) or (cmd.find("su-to-root") >= 0) or (cmd.find("\"") >= 0):
|
|
print "running manually..."
|
|
os.system(cmd + " &")
|
|
return True
|
|
cmd = cmd.split()
|
|
cmd = RemoveArgs(cmd)
|
|
try:
|
|
os.chdir( os.path.expanduser( "~" ) )
|
|
subprocess.Popen( cmd )
|
|
return True
|
|
except Exception, detail:
|
|
print detail
|
|
return False
|
|
|