<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Pgrep and Pkill for OSX</title>
	<atom:link href="http://coderseye.com/2006/pgrep-and-pkill-for-osx.html/feed" rel="self" type="application/rss+xml" />
	<link>http://coderseye.com/2006/pgrep-and-pkill-for-osx.html</link>
	<description>Programming is passion made real</description>
	<lastBuildDate>Fri, 09 Dec 2011 00:27:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: David Ackerman</title>
		<link>http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-1425</link>
		<dc:creator>David Ackerman</dc:creator>
		<pubDate>Wed, 05 Jan 2011 20:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-1425</guid>
		<description>Just a minor correction to the above. It&#039;s:

brew install proctools

(not &quot;procools&quot;)</description>
		<content:encoded><![CDATA[<p>Just a minor correction to the above. It&#8217;s:</p>
<p>brew install proctools</p>
<p>(not &#8220;procools&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-1331</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 03 Dec 2010 02:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-1331</guid>
		<description>Using sudo with homebrew Robert? Tsk tsk.</description>
		<content:encoded><![CDATA[<p>Using sudo with homebrew Robert? Tsk tsk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert K</title>
		<link>http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-831</link>
		<dc:creator>Robert K</dc:creator>
		<pubDate>Tue, 21 Sep 2010 16:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-831</guid>
		<description>I highly recommend installing the &quot;homebrew&quot; package manager (http://mxcl.github.com/homebrew/).  Much easier to deal with than macports.

Then pkill et al can be installed via &quot;sudo brew install procools&quot;</description>
		<content:encoded><![CDATA[<p>I highly recommend installing the &#8220;homebrew&#8221; package manager (<a href="http://mxcl.github.com/homebrew/" rel="nofollow">http://mxcl.github.com/homebrew/</a>).  Much easier to deal with than macports.</p>
<p>Then pkill et al can be installed via &#8220;sudo brew install procools&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mat</title>
		<link>http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-226</link>
		<dc:creator>mat</dc:creator>
		<pubDate>Thu, 04 Mar 2010 21:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-226</guid>
		<description>Or, if you can&#039;t be bothered to compile proctools, emulate using the existing on-board tools. See: http://soziotechnischemassnahmen.blogspot.com/2010/03/poor-mans-pgrep-on-mac-os-x.html</description>
		<content:encoded><![CDATA[<p>Or, if you can&#8217;t be bothered to compile proctools, emulate using the existing on-board tools. See: <a href="http://soziotechnischemassnahmen.blogspot.com/2010/03/poor-mans-pgrep-on-mac-os-x.html" rel="nofollow">http://soziotechnischemassnahmen.blogspot.com/2010/03/poor-mans-pgrep-on-mac-os-x.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gabriel</title>
		<link>http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-225</link>
		<dc:creator>gabriel</dc:creator>
		<pubDate>Tue, 08 Sep 2009 01:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-225</guid>
		<description>thanks for the suggestion!

used &quot;sudo port install proctools&quot; to install.  Now i can do &quot;sudo dtruss -p $(pgrep foo)&quot; !</description>
		<content:encoded><![CDATA[<p>thanks for the suggestion!</p>
<p>used &#8220;sudo port install proctools&#8221; to install.  Now i can do &#8220;sudo dtruss -p $(pgrep foo)&#8221; !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sufehmi</title>
		<link>http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-224</link>
		<dc:creator>sufehmi</dc:creator>
		<pubDate>Sun, 03 Jun 2007 04:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2006/pgrep-and-pkill-for-osx.html#comment-224</guid>
		<description>There&#039;s killall instead of Pkill, but it only matches the process name from the beginning (not as substring)

So when you ran &quot;bash -x myscript&quot;, then the following will not terminate it : killall myscript

Of course, &quot;killall bash&quot; may not be a very wise thing to do :)

Thanks for the tip !</description>
		<content:encoded><![CDATA[<p>There&#8217;s killall instead of Pkill, but it only matches the process name from the beginning (not as substring)</p>
<p>So when you ran &#8220;bash -x myscript&#8221;, then the following will not terminate it : killall myscript</p>
<p>Of course, &#8220;killall bash&#8221; may not be a very wise thing to do <img src='http://coderseye.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks for the tip !</p>
]]></content:encoded>
	</item>
</channel>
</rss>

