You could also use the subprocess module, which like os.system, doesn't care
about the absolute path of the executable.
import subprocess
p = subprocess.Popen(['aptitude', 'search', 'gnome'])
p.wait()
On Thu, Sep 16, 2010 at 7:07 PM, Cosme DomÃnguez wrote:
> 2010/9/17 Stephen Burke :
> > I'm wr
Hi all,
I'm a newcomer to the Ubuntu Development community, but long time linux
user. I am interested in starting a patch to add colored output to the
apt-get/apt-cache (are there any other apt-*s?)[see bug link in footnote].
Gentoo, for example, does this very nicely with their emerge tool. I was