Why does Mac's $find not have the option -printf? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:13:06Z http://stackoverflow.com/feeds/question/752818 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/752818/why-does-macs-find-not-have-the-option-printf 0 Why does Mac's $find not have the option -printf? Masi 2009-04-15T17:25:43Z 2009-04-15T20:03:00Z <p>I have not found a reason why Mac's find does not have the option -printf. Apple normally decides to take options out which are not orthogonal to the other commands?</p> <p><strong>How can you reach the same result as the following command in Mac</strong> without coreutils?</p> <pre><code>find . -printf "%i \n" // command in Ubuntu </code></pre> http://stackoverflow.com/questions/752818/why-does-macs-find-not-have-the-option-printf/752893#752893 5 Answer by ephemient for Why does Mac's $find not have the option -printf? ephemient 2009-04-15T17:41:15Z 2009-04-15T17:41:15Z <p>It's not that Apple removes options, it's that OS X's UNIX underpinnings are mostly derived (circuitously) from FreeBSD, many parts of which can be traced back to the original UNIX... as opposed to the GNU utilities, which are re-implementations with many features added.</p> <p>In this case, <a href="http://www.freebsd.org/cgi/man.cgi?query=find&amp;section=1" rel="nofollow">FreeBSD's <code>find(1)</code></a> doesn't support <code>-printf</code>, so I wouldn't expect OS X's to either. Instead, this should work on a BSD-ish system:</p> <pre><code>find . -print0 | xargs -0 stat -f '%i ' </code></pre> <p>It'll fail on a GNU-userland system, though, where you'd write <code>xargs -0 -r stat -c '%i '</code> because <code>xargs(1)</code> and <code>stat(1)</code> behavior is different.</p> http://stackoverflow.com/questions/752818/why-does-macs-find-not-have-the-option-printf/752905#752905 2 Answer by bendin for Why does Mac's $find not have the option -printf? bendin 2009-04-15T17:44:30Z 2009-04-15T17:44:30Z <p>Ubuntu ships with the <a href="http://www.gnu.org/software/findutils/" rel="nofollow">GNU version of find</a>, which is more featureful than Mac OS X's find, which is of <a href="http://www.bsd.org/" rel="nofollow">BSD</a> lineage.</p> <p>In fact, most of the Ubuntu's user-land utilities are from the GNU project. (Thus you'll sometimes hear Linux-based systems referred to as "GNU/Linux".)</p> http://stackoverflow.com/questions/752818/why-does-macs-find-not-have-the-option-printf/753024#753024 1 Answer by dmckee for Why does Mac's $find not have the option -printf? dmckee 2009-04-15T18:17:47Z 2009-04-15T20:03:00Z <p>Well, <a href="http://stackoverflow.com/questions/752818/why-does-macs-find-not-have-the-option-printf/752893#752893">ephemient</a> and <a href="http://stackoverflow.com/questions/752818/why-does-macs-find-not-have-the-option-printf/752905#752905">bendin</a> nailed the cause. </p> <p>I'd add that there is nothing stopping you from installing GNU find (from the <a href="http://www.gnu.org/software/findutils/findutils.html" rel="nofollow">findutils</a>) if you need it. If you use <a href="http://www.finkproject.org/" rel="nofollow">fink</a> there is a <a href="http://pdb.finkproject.org/pdb/browse.php?summary=findutils" rel="nofollow"><code>findutils</code> package</a>. <a href="http://www.macports.org/" rel="nofollow">MacPorts</a> has it <a href="http://trac.macports.org/browser/trunk/dports/sysutils/findutils/Portfile" rel="nofollow">too</a>.</p>