bill lam wrote:
I want to know if a linux process is already runnning, eg, I could use
ps -e |grep soffice
However under wine, the output can not be read (mentioned in my last
email), is there any other alternatives?
What exactly are you attempting to do? Look for a program running under
Wine or the actual Wine programs?
I use:
ps -aux | grep wineserver
to find wineserver application information
and
ps -aux | grep wine
to find running instances of programs
This should work under both Linux and Mac.
James