On 19 March 2010 08:42, Mick <[email protected]> wrote: > Is there some bash incantation I can use then with OOo compiled from source, > to keep the terminal open until I close OOo?
I guess something like this might do the trick:
while pgrep ooffice >/dev/null; do sleep 1; done
Although I'm not at my Gentoo box at the moment to test. The version
of pgrep on this Debian box doesn't have a -q option, hence the
redirect to devnull.

