* Steve Searle [2007.02.18 16:00]: > Off topic, but a neat trick when grepping your > processes to find information about one is to > use "ps auxw | grep processName | grep -v grep" Another, shorter, way to do the same: ps auxw | grep '[p]rocessName' -- JR