mintmenu/usr/lib/linuxmint/mintMenu/plugins/execute.py

48 lines
1.2 KiB
Python
Raw Normal View History

2009-07-27 11:45:34 +01:00
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 , commandCwd=None):
if not commandCwd:
cwd = os.path.expanduser( "~" );
else:
tmpCwd = os.path.expanduser( commandCwd );
if (os.path.exists(tmpCwd)):
cwd = tmpCwd
if isinstance( cmd, str ) or isinstance( cmd, unicode):
2010-09-23 11:15:09 +01:00
if (cmd.find("/home/") >= 0) or (cmd.find("su-to-root") >= 0) or (cmd.find("\"") >= 0):
2009-07-27 11:45:34 +01:00
print "running manually..."
try:
os.chdir(cwd)
os.system(cmd + " &")
return True
except Exception, detail:
print detail
return False
2009-07-27 11:45:34 +01:00
cmd = cmd.split()
cmd = RemoveArgs(cmd)
2009-07-27 11:45:34 +01:00
try:
os.chdir( cwd )
string = ' '.join(cmd)
string = string + " &"
#subprocess.Popen( cmd ) // use os.system instead of popen so children don't end up in zombie waiting for us to wait() for them
os.system(string)
2009-07-27 11:45:34 +01:00
return True
except Exception, detail:
print detail
return False