Re: Application icon
Re: Application icon
- Subject: Re: Application icon
- From: Finlay Dobbie <email@hidden>
- Date: Mon, 8 Oct 2001 07:18:23 +0100
On Monday, October 8, 2001, at 02:44 am, Clark S. Cox III wrote:
return:
ps -ax | grep
"/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock"
This will give you a list of all processes. Each line starts with a
number,
take the number from the first line, and type:
kill <number goes here>
I prefer
ps -caux | grep Dock | awk '{print $2}' | xargs kill
:-)
-- Finlay