Is it possible to run a System process remotely , i.e. in the background using python?
For e.g. I ave Scilab installed on my system, now I do something like this
xx= os.system('scilab-adv-cli')
in the python console. But this fires up an actual scilab command line interface. Though I need something like this :
xx.add(1,2)
here is some function predefined in scilab module whic on invoking should return 3 here. CAn this be done?