<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>brunerd &#187; Leopard</title>
	<atom:link href="http://www.brunerd.com/blog/category/leopard/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brunerd.com/blog</link>
	<description>pushin' bytes around</description>
	<lastBuildDate>Fri, 04 Jun 2010 15:55:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>10.5.7 is out now</title>
		<link>http://www.brunerd.com/blog/2009/05/12/1057-is-out-now/</link>
		<comments>http://www.brunerd.com/blog/2009/05/12/1057-is-out-now/#comments</comments>
		<pubDate>Tue, 12 May 2009 20:13:12 +0000</pubDate>
		<dc:creator>brunerd</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.brunerd.com/blog/?p=111</guid>
		<description><![CDATA[Just to be the near first to say&#8230; 10.5.7 is out as well as security updates for PPC and Intel. Only via software update right now&#8230; standalone packages soon to follow. 10.5.7 Release Notes are here]]></description>
			<content:encoded><![CDATA[<p>Just to be the near first to say&#8230; 10.5.7 is out as well as security updates for PPC and Intel. Only via software update right now&#8230; standalone packages soon to follow. 10.5.7 Release Notes are <a href="http://support.apple.com/kb/HT3397">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brunerd.com/blog/2009/05/12/1057-is-out-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New PlistBuddy Behaviour</title>
		<link>http://www.brunerd.com/blog/2009/03/24/new-plistbuddy-behaviour/</link>
		<comments>http://www.brunerd.com/blog/2009/03/24/new-plistbuddy-behaviour/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 20:27:42 +0000</pubDate>
		<dc:creator>brunerd</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.brunerd.com/blog/?p=56</guid>
		<description><![CDATA[So, the new UniBody MacBooks come with a build 9G2133 of 10.5.6, currently build 9G55 of 10.5.6 is what&#8217;s out there. What&#8217;s more /usr/libexec/PlistBuddy has been updated as well 9G2133 (new): -rwxr-xr-x 1 root wheel 84400 Sep 24 17:21 PlistBuddy 9G55 (old): -rwxr-xr-x 1 root wheel 73792 Apr 7 2008 PlistBuddy What&#8217;s changed with PlistBuddy is [...]]]></description>
			<content:encoded><![CDATA[<p>So, the new UniBody MacBooks come with a build 9G2133 of 10.5.6, currently build 9G55 of 10.5.6 is what&#8217;s out there. What&#8217;s more <code>/usr/libexec/PlistBuddy</code> has been updated as well</p>
<p>9G2133 (new):<br />
<code>-rwxr-xr-x  1 root  wheel  84400 Sep 24 17:21 PlistBuddy</code></p>
<p>9G55 (old):<br />
<code>-rwxr-xr-x  1 root  wheel  73792 Apr  7  2008 PlistBuddy</code></p>
<p>What&#8217;s changed with PlistBuddy is this:<br />
* Now, exits with non-zero status on failure (like the man page says)<br />
* Writes errors to stderr instead of stdout</p>
<p>What this might mean to you is if you have a script that tests the stdout of PlistBuddy to detect errors, instead of the exit code (which hasn&#8217;t worked until now) then that script might just keep going and going and going&#8230;</p>
<p>For example: I use  PlistBuddy to add icons to the Dock in custom pkgs I make for work. So the other day when I ran the base packages, Adobe Acrobat being one of them, it just kept going, never fininshing, looking in install.log I found my script stuck in a loop, counting ever higher&#8230;</p>
<p><code>Mar 23 12:42:45 BlankMacBookUni runner[641]: postflight[648]: Print: Entry, "persistent-apps:<strong>546217</strong>:tile-data:file-label", Does Not Exist</code></p>
<p>In about 30 mins it had gotten up to 546,217 attempts to read the Dock plist (thas&#8217; a big log file!). Since my script was testing the stdout string which was now blank because it was going to stderr, it didn&#8217;t know it reached the end!</p>
<p>To illustrate how I changed the code to compensate for either version, here&#8217;s the snippet that will detect if it is at the end of the plist, based on the output (or lack thereof):</p>
<p>Old code:<br />
<code>if [[ "$output" == *Does\ Not\ Exist ]]; then</code></p>
<p>New Code:<br />
<code>if [[ "$output" == *Does\ Not\ Exist ]] || [ -z "$output" ]; then</code></p>
<p>So, we&#8217;ll see if this is rolled into 10.5.7, probably. For Tiger, I use the PlistBuddy found in /Library/Receipts/iTunesX.pkg/Contents/Resources/, as of iTunes 8.1 it is still the older version.</p>
<p>Hope this of use to someone. Thanks for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brunerd.com/blog/2009/03/24/new-plistbuddy-behaviour/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What&#8217;s in the Time Machine Update?</title>
		<link>http://www.brunerd.com/blog/2008/03/20/whats-in-the-time-machine-update/</link>
		<comments>http://www.brunerd.com/blog/2008/03/20/whats-in-the-time-machine-update/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 18:40:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Packages]]></category>

		<guid isPermaLink="false">http://www.brunerd.com/blog/2008/03/20/whats-in-the-time-machine-update/</guid>
		<description><![CDATA[Here&#8217;s the meat of what gets updated: backup daemon helper &#38; file vault image tool, loginwindow.app, Broadcom and Aetheros wireless kexts. Lotsa System.kexts: BSD, IOKit, Libkern, MAC Framework, Mach. The AFP filesystem plugin, metadata framework, the backupd launch daemon plists, and the DiskImages framework.   /System/Library/CoreServices/SystemVersion.plist /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper /System/Library/CoreServices/backupd.bundle/Contents/Resources/fvimagetool /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow /System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AirPortAtheros.kext/Contents/MacOS/AirPortAtheros /System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AppleAirPortBrcm4311.kext/Contents/MacOS/AppleAirPortBrcm4311 /System/Library/Extensions /System.kext/PlugIns/BSDKernel.kext/BSDKernel /System/Library/Extensions /System.kext/PlugIns/IOKit.kext/IOKit [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the meat of what gets updated: backup daemon helper &amp; file vault image tool, loginwindow.app, Broadcom and Aetheros wireless kexts. Lotsa System.kexts: BSD, IOKit, Libkern, MAC Framework, Mach. The AFP filesystem plugin, metadata framework, the backupd launch daemon plists, and the DiskImages framework.<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"> </p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/CoreServices/SystemVersion.plist</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/CoreServices/backupd.bundle/Contents/Resources/fvimagetool</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AirPortAtheros.kext/Contents/MacOS/AirPortAtheros</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AppleAirPortBrcm4311.kext/Contents/MacOS/AppleAirPortBrcm4311</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System.kext/PlugIns/BSDKernel.kext/BSDKernel</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System.kext/PlugIns/IOKit.kext/IOKit</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System.kext/PlugIns/Libkern.kext/Libkern</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System.kext/PlugIns/MACFramework.kext/MACFramework</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System.kext/PlugIns/Mach.kext/Mach</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System.kext/PlugIns</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System6.0.kext/kernel.6.0</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Extensions</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System.kext/PlugIns/Unsupported.kext/Unsupported</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Filesystems/AppleShare/afpfs.kext/Contents/MacOS/afpfs</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Support/mds</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/LaunchDaemons/com.apple.backupd-attach.plist</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/LaunchDaemons/com.apple.backupd-auto.plist</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/LaunchDaemons/com.apple.backupd-wake.plist</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>/System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages/usr/share/man/man1/tmdiagnose.1</p></blockquote>
<p>Here&#8217;s hoping that the update in tandem with the Airport/Time Capsule  fixes some of the problems people have had with using a hard drive as an Airport disk on the Airport Extremes. For me it wasn&#8217;t even about Time Machine, the real pain was transfers were SLOW even over the 100Mb/s Ethernet (dangit I jumped the gun and didn&#8217;t get the GigE model) and sometimes the Airport Disk couldn&#8217;t be mounted on my computers until the Airport was restarted. Also with the update the ever mysterious Wide Area Bonjour prefs are still around, they are in the Name-Edit&#8230; button now.One more thing&#8230;/usr/share/man/man1/<strong>tmdiagnose</strong>.1: Hmmm, is this a Time Machine diagnostics tool?Let&#8217;s have a look at the <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/tmdiagnose.1.html">man page</a> or <a href="http://www.hmug.org/man/1/tmdiagnose.php">this one</a>:tmdiagnose(1)             BSD General Commands Manual            tmdiagnose(1)NAME tmdiagnose, Other_name_for_same_program(), Yet another name for the same program. &#8212; This line parsedfor whatis database.<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote">
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote">tmdiagnose(1)             BSD General Commands Manual            tmdiagnose(1) </p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>NAME</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     tmdiagnose, Other_name_for_same_program(), Yet another name for the same program. &#8212; This line parsed</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     for whatis database.</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>SYNOPSIS</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     tmdiagnose, [-abcd] [-a path] [file] [file ...] arg0 arg2 &#8230;</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>DESCRIPTION</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     Use the .Nm macro to refer to your program throughout the man page like such: tmdiagnose, Underlining</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     is accomplished with the .Ar macro like this: underlined text.</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     A list of items with descriptions:</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     item a   Description of item a</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     item b   Description of item b</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     A list of flags and their descriptions:</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     -a       Description of -a flag</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     -b       Description of -b flag</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>FILES</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     /usr/share/file_name                          FILE_1 description</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     /Users/joeuser/Library/really_long_file_name  FILE_2 description</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>SEE ALSO</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>     a(1), b(1), c(1), a(2), b(2), a(3), b(3)</p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p>Darwin                           April 2, 2008                          Darwin</p></blockquote>
<p> </p></blockquote>
<p><span style="font-weight: bold" class="Apple-style-span"> </span>Only a dummy man page. And no executable to be found. Its origins though are from the BSD package (see /Library/Receipts/boms/com.apple.pkg.BSD.bom) No change has been made to this man page since 10.5 but yet it is included with this update? Odd. My guess is that there is an Apple internal tool in use but not something for the general public. I mean why would the &#8216;Rest of Us&#8217; need to diagnose Time Machine?!It&#8217; just works right? <img src='http://www.brunerd.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.brunerd.com/blog/2008/03/20/whats-in-the-time-machine-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applescript Language Guide for Leopard Released (Finally)</title>
		<link>http://www.brunerd.com/blog/2008/03/11/applescript-language-guide-for-leopard-released-finally/</link>
		<comments>http://www.brunerd.com/blog/2008/03/11/applescript-language-guide-for-leopard-released-finally/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 19:14:36 +0000</pubDate>
		<dc:creator>brunerd</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.brunerd.com/blog/2008/03/11/applescript-language-guide-for-leopard-released-finally/</guid>
		<description><![CDATA[So just today I was this close to going on the Applescript mailing list to find out why the Apple Script Language guide for Leopard had yet to be released, despite being touted as &#8220;the essential guide for scripters and developers&#8221; on the Apple website, the old version from 1999 was all that could be [...]]]></description>
			<content:encoded><![CDATA[<p>So just today I was <em>this</em> close to going on the Applescript mailing list to find out why the Apple Script Language guide for Leopard had yet to be released, despite being <a href="http://www.apple.com/applescript/features/features.html#1002">touted</a> as &#8220;the essential guide for scripters and developers&#8221; on the Apple website, the old version from 1999 was all that could be found since Leopard&#8217;s release last year.</p>
<p>But today, with as little fanfare as possible, it was <a href="http://developer.apple.com/documentation/AppleScript/Conceptual/AppleScriptLangGuide/introduction/ASLR_intro.html">released</a>.</p>
<p>Now go forth and&#8230;</p>
<p>tell Safari<br />
get all <a href="http://developer.apple.com/documentation/AppleScript/Conceptual/AppleScriptLangGuide/AppleScriptLanguageGuide.pdf">documents</a> containing &#8220;Applescript 2.0&#8243;<br />
end tell</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brunerd.com/blog/2008/03/11/applescript-language-guide-for-leopard-released-finally/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
