Michael Barton wrote: > Any idea why this won't execute in cmd.py? > > cmdlst = ['d.mon','start=%s' % xmon, '&'] > p = cmd.Command(cmdlst)
Is the '&' supposed to be an argument? Shell syntax won't work if you aren't using a shell. If you want to run a command in the background, use Command(..., wait=False). -- Glynn Clements <[EMAIL PROTECTED]> _______________________________________________ grass-dev mailing list [email protected] http://grass.itc.it/mailman/listinfo/grass-dev

