不获取返回结果:

import os

os.system("sh /path/xx.sh '%s'" %(params))

获取返回结果:

import commands

(status,output) = commands.getstatusoutput("/path/xx.sh '%s'" %(params))
status是返回状态
output是返回结果