Home
Posted By: artie505 du won't run? - 05/26/10 10:17 AM
I've got this note in my database:

Code:
Display file sizes: sudo du -sh /*
Recursive used space total for every folder on your HD.

The command runs in 10.5.7, but not in 10.6.3.

According to (10.6.3) man:du the command is correct.

Does anybody else see the same thing?
Posted By: jchuzi Re: du won't run? - 05/26/10 11:08 AM
It seems to work for me. I get:

9.1G /Applications
5.8G /Library
0B /Network
2.3G /System
30G /Users
Posted By: dkmarsh Re: du won't run? - 05/26/10 05:07 PM

That's not a "[r]ecursive used space total for every folder on your HD," though.

In looking at man du in OS X 10.5.8, I note that the -s option is described as follows:

Quote:
Display an entry for each specified file. (Equivalent to -d 0)

The -d option determines the depth to which the folder hierarchy is traversed, so when its value is 0, no subdirectories are traversed. I don't know how to make the command recursive, but I'm sure someone will.
Posted By: Virtual1 Re: du won't run? - 05/26/10 07:24 PM
works here on 10.6.3. pebkac? wink

Also you're making the infamous mistake of saying "it didn't work" without providing any real detail as to what happened when you tried.
Posted By: artie505 Re: du won't run? - 05/26/10 08:08 PM
> pebkac?

I don't think so; I enter Terminal commands with copy and paste.

> Also you're making the infamous mistake of saying "it didn't work" without providing any real detail as to what happened when you tried.

blush Nothing happened; I hit "return" and wasn't even asked for my password...merely offered a new prompt.

I've got a coupl'a hunches, but I don't think I'll get a chance to investigate until tomorrow night. Hmmm...
Posted By: Hal Itosis Re: du won't run? - 05/27/10 06:01 AM
I'll have to hunt for links, but i know we've covered this ground (in detail) at MFI twice before:
  1. Re: what has happened to my diskspace? [June 24, 2006]

  2. Re: Missing HardDisk space [April 03, 2007]
cool

The real problem with sudo du -sh /* is that the asterisk won't match items starting with a dot (or period). So stuff inside of

/.Spotlight-V100
/.TemporaryItems
/.Trashes
/.fseventsd
/.vol

will never get measured.

And neither will any other slashdot folder (i.e., in / whose name starts with a . ) which might happen to exist.



Originally Posted By: dkmarsh
The -d option determines the depth to which the folder hierarchy is traversed, so when its value is 0, no subdirectories are traversed. I don't know how to make the command recursive, but I'm sure someone will.

In effect, du is already recursive... and in fact, there's no option to prevent that.

-d
is merely determining how deep the *displayed* results will drill.

The typical (macosxhints crowd) command is this:

sudo du -d 1 -h
-x /

That's the "straight-laced" Unix way (separated options), which a more liberal user might enter as:

sudo du -h
xd1 /

Try out these two and you'll see the same total... but a different display depth:

du -hd1 ~/Desktop
du -hd2 ~/Desktop


Edit: added -x
just know that the -x option is handy when measuring / to prevent du from venturing below /Volumes.
I.e., when measuring /, we usually don't intend to delve down into mounted disks or networked shares.
If that _is_ what's wanted, then remove the x

--

As far as the two Desktop examples go, if you're one of those people who keep zero items on the desktop, then those two examples will fail to impress. If such is the case, then try the docs folder instead:

du -hd1 ~/Documents
du -hd2 ~/Documents
Posted By: Hal Itosis Re: du won't run? - 05/27/10 07:07 AM
Originally Posted By: artie505
I don't think so; I enter Terminal commands with copy and paste.

> Also you're making the infamous mistake of saying "it didn't work" without providing any real detail as to what happened when you tried.

blush Nothing happened; I hit "return" and wasn't even asked for my password...merely offered a new prompt.

I've got a coupl'a hunches, but I don't think I'll get a chance to investigate until tomorrow night. Hmmm...

You do come up with some doozies.

Having nothing happen —other than a new prompt —for that particular string is VERY strange.

We could maybe see part of your history?

grep du ~/.bash_history

EDIT: we may need this too, in case the session is still open:

history |grep du
Posted By: Virtual1 Re: du won't run? - 05/27/10 03:08 PM
instead of sudo xxxx, try sudo -s, and then type the command directly from the root shell and see if it behaves differently. things run via sudo can behave differently than from shell.

also, do you have a password or is your password blank? as of 10.5, sudo requires you to have a non-blank password. if you just hit return when it asks, it will just abort to a new prompt regardless of whether your password is blank or not. (this has proven to be very annoying for me, I had a thread going awhile ago asking if there was a workaround, but didn't find a workaround short of changing the password or using a different account that had a password)

You could also try it without sudo entirely, it will search any folder you can read. or you can login as root and just do the command without the need of sudo. this is all for testing purposes to find the issue, I'm not proposing this as a solution, just as troubleshooting / gathering information for us.
Posted By: artie505 Re: du won't run? - 05/28/10 09:19 AM
Quote:
You do come up with some doozies.

Having nothing happen —other than a new prompt —for that particular string is VERY strange.

We could maybe see part of your history?

grep du ~/.bash_history

First, my memory failed me, and I misspoke (Sorry!); I was asked for my password.

Here's what happens:

Code:
Artie's-MacBook:~ artie$ sudo du -xhd1 /
Password:
Artie's-MacBook:~ artie$ sudo du -hd1 /
Artie's-MacBook:~ artie$ sudo du -sh /*
Artie's-MacBook:~ artie$ grep du ~/.bash_history
Artie's-MacBook:~ artie$

Apparently no "du" command will run.

I thought the problem might be either something I stripped from my 10.6.3 installation in the interest of getting it a small as possible, Directory Utility and Spotlight come to mind, or permissions, but the same items have been stripped from my 10.5.7 installation, and "du" runs all the same, and permissions on both volumes are the same.

My best guess is still that my problem is something that's missing from my 10.6.3 installation, but I've nary a clue... Anybody?

[Perhaps off-topic, perhaps not...] I tried to reinstall Directory Utility in 10.6.3, but Pacifist kept popping-up

Code:
Error:

Something has modified Pacifist's application bundle. The application could be damaged, or could be infected by a virus. Please download an unaltered copy of Pacifist. (Clicking on "OK" causes the app to quit.)

and several fresh downloads generated the same pop-up. The issue doesn't occur in 10.5.7. (I've e-mailed Charles Srstka.)[/Perhaps...]
Posted By: Hal Itosis Re: du won't run? - 05/28/10 12:57 PM
It appears your shell has issues.
You know what to do here:

type -a du od

echo "$PATH"

echo "$SHELL"

echo "$IFS" |od -cb
Posted By: artie505 Re: du won't run? - 05/29/10 09:20 AM
Here you go:

Code:
Arties-MacBook:~ artie$ type -a du od
du is /usr/bin/du
od is /usr/bin/od
Arties-MacBook:~ artie$ echo "$PATH"
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
Arties-MacBook:~ artie$ echo "$SHELL"
/bin/bash
Arties-MacBook:~ artie$ echo "$IFS" |od -cb
0000000       \t  \n  \n                                                
          040 011 012 012                                                
0000004
Arties-MacBook:~ artie$

But I seem to have struck gold with my Pacifist question...

Here are some extracts from my correspondence with Charles Srstka regarding Pacifist's refusal to launch:
  • Your /usr/bin/codesign tool is corrupt, which is what is causing Pacifist not to launch.
  • The corruption is something I’ve seen a bunch of lately — I think there is a problem with the Snow Leopard installer.
  • Ones that have been pretty reliable for damage in the past have been /usr/bin/uname, /usr/bin/compress, and /usr/bin/chflags.
And, indeed, those three files, along with a bevy of others (If you'd like to see the complete laundry list generated by

Code:
ls -l /usr/bin

just ask.) are corrupt, and this

Code:
ls -l /usr/bin --> -r-xr-xr-x@  1 root   wheel         0 Jul 14  2009 du

looks to be my problem?
Posted By: jchuzi Re: du won't run? - 05/29/10 10:46 AM
Pacifist 2.6.4 successfully launched in my system. How did you install Snow Leopard? I used the default method (Upgrade) to get from 10.5 to 10.6.
Posted By: artie505 Re: du won't run? - 05/29/10 11:13 AM
Originally Posted By: jchuzi
Pacifist 2.6.4 successfully launched in my system. How did you install Snow Leopard? I used the default method (Upgrade) to get from 10.5 to 10.6.

This was a clean install, Jon.

The corruption that Charles has seen obviously isn't universal, but it's widespread enough to have hit VT :

Quote:
[2/18/2010] I have downloaded this a number of times fromVersion Tracker and the Charlesoft website and when I open the app I get a message that something has altered the apps bundle and to download a fresh version. It occurs over and over.

Quote:
[4/16/2010] Charles's reply: Problem was resolved, turned out to be an issue with the user's system that was causing code signing not to work system-wide.

I'm happy to learn that my issues apparently are not the result of my tinkering which, although ruthless, is +/- judicious.
Posted By: Hal Itosis Re: du won't run? - 05/29/10 02:29 PM
Originally Posted By: artie505
And, indeed, those three files, along with a bevy of others are corrupt, and this

ls -l /usr/bin -->
-r-xr-xr-x@ 1 root wheel 0 Jul 14 2009 du

looks to be my problem?

Absolutely.


Originally Posted By: artie505
(If you'd like to see the complete laundry list generated by

ls -l /usr/bin

just ask.)

Well, actually i'd like to see *just* the bad ones (since the full list has over 900 lines).

This should do it:

ls -l /usr/bin |awk '$5 == 0 {print}'

Thanks.

The biggest annoyance with these sorts of screw ups is: how do we *know* that the problem is confined to the /usr/bin folder? There could be weirdness like that all over the place.

A full reinstall is the only way i'd feel safe.
But then, why did yours end up like that?
And what stops it from happening again?


EDIT: here is a more generalized search. It looks inside the folders /bin /sbin and /usr for files that are less than one byte big:

find -f /bin /sbin /usr -type f -size -1c -exec ls -ldF@ {} +

-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/groff/1.19.2/tmac/mm/locale
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/groff/1.19.2/tmac/mm/se_locale

Looks like i have some myself (but they seem to be... well, idunno. Hopefully those are supposed to be 0-byte files).


EDIT 2: this will skip that "groff" area (i suspect those items are supposed to be zero bytes):

find -f /bin /sbin /usr -type f -size -1c -not -path '*/groff/*' -exec ls -ldF@ {} +
Posted By: Virtual1 Re: du won't run? - 05/30/10 04:45 AM
I run that and get

Code:
apple:~ root # find -f /bin /sbin /usr -type f -size -1c -not -path '*/groff/*' -exec ls -ldF@ {} +
-rw-r--r--  1 root  wheel  0 Jan 19 09:59 /usr/local/share/doc/libublio/AUTHORS
-rw-r--r--  1 root  wheel  0 Jan 19 09:59 /usr/local/share/doc/libublio/ChangeLog
-rw-r--r--  1 root  wheel  0 Jan 19 09:59 /usr/local/share/doc/libublio/NEWS
-rw-r--r--  1 root  wheel  0 Feb 11 00:05 /usr/share/mysql/mysql-test/r/federated_disabled.result
-rw-r--r--  1 root  wheel  0 Mar 11 18:11 /usr/share/wikid/lib/python/apple_wlt/__init__.py
-rw-r--r--  1 root  wheel  0 Mar 11 18:11 /usr/share/wikid/lib/python/twisted_overrides/__init__.py
apple:~ root # 

(root/sudo required for some paths apparently)
Posted By: Hal Itosis Re: du won't run? - 05/30/10 05:56 AM
Hmm, Apple didn't include those items in my new MBP (OSX 10.6.3):

ls /usr/local/share /usr/share/mysql /usr/share/wikid
ls: /usr/local/share: No such file or directory
ls: /usr/share/mysql: No such file or directory
ls: /usr/share/wikid: No such file or directory

Nor is any folder in /bin /sbin or /usr inaccessible (i.e., nothing to necessitate sudo when searching).

At any rate, it seems you have found some empty files there. wink
(...regardless where they came from)


EDIT:

Btw, i just confirmed that —if we can believe the contents of the Essentials bom file —then it seems that those "groff locale" doodads are indeed empty when installed.

E.g.:

lsbom -p MUGsf /var/db/receipts/com.apple.pkg.Essentials.bom |grep '/mm/locale'
-rw-r--r--    root wheel    0   ./usr/share/groff/1.19.2/tmac/mm/locale

Posted By: dkmarsh Re: du won't run? - 05/30/10 08:44 AM

Quote:
Hmm, Apple didn't include those items in my new MBP...

...regardless where they came from...

I think Virtual is running Snowy Server. wink
Posted By: artie505 Re: du won't run? - 05/30/10 09:17 AM
Here goes (You asked for it! grin)... I've assumed that the same errors returned by
Code:
ls -l /usr/bin |awk '$5 == 0 {print}'
are included in those returned by
Code:
find -f /bin /sbin /usr -type f -size -1c -not -path '*/groff/*' -exec ls -ldF@ {} +
and haven't enumerated them (but I've still got them, just in case):

Last login: Sun May 30 02:01:06 on ttys000
Arties-MacBook:~ artie$ find -f /bin /sbin /usr -type f -size -1c -not -path '*/groff/*' -exec ls -ldF@ {} +
-rwxr-xr-x@ 1 root wheel 0 Jun 25 2009 /usr/bin/certtool*
com.apple.ResourceFork 155134
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/checknr*
com.apple.ResourceFork 19623
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jul 14 2009 /usr/bin/chflags*
com.apple.ResourceFork 6866
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jul 14 2009 /usr/bin/chgrp*
com.apple.ResourceFork 8866
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jul 14 2009 /usr/bin/cksum*
com.apple.ResourceFork 10634
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 25 2009 /usr/bin/codesign*
com.apple.ResourceFork 74709
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jul 2 2009 /usr/bin/codesign_allocate*
com.apple.ResourceFork 100795
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/col*
com.apple.ResourceFork 9926
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/colcrt*
com.apple.ResourceFork 10199
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/colldef*
com.apple.ResourceFork 66758
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/colrm*
com.apple.ResourceFork 6589
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/column*
com.apple.ResourceFork 9830
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/comm*
com.apple.ResourceFork 7364
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 28 2009 /usr/bin/compile_et*
com.apple.decmpfs 1
-r-xr-xr-x@ 2 root wheel 0 Jul 14 2009 /usr/bin/compress*
com.apple.ResourceFork 15440
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/config_data5.10.0*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/config_data5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/corelist5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/corelist5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/cpan2dist5.10.0*
com.apple.ResourceFork 7308
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/cpan5.10.0*
com.apple.ResourceFork 4568
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/cpan5.8.9*
com.apple.ResourceFork 4570
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/cpanp-run-perl5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/cpanp5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/cpuwalk.d*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/crc32*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/crc325.10.0*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/crc325.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/creatbyproc.d*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 25 2009 /usr/bin/crlrefresh*
com.apple.ResourceFork 65383
com.apple.decmpfs 1
-r-sr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/crontab*
com.apple.ResourceFork 32461
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/csplit*
com.apple.ResourceFork 11487
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 25 2009 /usr/bin/csreq*
com.apple.ResourceFork 55277
com.apple.decmpfs 1
-r-xr-xr-x@ 1 _uucp wheel 0 May 18 2009 /usr/bin/cu*
com.apple.ResourceFork 120753
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/cups-calibrate*
com.apple.ResourceFork 28332
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/cut*
com.apple.ResourceFork 11083
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/dappprof*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/dapptrace*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/db_codegen*
com.apple.ResourceFork 1528429
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/db_hotbackup*
com.apple.ResourceFork 1527431
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/dbilogstrip*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dbilogstrip5.10.0*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dbilogstrip5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/dbiprof*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dbiprof5.10.0*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dbiprof5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/dbiproxy*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dbiproxy5.10.0*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dbiproxy5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/dc*
com.apple.ResourceFork 42843
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/diffpp*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/diffstat*
com.apple.ResourceFork 18946
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jul 31 2009 /usr/bin/dig*
com.apple.ResourceFork 1853712
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/dirname*
com.apple.ResourceFork 6776
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/diskhits*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/dispqlen.d*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/ditto*
com.apple.ResourceFork 18025
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/dprofpp5.10.0*
com.apple.ResourceFork 8448
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/dprofpp5.8.9*
com.apple.ResourceFork 8445
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/dscacheutil*
com.apple.ResourceFork 24800
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/dscl*
com.apple.ResourceFork 100803
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/dserr*
com.apple.ResourceFork 5955
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dsexport*
com.apple.ResourceFork 16259
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/dsimport*
com.apple.ResourceFork 61672
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/dsmemberutil*
com.apple.ResourceFork 13769
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/dsperfmonitor*
com.apple.ResourceFork 6855
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/dtruss*
com.apple.ResourceFork 4255
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jul 14 2009 /usr/bin/du*
com.apple.ResourceFork 13356
com.apple.decmpfs 1
-rwxr-xr-x@ 2 root wheel 0 Jul 1 2009 /usr/bin/easy_install*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jul 1 2009 /usr/bin/easy_install-2.5*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jul 1 2009 /usr/bin/easy_install-2.6*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/efax*
com.apple.ResourceFork 101377
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/efix*
com.apple.ResourceFork 50753
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/emacs*
com.apple.ResourceFork 3739546
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/emacs-undumped*
com.apple.ResourceFork 1738401
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/emacsclient*
com.apple.ResourceFork 31974
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/enc2xs5.10.0*
com.apple.ResourceFork 14942
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/enc2xs5.8.9*
com.apple.ResourceFork 14941
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jul 28 2009 /usr/bin/encode_keychange*
com.apple.ResourceFork 22645
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/enscript*
com.apple.ResourceFork 150531
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/env*
com.apple.ResourceFork 7195
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/eqn*
com.apple.ResourceFork 111390
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/eqn2graph*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/gluedialect*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/gluedoc*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/glueedit*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/gluemac*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/gluescriptadds*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/grep*
com.apple.ResourceFork 104871
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/ipcount*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/iptab*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/join*
com.apple.ResourceFork 12468
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/jot*
com.apple.ResourceFork 14827
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/lwp-download*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/lwp-mirror*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/lwp-request*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/lwp-rget*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/macerror*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/piconv5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/piconv5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/pidpersec.d*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pl2pm5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pl2pm5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Aug 1 2009 /usr/bin/plockstat*
com.apple.ResourceFork 19828
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2html5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2html5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2latex5.10.0*
com.apple.ResourceFork 4115
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2latex5.8.9*
com.apple.ResourceFork 4115
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2man5.10.0*
com.apple.ResourceFork 8174
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2man5.8.9*
com.apple.ResourceFork 8194
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/pod2readme*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/pod2readme5.10.0*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 19 2009 /usr/bin/pod2readme5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2text5.10.0*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2text5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2usage5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/pod2usage5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/podchecker5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/podchecker5.8.9*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/podselect5.10.0*
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 Jun 24 2009 /usr/bin/podselect5.8.9*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 Jul 14 2009 /usr/bin/readlink*
com.apple.ResourceFork 13670
com.apple.decmpfs 1
-rwxr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/refer*
com.apple.ResourceFork 111115
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/renice*
com.apple.ResourceFork 8501
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/spfd*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/spfquery*
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/ul*
com.apple.ResourceFork 11200
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/uname*
com.apple.ResourceFork 8239
com.apple.decmpfs 1
-r-xr-xr-x@ 2 root wheel 0 Jul 14 2009 /usr/bin/uncompress*
com.apple.ResourceFork 15440
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/unexpand*
com.apple.ResourceFork 7561
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/uniq*
com.apple.ResourceFork 8967
com.apple.decmpfs 1
-r-xr-xr-x@ 1 root wheel 0 May 18 2009 /usr/bin/units*
com.apple.ResourceFork 12741
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/wxperl_demo.pl*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/wxperl_overload*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/wxperl_xspp*
com.apple.decmpfs 1
-rwxr-xr-x@ 2 root wheel 0 Jul 1 2009 /usr/bin/xattr*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/xgettext.pl*
com.apple.decmpfs 1
-rwxr-xr-x@ 24 root wheel 0 May 19 2009 /usr/bin/xpath*
com.apple.decmpfs 1

Next post picks up with /usr/share...
Posted By: artie505 Re: du won't run? - 05/30/10 09:33 AM
Picking up with usr/share...

-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/bsdtar.1.gz
-rw-r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man1/bunzip2.1.gz
-rw-r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man1/bzcat.1.gz
-rw-r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man1/bzip2.1.gz
-rw-r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man1/bzip2recover.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/checknr.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/chflags.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/chgrp.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/chmod.1.gz
-r--r--r-- 1 root wheel 0 Jun 23 2009 /usr/share/man/man1/chpass.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/clear.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/cmp.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/compress.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/config_data5.10.0.1.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/config_data5.8.9.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/corelist5.10.0.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/corelist5.8.9.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/cp.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/cpan2dist5.10.0.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/cpan5.10.0.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/cpan5.8.9.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/cpanp5.10.0.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/cpio.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/domainname.1.gz
-r--r--r-- 1 root wheel 0 Aug 1 2009 /usr/share/man/man1/emacs-undumped.1.gz
-rw-r--r-- 1 root wheel 0 Aug 1 2009 /usr/share/man/man1/emacs.1.gz
-rw-r--r-- 1 root wheel 0 Aug 1 2009 /usr/share/man/man1/emacsclient.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/enc2xs5.10.0.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/enc2xs5.8.9.1.gz
-rw-r--r-- 1 root wheel 0 Jul 28 2009 /usr/share/man/man1/encode_keychange.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/enscript.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/env.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/eqn.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/eqn2graph.1.gz
-r--r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man1/expand.1.gz
-r--r--r-- 1 root wheel 0 Jul 22 2009 /usr/share/man/man1/expect.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/expr.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/false.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/fax.1.gz
-rw-r--r-- 1 root wheel 0 Oct 16 2009 /usr/share/man/man1/file.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/find.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/find2perl5.10.0.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/find2perl5.8.9.1.gz
-rw-r--r-- 1 root wheel 0 May 22 2009 /usr/share/man/man1/findsmb.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/finger.1.gz
-rw-r--r-- 1 root wheel 0 Jul 28 2009 /usr/share/man/man1/fixproc.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/fmt.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/fold.1.gz
-rw-r--r-- 1 root wheel 0 May 4 2009 /usr/share/man/man1/formail.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/from.1.gz
-r--r--r-- 1 root wheel 0 Jun 23 2009 /usr/share/man/man1/fs_usage.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/ftp.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/funzip.1.gz
-r--r--r-- 1 root wheel 0 Jun 29 2009 /usr/share/man/man1/fuser.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/iconv.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/id.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/indxbib.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/info.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/infocmp.1m.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/infokey.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/infotocap.1m.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/install-info.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/install.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/instmodsh5.10.0.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/instmodsh5.8.9.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/intro.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/iodbc-config.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/iodbctest.1.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man1/less.1.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man1/more.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/mp2bug.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/mpic++.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/mpicc.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/mpicxx.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/mpiexec.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/mpif77.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/mpif90.1.gz
-rw-r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man1/mpirun.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/msgs.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/mv.1.gz
-r--r--r-- 1 root wheel 0 Jul 10 2009 /usr/share/man/man1/notifyutil.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/nroff.1.gz
-rw-r--r-- 1 root wheel 0 Jul 31 2009 /usr/share/man/man1/nslookup.1.gz
-rw-r--r-- 1 root wheel 0 Jul 31 2009 /usr/share/man/man1/nsupdate.1.gz
-rw-r--r-- 1 root wheel 0 May 22 2009 /usr/share/man/man1/ntlm_auth.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/ntp-keygen.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/ntpd.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/ntpdc.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/ntpdsim.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/ntpq.1.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man1/readlink.1.gz
-rw-r--r-- 1 root wheel 0 Jul 11 2009 /usr/share/man/man1/sftp.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/shar.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man1/shasum5.10.0.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/shlock.1.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man1/stackshot.1.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man1/stat.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/states.1.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man1/symstacks.rb.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/ul.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/uname.1.gz
-r--r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man1/unexpand.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/uniq.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/units.1.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/unlink.1.gz
-r--r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/unvis.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/unzip.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/unzipsfx.1.gz
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/zcmp.1
com.apple.decmpfs 1
-rw-r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/zdiff.1.gz
-rw-r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man1/zegrep.1.gz
-rw-r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man1/zfgrep.1.gz
-rw-r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/zforce.1.gz
-rw-r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man1/zgrep.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/zip.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/zipcloak.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/zipgrep.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/zipinfo.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/zipnote.1.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man1/zipsplit.1.gz
-rw-r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/zless.1.gz
-rw-r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/zmore.1.gz
-rw-r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man1/znew.1.gz
-r--r--r-- 1 root wheel 0 Jun 23 2009 /usr/share/man/man1/zprint.1.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/AutoLoader5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/AutoLoader5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/AutoSplit5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/AutoSplit5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Asmdata5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Assembler5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Bblock5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Bytecode5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::C5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::CC5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Concise5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Concise5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Debug5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Debug5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Deparse5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Deparse5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Disassembler5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Lint5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Lint5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Lint::Debug5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Showlex5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Showlex5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Stackobj5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Stash5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Terse5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Terse5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Xref5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/B::Xref5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Benchmark5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Benchmark5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/BerkeleyDB5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/BerkeleyDB5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Bit::Vector5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Bit::Vector5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Bit::Vector::Overload5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Bit::Vector::Overload5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Bit::Vector::String5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Bit::Vector::String5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/DirHandle5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/DirHandle5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Dumpvalue5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Dumpvalue5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Errno5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Errno5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/FreezeThaw5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/FreezeThaw5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI::OID5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI::OID5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI::OID::Set5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI::OID::Set5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI::Status5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/GSSAPI::Status5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Getopt::Long5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Getopt::Long5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Getopt::Std5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Getopt::Std5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Hash::Util5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Hash::Util5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Hash::Util::FieldHash5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::AtomicFile5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::AtomicFile5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Compress::Base5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Compress::Deflate5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Compress::Gzip5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Compress::RawDeflate5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Compress::Zip5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Digest5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Digest5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Dir5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Dir5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::File5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::File5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Handle5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Handle5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::InnerFile5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::InnerFile5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Lines5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Lines5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager::Buffered5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager::Buffered5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager::Page5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager::Page5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager::Unbuffered5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pager::Unbuffered5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Pipe5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Pipe5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Poll5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Poll5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pty5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Pty5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Scalar5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Scalar5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::ScalarArray5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::ScalarArray5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Seekable5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Seekable5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Select5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Select5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Socket5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Socket5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Socket::INET5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Socket::INET5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Socket::INET65.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Socket::INET65.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Socket::SSL5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Socket::SSL5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Socket::UNIX5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Socket::UNIX5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::String5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::String5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Stringy5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Stringy5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Tty5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Tty5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Tty::Constant5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Tty::Constant5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Uncompress::AnyInflate5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Uncompress::AnyUncompress5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Uncompress::Base5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Uncompress::Gunzip5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Uncompress::Inflate5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Uncompress::RawInflate5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Uncompress::Unzip5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Wrap5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Wrap5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::WrapTie5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::WrapTie5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IO::Zlib5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/IO::Zlib5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Cmd5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Msg5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Msg5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Open25.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Open25.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Open35.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Open35.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Semaphore5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::Semaphore5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::SharedMem5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::SysV5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/IPC::SysV5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Internals5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/JSON::Syck5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/JSON::Syck5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Authen::Ntlm5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Authen::Ntlm5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::ConnCache5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::ConnCache5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Debug5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Debug5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::DebugFile5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::DebugFile5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::MediaTypes5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::MediaTypes5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::MemberMixin5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::MemberMixin5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Protocol5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Protocol5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::RobotUA5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::RobotUA5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Simple5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::Simple5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::UserAgent5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/LWP::UserAgent5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::App5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::App5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::Dialect5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::Dialect5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::Format::Glue5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::Format::Glue5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::Parser5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AETE::Parser5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AppleEvents5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AppleEvents5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AppleEvents::Simple5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::AppleEvents::Simple5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Apps::Launch5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Apps::Launch5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Carbon5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Carbon5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Components5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Components5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Errors5.10.0.3.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Errors5.8.9.3.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Files5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Files5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Gestalt5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Gestalt5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Glue5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Glue5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::InternetConfig5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::InternetConfig5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Memory5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Memory5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::MoreFiles5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::MoreFiles5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Notification5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Notification5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::OSA5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::OSA5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::OSA::Simple5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::OSA::Simple5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Processes5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Processes5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Resources5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Resources5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Sound5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Sound5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Speech5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Speech5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Types5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mac::Types5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/MacPerl5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/MacPerl5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Address5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Address5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Cap5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Cap5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field::AddrList5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field::AddrList5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field::Date5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field::Date5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field::Generic5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Field::Generic5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Filter5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Filter5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Header5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Header5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Internet5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Internet5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Mailer5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Mailer5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::SPF::Query5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::SPF::Query5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Send5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Send5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Util5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Mail::Util5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/O5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/O5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:41 /usr/share/man/man3/OPENSSL_Applink.3ssl.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:41 /usr/share/man/man3/OPENSSL_VERSION_NUMBER.3ssl.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:41 /usr/share/man/man3/OPENSSL_config.3ssl.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:41 /usr/share/man/man3/OPENSSL_ia32cap.3ssl.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:41 /usr/share/man/man3/OPENSSL_load_builtin_modules.3ssl.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/OSMemoryBarrier.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/OSSpinLockLock.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/OSSpinLockTry.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/OSSpinLockUnlock.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Object::Accessor5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Opcode5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Opcode5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:41 /usr/share/man/man3/OpenSSL_add_all_algorithms.3ssl.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Checker5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Checker5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Escapes5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Escapes5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Find5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Find5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Html5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Html5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::InputObjects5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::InputObjects5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::LaTeX5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::LaTeX5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Man5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Man5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::ParseLink5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::ParseLink5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::ParseUtils5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::ParseUtils5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Parser5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Parser5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToChecker5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToChecker5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToMan5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToMan5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToNroff5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToNroff5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToPod5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToPod5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToRtf5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToRtf5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToText5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToText5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToTk5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToTk5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToXml5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Perldoc::ToXml5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::PlainText5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::PlainText5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Plainer5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Plainer5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Pod::Readme5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Pod::Readme5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Select5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Select5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Checker5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Checker5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Debug5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Debug5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::DumpAsText5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::DumpAsText5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::DumpAsXML5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::DumpAsXML5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::HTML5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::HTML5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::HTMLBatch5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::HTMLBatch5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::LinkSection5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::LinkSection5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Methody5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Methody5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParser5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParser5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserEndToken5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserEndToken5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserStartToken5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserStartToken5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserTextToken5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserTextToken5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserToken5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::PullParserToken5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::RTF5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::RTF5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Search5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Search5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::SimpleTree5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::SimpleTree5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Subclassing5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Subclassing5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Text5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::Text5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::TextContent5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::TextContent5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::XMLOutStream5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Simple::XMLOutStream5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text::Color5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text::Color5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text::Overstrike5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text::Overstrike5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text::Termcap5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Text::Termcap5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Usage5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Pod::Usage5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Proc::Reliable5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Proc::Reliable5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Proc::test_intercept5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Proc::test_intercept5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::CC5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::CC5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::SEN5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::SEN5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC10355.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC10355.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC17385.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC17385.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC18085.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC18085.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC23845.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC23845.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC23965.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC23965.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC28065.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::RFC28065.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::fax5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::fax5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::file5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::file5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::ftp5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::ftp5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::gopher5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::gopher5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::http5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::http5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::news5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::news5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::pop5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::pop5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::prospero5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::prospero5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::tel5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::tel5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::telnet5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::telnet5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::tv5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::tv5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::wais5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::URI::wais5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::_support5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::_support5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::balanced5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::balanced5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::comment5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::comment5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::delimited5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::delimited5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::lingua5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::lingua5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::list5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::list5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::net5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::net5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::number5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::number5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::profanity5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::profanity5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::whitespace5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::whitespace5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::zip5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Regexp::Common::zip5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/SDBM_File5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/SDBM_File5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Base.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Client.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Core.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Delta.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Fs.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Ra.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Repos.3pm.gz
-r--r--r-- 1 root wheel 0 May 20 2009 /usr/share/man/man3/SVN::Wc.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Safe5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Safe5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Search::Dict5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Search::Dict5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/SelectSaver5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/SelectSaver5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/SelfLoader5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/SelfLoader5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Shell5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Shell5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Socket5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Socket5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Storable5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Storable5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Sub::Uplevel5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Sub::Uplevel5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Switch5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Switch5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Symbol5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Symbol5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Sys::Hostname5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Sys::Hostname5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Sys::Hostname::Long5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Sys::Hostname::Long5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Sys::Syslog5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Sys::Syslog5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::ANSIColor5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::ANSIColor5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::Cap5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::Cap5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::Complete5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::Complete5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Term::ReadKey5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Term::ReadKey5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::ReadLine5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::ReadLine5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::UI5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Term::UI::History5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Thread5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Thread5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Thread::Queue5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Thread::Queue5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Thread::Semaphore5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Thread::Semaphore5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Array5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Array5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::File5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::File5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Handle5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Handle5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Hash5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Hash5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Hash::NamedCapture5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Memoize5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Memoize5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::RefHash5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::RefHash5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Scalar5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::Scalar5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::StdHandle5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::SubstrHash5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Tie::SubstrHash5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Time::Epoch5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Time::Epoch5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::HiRes5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::HiRes5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::Local5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::Local5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::Piece5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Time::Progress5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Time::Progress5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::Seconds5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Time::Zone5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Time::Zone5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::gmtime5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::gmtime5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::localtime5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::localtime5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::tm5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Time::tm5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/UNIVERSAL5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/UNIVERSAL5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/UNIVERSAL::require5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/UNIVERSAL::require5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::Escape5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::Escape5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::Heuristic5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::Heuristic5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::QueryParam5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::QueryParam5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::Split5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::Split5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::URL5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::URL5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::WithBase5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::WithBase5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::data5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::data5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::file5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::file5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::ldap5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/URI::ldap5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Unicode::Collate5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Unicode::Collate5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Unicode::Normalize5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Unicode::Normalize5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Unicode::UCD5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/Unicode::UCD5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Unix::Syslog5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Unix::Syslog5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/User::grent5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/User::grent5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/User::pwent5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/User::pwent5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/WWW::RobotRules5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/WWW::RobotRules5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/WWW::RobotRules::AnyDBM_File5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/WWW::RobotRules::AnyDBM_File5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Win32::DBIODBC5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Win32::DBIODBC5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Api5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Api5.8.9.3pm.gz

Still too long...
Posted By: artie505 Re: du won't run? - 05/30/10 09:41 AM
Continuing /usr/share...

-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Demo5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Demo5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::DemoModules::wxDirPickerCtrl5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::DemoModules::wxDirPickerCtrl5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::DemoModules::wxFilePickerCtrl5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::DemoModules::wxFilePickerCtrl5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Perl::Carp5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Perl::Carp5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Perl::SplashFast5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Perl::SplashFast5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Perl::TextValidator5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Perl::TextValidator5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Socket5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Socket5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Thread5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::Thread5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::Node5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::Node5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::Parser5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::Parser5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::Typemap5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::Typemap5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::XSpp5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::XSP::XSpp5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::MakeMaker5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::MakeMaker5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::MakeMaker::Win32_MSVC5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::MakeMaker::Win32_MSVC5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::Options5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::Options5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::Utils5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/Wx::build::Utils5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Attr5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Attr5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Boolean5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Boolean5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::CDATASection5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::CDATASection5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Comment5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Comment5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Common5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Common5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::DOM5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::DOM5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Document5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Document5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::DocumentFragment5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::DocumentFragment5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Dtd5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Dtd5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Element5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Element5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::ErrNo5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::ErrNo5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Error5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Error5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::InputCallback5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::InputCallback5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Literal5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Literal5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Namespace5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Namespace5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Node5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Node5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::NodeList5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::NodeList5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Number5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Number5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::PI5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::PI5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Parser5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Parser5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Pattern5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Pattern5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Reader5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Reader5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::RelaxNG5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::RelaxNG5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::SAX5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::SAX5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::SAX::Builder5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::SAX::Builder5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::SAX::Generator5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::SAX::Generator5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Schema5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Schema5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Text5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::Text5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::XPathContext5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::XPathContext5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::XPathExpression5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::LibXML::XPathExpression5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::NamespaceSupport5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::NamespaceSupport5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Expat5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Expat5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Debug5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Debug5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Objects5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Objects5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Stream5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Stream5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Subs5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Subs5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Tree5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Parser::Style::Tree5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::Base5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::Base5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::DocumentLocator5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::DocumentLocator5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::Exception5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::Exception5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::Intro5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::Intro5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::ParserFactory5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::ParserFactory5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::PurePerl5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::PurePerl5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::PurePerl::Reader5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::SAX::PurePerl::Reader5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Simple5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Simple5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Simple::FAQ5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Simple::FAQ5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Writer5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::Writer5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Boolean5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Boolean5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Builder5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Builder5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Literal5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Literal5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Attribute5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Attribute5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Comment5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Comment5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Element5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Element5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Namespace5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Namespace5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::PI5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::PI5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Text5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Node::Text5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::NodeSet5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::NodeSet5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Number5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::Number5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::PerlSAX5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::PerlSAX5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::XMLParser5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/XML::XPath::XMLParser5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/XS::APItest5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/XS::APItest5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/XS::Typemap5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/XS::Typemap5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/XSLoader5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/XSLoader5.8.9.3pm.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/_rand48.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/asprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/asprintf_l.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/auth_destroy.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/authnone_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/authunix_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/authunix_create_default.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/autouse5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/autouse5.8.9.3pm.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/backtrace.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/backtrace_symbols.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/backtrace_symbols_fd.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/barrier.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/base5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/base5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/basename.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/bcmp.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/bcopy.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/bigint5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/bigint5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/bignum5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/bignum5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/bigrat5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/bigrat5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 Jun 23 2009 /usr/share/man/man3/bindresvport.3.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:42 /usr/share/man/man3/bio.3ssl.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_alloc.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_clear.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_decl.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_ffs.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_nclear.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_nset.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_set.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bit_test.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bitstr_size.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/bitstring.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/blib5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/blib5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:42 /usr/share/man/man3/blowfish.3ssl.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:42 /usr/share/man/man3/bn.3ssl.gz
-rw-r--r-- 1 root wheel 0 Nov 20 2009 /usr/share/man/man3/bn_internal.3ssl.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/bsd_signal.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/bsearch.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/bsearch_b.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/bstring.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/btowc.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/btowc_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/cache.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/calloc.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/callrpc.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetcap.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetclose.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetent.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetfirst.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetmatch.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetnext.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetnum.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetset.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetstr.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/cgetustr.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_broadcast.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_call.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_control.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_destroy.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_freeres.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_geterr.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_pcreateerror.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_perrno.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_perror.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_spcreateerror.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_sperrno.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnt_sperror.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clntraw_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clnttcp_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clntudp_bufcreate.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/clntudp_create.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/clock.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/closedir.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/closelog.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/directory.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/dirfd.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/dirname.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/drand48.3.gz
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/drem.3
com.apple.decmpfs 1
-rw-r--r-- 1 root wheel 0 Feb 11 07:42 /usr/share/man/man3/dsa.3ssl.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/duplocale.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/ecvt.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/erand48.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/err.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/err_set_exit.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/err_set_exit_b.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/err_set_file.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/errc.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/errx.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/ether_aton.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/ether_hostton.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/ether_line.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/ether_ntoa.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/ether_ntohost.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/ethers.3.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/evdns.3.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/event.3.gz
-rw-r--r-- 1 root wheel 0 Feb 11 07:42 /usr/share/man/man3/evp.3ssl.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/exec.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/execl.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/execle.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/execlp.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/execv.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/execvp.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fcvt.3.gz
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/fdim.3
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/fdimf.3
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/fdiml.3
com.apple.decmpfs 1
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fdopen.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fflagstostr.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fflush.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/ffs.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/ffsl.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/fgetc.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/fgetrune.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fgets.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fgetwc.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fgetwc_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/flockfile.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/fls.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/flsl.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fopen.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/forkpty.3.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_cursor.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_data.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_driver.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_attributes.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_buffer.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_info.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_just.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_new.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_opts.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_userptr.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_field_validation.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_fieldtype.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_hook.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_new.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_new_page.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_opts.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_page.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_post.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_requestname.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_userptr.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/form_win.3x.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/fparseln.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/fprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/fprintf_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fpurge.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/fputrune.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fputs.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fputwc.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fputwc_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fputws.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fputws_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fread.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/free.3.gz
-r--r--r-- 2 root wheel 0 Jun 23 2009 /usr/share/man/man3/freeifaddrs.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/freelocale.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/freopen.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fropen.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/fscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/fscanf_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/ftime.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/ftok.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/ftrylockfile.3.gz
-r--r--r-- 7 root wheel 0 Jul 14 2009 /usr/share/man/man3/fts.3.gz
-r--r--r-- 7 root wheel 0 Jul 14 2009 /usr/share/man/man3/fts_children.3.gz
-r--r--r-- 7 root wheel 0 Jul 14 2009 /usr/share/man/man3/fts_close.3.gz
-r--r--r-- 7 root wheel 0 Jul 14 2009 /usr/share/man/man3/fts_open.3.gz
-r--r--r-- 7 root wheel 0 Jul 14 2009 /usr/share/man/man3/fts_open_b.3.gz
-r--r--r-- 7 root wheel 0 Jul 14 2009 /usr/share/man/man3/fts_read.3.gz
-r--r--r-- 7 root wheel 0 Jul 14 2009 /usr/share/man/man3/fts_set.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/fungetrune.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/funlockfile.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/funopen.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/fwide.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/fwopen.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/fwprintf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/fwprintf_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/fwrite.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/fwscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/fwscanf_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/gcvt.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/get_myaddress.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getbsize.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/getc.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/getc_unlocked.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/getcap.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/getchar.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/getchar_unlocked.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/getcontext.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/getcwd.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getdate.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/getenv.3.gz
-r--r--r-- 1 root wheel 0 Jun 23 2009 /usr/share/man/man3/getgrouplist.3.gz
-r--r--r-- 2 root wheel 0 Jun 23 2009 /usr/share/man/man3/getifaddrs.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/getiopolicy_np.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/getlastlogx.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/getlastlogxbyname.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getmntinfo.3.gz
-r--r--r-- 1 root wheel 0 Jun 23 2009 /usr/share/man/man3/getnameinfo.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getopt.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/getopt_long.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/getopt_long_only.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getpagesize.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getpass.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getpeereid.3.gz
-r--r--r-- 1 root wheel 0 Jun 23 2009 /usr/share/man/man3/getrpcport.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/gets.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getsubopt.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/getutmp.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/getutmpx.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/getvfsbyname.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/getw.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/getwc.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/getwc_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/getwchar.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/getwchar_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/getwd.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/grantpt.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/group_from_gid.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/hash.3.gz
-rw-r--r-- 1 root wheel 0 Nov 20 2009 /usr/share/man/man3/hmac.3ssl.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/initstate.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/integer5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/integer5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/intro.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isalnum_l.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isalpha_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/isascii.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/isatty.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isblank_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/iscntrl.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iscntrl_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/isdigit.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isdigit_l.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isgraph_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/ishexnumber.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/ishexnumber_l.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isideogram_l.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/islower_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/isnumber.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isnumber_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/isphonogram.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isphonogram_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/isprint.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isprint_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/ispunct.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/ispunct_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/isrune.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isrune_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/isspace.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isspace_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/isspecial.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isspecial_l.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isupper_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswalnum.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswalnum_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswalpha.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswalpha_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswascii.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswblank.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswblank_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswcntrl.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswcntrl_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswctype.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswctype_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswdigit.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswdigit_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswgraph.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswgraph_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswhexnumber.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswhexnumber_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswideogram.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswideogram_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswlower.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswlower_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswnumber.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswnumber_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswphonogram.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswphonogram_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswprint.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswprint_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswpunct.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswpunct_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswrune.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswrune_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswspace.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswspace_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswspecial.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswspecial_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswupper.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswupper_l.3.gz
-r--r--r-- 19 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswxdigit.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/iswxdigit_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/isxdigit.3.gz
-r--r--r-- 18 root wheel 0 Jul 14 2009 /usr/share/man/man3/isxdigit_l.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/jrand48.3.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/key_defined.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/keybound.3x.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/keyok.3x.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/lcong48.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_abandon.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_add.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_bind.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_compare.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_controls.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_delete.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_error.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_extended_operation.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_first_attribute.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_first_entry.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_first_message.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_first_reference.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_get_dn.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_get_option.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_get_values.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_memory.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_modify.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_modrdn.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_open.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_parse_reference.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_parse_result.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_parse_sort_control.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_parse_vlv_control.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_rename.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_result.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_schema.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_search.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_sort.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_sync.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_tls.3.gz
-rw-r--r-- 1 root wheel 0 Jul 17 2009 /usr/share/man/man3/ldap_url.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/lfind.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/login.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/login_tty.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/logout.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/logwtmp.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/lrand48.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/lsearch.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/lutimes.3.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/lwpcook5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/lwpcook5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/lwptut5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/lwptut5.8.9.3pm.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_create_zone.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_default_zone.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_destroy_zone.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_good_size.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_size.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_zone_calloc.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_zone_free.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_zone_from_ptr.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_zone_malloc.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_zone_memalign.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_zone_realloc.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/malloc_zone_valloc.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/mrand48.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/mro5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/multibyte.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/nrand48.3.gz
-r--r--r--@ 1 root wheel 0 May 18 2009 /usr/share/man/man3/ns_get16.3
com.apple.decmpfs 1
-r--r--r--@ 1 root wheel 0 May 18 2009 /usr/share/man/man3/ns_get32.3
com.apple.decmpfs 1
-r--r--r--@ 1 root wheel 0 May 18 2009 /usr/share/man/man3/ns_put16.3
com.apple.decmpfs 1
-r--r--r--@ 1 root wheel 0 May 18 2009 /usr/share/man/man3/ns_put32.3
com.apple.decmpfs 1
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/open5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/open5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/opendev.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/opendir.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/openlog.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/openpty.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/ops5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/ops5.8.9.3pm.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_datalink_val_to_description.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_datalink_val_to_name.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_dispatch.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_dump_fopen.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_dump_open.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_fopen_offline.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_geterr.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_getnonblock.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_inject.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_loop.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_major_version.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_minor_version.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_next.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_next_ex.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_open_offline.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_perror.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_sendpacket.3pcap.gz
-rw-r--r-- 2 root wheel 0 May 18 2009 /usr/share/man/man3/pcap_setnonblock.3pcap.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/perror.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/pmap_getmaps.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/pmap_getport.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/pmap_rmtcall.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/pmap_set.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/pmap_unset.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/posix_openpt.3.gz
-r--r--r-- 3 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawn_file_actions_addclose.3.gz
-r--r--r-- 3 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawn_file_actions_adddup2.3.gz
-r--r--r-- 3 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawn_file_actions_addopen.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawn_file_actions_destroy.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawn_file_actions_init.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_destroy.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_getbinpref_np.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_getflags.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_getpgroup.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_getsigdefault.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_getsigmask.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_init.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_setbinpref_np.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_setexceptionports_np.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_setflags.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_setpgroup.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_setsigdefault.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_setsigmask.3.gz
-r--r--r-- 2 root wheel 0 Aug 1 2009 /usr/share/man/man3/posix_spawnattr_setspecialport_np.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/printf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/printf_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pselect.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/psignal.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/psort.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/psort_b.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/psort_r.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_atfork.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_destroy.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_getdetachstate.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_getinheritsched.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_getschedparam.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_getschedpolicy.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_getscope.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_getstackaddr.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_getstacksize.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_init.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_setdetachstate.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_setinheritsched.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_setschedparam.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_setschedpolicy.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_setscope.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_setstackaddr.3.gz
-r--r--r-- 17 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_attr_setstacksize.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cancel.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cleanup_pop.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cleanup_push.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cond_broadcast.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cond_destroy.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cond_init.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cond_signal.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cond_timedwait.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_cond_wait.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_condattr.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_condattr_destroy.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_condattr_init.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_create.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_detach.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_equal.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_exit.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_getschedparam.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_getspecific.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_join.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_key_create.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_key_delete.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutex_destroy.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutex_init.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutex_lock.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutex_trylock.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutex_unlock.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_destroy.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_getprioceiling.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_getprotocol.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_gettype.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_init.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_setprioceiling.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_setprotocol.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_mutexattr_settype.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_once.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlock_destroy.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlock_init.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlock_rdlock.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlock_tryrdlock.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlock_trywrlock.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlock_unlock.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlock_wrlock.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlockattr_destroy.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlockattr_getpshared.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlockattr_init.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_rwlockattr_setpshared.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_self.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_setcancelstate.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_setcanceltype.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_setschedparam.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_setspecific.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/pthread_testcancel.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/ptsname.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/putenv.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/puts.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/putwc.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/putwc_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/putwchar.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/putwchar_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/pwcache.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/radixsort.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/rand.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/rand48.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/rand_r.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/random.3.gz
-rw-r--r-- 1 root wheel 0 Nov 20 2009 /usr/share/man/man3/rc4.3ssl.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/re5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/re5.8.9.3pm.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/readdir.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/readdir_r.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/readpassphrase.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/realloc.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/reallocf.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/realpath.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/recno.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/regcomp.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/regerror.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/regex.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/regexec.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/regfree.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/regsterrpc.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/rewinddir.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/rindex.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/rpc.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/rpc_createerr.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/rune.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/scanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/scanf_l.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/seed48.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/seekdir.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/setcontext.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/setenv.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/setinvalidrune.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/setiopolicy_np.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/setlogmask.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/setrunelocale.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/setstate.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/sgetrune.3.gz

More to come...
Posted By: artie505 Re: du won't run? - 05/30/10 09:51 AM
Completing /usr/share and summing up...

-rw-r--r-- 1 root wheel 0 Nov 20 2009 /usr/share/man/man3/sha.3ssl.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/sl_add.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/sl_find.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/sl_free.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/sl_init.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/snprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/snprintf_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/sockatmark.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/sort5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/sort5.8.9.3pm.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/spinlock.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/sprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/sprintf_l.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/sputrune.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/sradixsort.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/srand.3.gz
-r--r--r-- 11 root wheel 0 Jul 14 2009 /usr/share/man/man3/srand48.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/sranddev.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/srandom.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/srandomdev.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/sscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/sscanf_l.3.gz
-rw-r--r-- 1 root wheel 0 Nov 20 2009 /usr/share/man/man3/ssl.3ssl.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/stdarg.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/stpcpy.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcasecmp.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcasecmp_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcasestr.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcasestr_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcat.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strchr.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcmp.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcoll.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcoll_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcpy.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strcspn.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strdup.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/strerror.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/strerror_r.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strfmon.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strfmon_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strftime.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strftime_l.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/strict5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/strict5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/string.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/stringlist.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strlcat.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strlcpy.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strlen.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strmode.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strncasecmp.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strncasecmp_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strncat.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strncmp.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strncpy.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strnstr.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strpbrk.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strptime.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strptime_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strrchr.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strsep.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strsignal.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/strspn.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strstr.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtod.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtod_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtof.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtof_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtofflags.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoimax.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoimax_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtok.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtok_r.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtol.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtol_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtold.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtold_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoll.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoll_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoq.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoq_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoul.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoul_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoull.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoull_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoumax.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtoumax_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtouq.3.gz
-r--r--r-- 8 root wheel 0 Jul 14 2009 /usr/share/man/man3/strtouq_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strxfrm.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/strxfrm_l.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/subs5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/subs5.8.9.3pm.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_destroy.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_fds.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_fdset.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_getargs.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_getcaller.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_getreg.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_getregset.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_register.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_run.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_sendreply.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svc_unregister.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcerr_auth.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcerr_decode.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcerr_noproc.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcerr_noprog.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcerr_progvers.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcerr_systemerr.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcerr_weakauth.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcfd_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcraw_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svctcp_create.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/svcudp_bufcreate.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/swab.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/swprintf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/swprintf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/swscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/swscanf_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/sys_cache_control.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/sys_dcache_flush.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/sys_errlist.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/sys_icache_invalidate.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/sys_nerr.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/sys_siglist.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/sys_signame.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/sysconf.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/sysctl.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/sysctlbyname.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/sysctlnametomib.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/sysexits.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/syslog.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/system.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/tdelete.3.gz
-r--r--r-- 9 root wheel 0 Jul 14 2009 /usr/share/man/man3/telldir.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/tfind.3.gz
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/tgamma.3
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/tgammaf.3
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/tgammal.3
com.apple.decmpfs 1
-rw-r--r-- 1 root wheel 0 Feb 11 07:42 /usr/share/man/man3/threads.3ssl.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/threads5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/threads5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/threads::shared5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/threads::shared5.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/time.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/towctrans.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/towctrans_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/tsearch.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/ttyname.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/ttyslot.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/twalk.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/tzset.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/tzsetwall.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/ualarm.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/ucontext.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/ulimit.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uname.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/ungetc.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/ungetwc.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/ungetwc_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/unlockpt.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/unsetenv.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uselocale.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/user_from_uid.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/usleep.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/utf85.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/utf85.8.9.3pm.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/utime.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/utmpxname.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_clear.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_compare.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_copy.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_generate.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_generate_random.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_generate_time.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_is_null.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_parse.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_unparse.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_unparse_lower.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/uuid_unparse_upper.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/va_arg.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/va_copy.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/va_end.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/va_start.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/valloc.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/vars5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/vars5.8.9.3pm.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vasprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vasprintf_l.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/verr.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/verrc.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/verrx.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/version5.10.0.3pm.gz
-r--r--r-- 1 root wheel 0 May 19 2009 /usr/share/man/man3/version5.8.9.3pm.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfprintf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfscanf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfwprintf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfwprintf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfwscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vfwscanf_l.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/vmsish5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/vmsish5.8.9.3pm.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vprintf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vscanf_l.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vsnprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vsnprintf_l.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vsprintf.3.gz
-r--r--r-- 10 root wheel 0 Jul 14 2009 /usr/share/man/man3/vsprintf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vsscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vsscanf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vswprintf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vswprintf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vswscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vswscanf_l.3.gz
-r--r--r-- 5 root wheel 0 Jul 14 2009 /usr/share/man/man3/vsyslog.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/vwarn.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/vwarnc.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/vwarnx.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vwprintf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vwprintf_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vwscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/vwscanf_l.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/warn.3.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/warnc.3.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/warnings5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/warnings5.8.9.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/warnings::register5.10.0.3pm.gz
-rw-r--r-- 1 root wheel 0 Jun 24 2009 /usr/share/man/man3/warnings::register5.8.9.3pm.gz
-r--r--r-- 15 root wheel 0 Jul 14 2009 /usr/share/man/man3/warnx.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcrtomb.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcrtomb_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcscoll.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcscoll_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsftime.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsftime_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsnrtombs.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsnrtombs_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsrtombs.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsrtombs_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstod.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstod_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstof.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstof_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoimax.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoimax_l.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstok.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstol.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstol_l.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstold.3.gz
-r--r--r-- 3 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstold_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoll.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoll_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstombs.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstombs_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoul.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoul_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoull.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoull_l.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoumax.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcstoumax_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcswidth.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcswidth_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsxfrm.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcsxfrm_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctob.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctob_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctomb.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctomb_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctrans.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctrans_l.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctype.3.gz
-r--r--r-- 4 root wheel 0 Jul 14 2009 /usr/share/man/man3/wctype_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcwidth.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wcwidth_l.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wordexp.3.gz
-r--r--r-- 2 root wheel 0 Jul 14 2009 /usr/share/man/man3/wordfree.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wprintf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wprintf_l.3.gz
-rw-r--r-- 1 root wheel 0 May 18 2009 /usr/share/man/man3/wresize.3x.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wscanf.3.gz
-r--r--r-- 6 root wheel 0 Jul 14 2009 /usr/share/man/man3/wscanf_l.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_accepted_reply.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_array.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_authunix_parms.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_bool.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_bytes.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_callhdr.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_callmsg.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_char.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_destroy.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_double.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_enum.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_float.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_free.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_getpos.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_inline.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_int.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_long.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_opaque.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_opaque_auth.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_pmap.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_pmaplist.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_pointer.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_reference.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_rejected_reply.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_replymsg.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_setpos.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_short.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_string.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_u_char.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_u_long.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_u_short.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_union.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_vector.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_void.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdr_wrapstring.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdrmem_create.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdrrec_create.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdrrec_endofrecord.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdrrec_eof.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdrrec_skiprecord.3.gz
-r--r--r-- 33 root wheel 0 Jun 23 2009 /usr/share/man/man3/xdrstdio_create.3.gz
-r--r--r-- 1 root wheel 0 Jul 14 2009 /usr/share/man/man3/xlocale.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xprt_register.3.gz
-r--r--r-- 64 root wheel 0 Jun 23 2009 /usr/share/man/man3/xprt_unregister.3.gz
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Casablanca
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Ceuta
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Conakry
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Dakar
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Dar_es_Salaam
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Djibouti
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Douala
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/El_Aaiun
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Freetown
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Gaborone
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Harare
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Johannesburg
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Kampala
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Khartoum
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Kigali
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Kinshasa
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Lagos
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Libreville
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Lome
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Luanda
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Lubumbashi
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Lusaka
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Malabo
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Maputo
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Maseru
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Mbabane
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Mogadishu
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Monrovia
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Nairobi
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Ndjamena
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Niamey
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Nouakchott
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Ouagadougou
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Porto-Novo
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Sao_Tome
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Tunis
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Africa/Windhoek
com.apple.decmpfs 1
-rw-r--r--@ 3 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Adak
com.apple.decmpfs 1
-rw-r--r--@ 2 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Anchorage
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Anguilla
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Antigua
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Araguaina
com.apple.decmpfs 1
-rw-r--r--@ 2 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Argentina/Jujuy
com.apple.decmpfs 1
-rw-r--r--@ 3 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Atka
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Inuvik
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Iqaluit
com.apple.decmpfs 1
-rw-r--r--@ 2 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Jujuy
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/America/Juneau
com.apple.decmpfs 1
-rw-r--r--@ 6 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Etc/UTC
com.apple.decmpfs 1
-rw-r--r--@ 6 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Etc/Universal
com.apple.decmpfs 1
-rw-r--r--@ 6 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Etc/Zulu
com.apple.decmpfs 1
-rw-r--r--@ 2 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Europe/Moscow
com.apple.decmpfs 1
-rw-r--r--@ 2 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/US/Alaska
com.apple.decmpfs 1
-rw-r--r--@ 3 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/US/Aleutian
com.apple.decmpfs 1
-rw-r--r--@ 6 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/UTC
com.apple.decmpfs 1
-rw-r--r--@ 6 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Universal
com.apple.decmpfs 1
-rw-r--r--@ 2 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/W-SU
com.apple.decmpfs 1
-rw-r--r--@ 1 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/WET
com.apple.decmpfs 1
-rw-r--r--@ 6 root wheel 0 Jun 23 2009 /usr/share/zoneinfo/Zulu
com.apple.decmpfs 1
find: fts_read: Cannot allocate memory
Arties-MacBook:~ artie$

(I just noticed that final entry
Code:
find: fts_read: Cannot allocate memory
Any idea what it's all about?)

Anyway... To make a long story short, I was able to get Pacifist 2.6.4 up and running with some help from Charles Srstka, and, after jumping through a coupl'a hoops, was able to reinstall /usr/bin and /usr/share with the exception of this one item
Code:
-rw-r--r--  1 root  wheel  0 Nov 20  2009 /usr/share/man/man3/bn_internal.3ssl.gz
which I couldn't locate and, so, left as-is (for better or for worse).

(I've retained a copy of the flawed volume in case it's needed for further research.)

Hmmm... This is only the second OS X bug I've ever tripped over (the first being OS X 10.2.3 eating my internal modem), and it's an esoteric one that leaves me wondering what percentage of Mac users will ever trip over it and whether any unanswered Snow Leopard mysteries have their answers buried somewhere in my Terminal output?
Posted By: artie505 Re: du won't run? - 05/30/10 04:35 PM
By the way... When I run your command on my 10.5.7 installation I get

Code:
Artie-s-Computer-4:~ artie$ find -f /bin /sbin /usr -type f -size -1c -not -path '*/groff/*' -exec ls -ldF@ {} +
find: /usr/share/wikid/help/en.lproj/wiki: Permission denied
Artie-s-Computer-4:~ artie$ sudo find -f /bin /sbin /usr -type f -size -1c -not -path '*/groff/*' -exec ls -ldF@ {} +
Password:
Artie-s-Computer-4:~ artie$ 

Posted By: Hal Itosis Re: du won't run? - 05/31/10 05:11 AM
Garsh. shocked

So, it looks like your problems were confined to /usr (or so we hope i guess), since nothing turned up inside either /bin or /sbin. And —out of almost 30,000 files in the /usr folder —you found 138 bad items in /usr/bin and 1803 in /usr/share. Okay, nice.

Comparing ls -ldF@ on your du versus mine, we see...
Code:
-r-xr-xr-x@ 1 root  wheel  0 Jul 14 2009 /usr/bin/du*
	com.apple.ResourceFork	13356 
	com.apple.decmpfs	1 

for yours, and...
Code:
-r-xr-xr-x  1 root  wheel  48432 Feb 11 17:26 /usr/bin/du*

for mine.

Apparently that com.apple.decmpfs extended attribute is part of Snowy's new file storage compression thingamajig (and we recall "com.apple.ResourceFork" from back in the day). So —if one were to guess —it looks like maybe those items got installed in a compressed state... and then got stuck that way[???] ::shrug:: idunno.




Originally Posted By: artie505
(I just noticed that final entry

find: fts_read: Cannot allocate memory

Any idea what it's all about?)

The -exec . . . {} + portion of the find command seems to have tripped over those results of yours (which add up to around 150 KB worth of pathnames to be processed. I'm not sure exactly where it breaks down normally (at 100K maybe?).

The safe way to prepare for a really large results list is to first write the output from find into a temp file... and then read (and/or pipe) that temp file into whatever command -exec was calling. [such techniques lend themselves more to an elaborate shell script, as opposed to just a simple "one-liner" posted in a forum for hasty troubleshooting attempts.

[another option perhaps is to use the old -exec . . . {} \; method,which usually runs slower, but that way doesn't produce nearly as "neat" an output (especially with ls) where all the columns line up properly, because it calls a separate (sub-shell) command for *each* found item.]
Posted By: artie505 Re: du won't run? - 05/31/10 05:23 AM
Originally Posted By: Hal Itosis
Originally Posted By: artie505
(I just noticed that final entry

find: fts_read: Cannot allocate memory

Any idea what it's all about?)

The -exec . . . {} + portion of the find command seems to have tripped over those results of yours (which add up to around 150 KB worth of pathnames to be processed. I'm not sure exactly where it breaks down (100K maybe?). The safe way to prepare for a really large results list is to first write the output from find into a temp file... and then read (and/or pipe) that temp file into whatever command -exec was calling.

I don't quite follow that; does it mean that there's more that wasn't listed?
Posted By: Hal Itosis Re: du won't run? - 05/31/10 05:55 AM
Originally Posted By: artie505
I don't quite follow that; does it mean that there's more that wasn't listed?

Maybe. [i don't quite know if there is always a "definitive" answer there, but it's possible (i would think).]

Try it the other way, using {} \; instead of {} +

Or, just direct the output to a file maybe:

find /usr -type f -size -1c -not -path '*/groff/*' > ~/Desktop/results.txt

There we skip the ls part and just look at raw pathnames only (since we trust the search parameters now, and we've seen the listing already).

Then you can count the lines in that file:

wc -l ~/Desktop/results.txt

If that adds up to more than 138 +1803 (or 1941), then yeah... something got dropped.

--

EDIT: of course we could be real lazy and just do this right in Terminal:

find /usr -type f -size -1c -not -path '*/groff/*' |wc -l

But -- if that doesn't match what happened before -- you'll want that results.txt file anyway.
Posted By: Hal Itosis Re: du won't run? - 05/31/10 06:16 AM
BTW, it occurs to me that —while the partial path '*/groff/*' was a convenient point for me to filter out those files which normally are zero bytes —it is probably too high up in that hierarchy. I.e., there may be *other* stuff inside groff which was not supposed to be zero (and —if such was you case —then those too got skipped).

IOW, this (original):

find /usr -type f -size -1c -not -path
'*/groff/*'

should be replaced by this:

find /usr -type f -size -1c -not -path '*/mm/*locale'

for a more accurate results list.
Posted By: CharlesS Re: du won't run? - 05/31/10 03:48 PM
Those may still turn up false positives if other files show up that have a legitimate reason to be zero-length, which can happen, particularly in /usr/local where you don't know what third-party software might have been installed. In addition, if you want to scan for other damaged files outside /usr (which you want to do — although the damage usually seems to be in /usr, it's not yet proven that this will always be the case, and the entire file system is full of these HFS+ compressed files), it will turn up a lot of false positives, since every resource fork file, alias, .webloc file, etc. is going to appear as having a size-0 data fork and extended attributes. What you want to be doing is to specifically test for the com.apple.decmpfs attribute, which will only appear if the file is damaged (for a normal HFS+ compressed file, both com.apple.decmpfs and the resource fork are hidden to the normal interface).

I have written a tool in C to scan for HFS+ damaged files. I'm using it to scan affected people's machines and send the results to Apple, in the hope that they will figure out the issue and fix it. Because this tool is written in C, it will be much faster than the shell, and in addition it will not be dependent on any shell tools which could conceivably be damaged. You can run it with no options to do a scan of the entire hard drive, or send a path as an argument to have it only scan that particular path (but be aware that supplying a path which is not the root to an HFS+ volume will result in a much slower type of search being used). There is also an optional --hidePermissionWarnings flag that you can use to suppress the "Permission Denied" errors and avoid running as root.

Here is the URL.

http://www.charlessoft.com/find_sl_damaged_files.zip
Posted By: Hal Itosis Re: du won't run? - 06/01/10 01:28 AM
Excellent!
Posted By: artie505 Re: du won't run? - 06/01/10 05:04 AM
> If that adds up to more than 138 +1803 (or 1941), then yeah... something got dropped.

Code:
Artie's-MacBook:~ artie$ find /usr -type f -size -1c -not -path '*/groff/*' |wc -l
    1941
Artie's-MacBook:~ artie$ 
Posted By: artie505 Re: du won't run? - 06/01/10 05:33 AM
Quote:
IOW, this (original): [...] should be replaced by this:

find /usr -type f -size -1c -not -path '*/mm/*locale'

for a more accurate results list.

Code:
Arties-MacBook:~ artie$ find /usr -type f -size -1c -not -path '*/mm/*locale'
/usr/share/man/man3/bn_internal.3ssl.gz
Arties-MacBook:~ artie$

Same file as I mentioned at the very bottom of this post; I couldn't locate it with Pacifist and have no idea what it may be. (I Googled it but didn't get a single hit that wasn't incomprehensible to me.)
Posted By: Hal Itosis Re: du won't run? - 06/01/10 06:28 AM
Originally Posted By: artie505
> If that adds up to more than 138 +1803 (or 1941), then yeah... something got dropped.

Code:
Artie's-MacBook:~ artie$ find /usr -type f -size -1c -not -path '*/groff/*' |wc -l
    1941  

smile

It may be then that the "memory alloc" message is simply to alert the operator that more than one call to the -exec utility was needed. I.e., it manages to process everything... but just alerts the operator that it wasn't all done within a single call. That could be important if -exec was calling du (ironically), because then the "total" at the end would be incorrect... and the user would need to scroll back and find where any previous du totals got printed out, and then add all the totals. . . for example.

Just to clarify a bit (hopefully):

the -exec utility {} +  syntax attempts to process all results simultaneously into a single "utility" call (i.e., xargs emulation).

the -exec utility {} \; syntax simply calls a separate instance of "utility" for each and every found item, one at a time.

So while the former might produce output equivalent to:

ls -ldF@ file1 file2 file3 file4

...the latter does this:

ls -ldF@ file1
ls -ldF@ file2
ls -ldF@ file3
ls -ldF@ file4

Obviously when it come to multiple arguments, there may be a limit as to how long the arg list can be. [but it is far more efficient than making multiple calls, and thus much faster as well as producing nicer output in almost every case.]



Originally Posted By: artie505
Same file as I mentioned at the very bottom of this post; I couldn't locate it with Pacifist and have no idea what it may be. (I Googled it but didn't get a single hit that wasn't incomprehensible to me.)

Well, it's just something to do with a "man page" anyway... so, it won't affect operation in the least (unless you try to read that page someday. No biggie, fortunately).

BTW, i ran Charles' scan tool on my MPB (two OS partitions). Nary a peep here.
Posted By: CharlesS Re: du won't run? - 06/02/10 06:22 PM
Originally Posted By: Hal Itosis
It may be then that the "memory alloc" message is simply to alert the operator that more than one call to the -exec utility was needed. I.e., it manages to process everything... but just alerts the operator that it wasn't all done within a single call.

Nope, it means exactly what it says: fts_read ran out of memory when trying to read a directory. My guess is that you've either got a really big directory somewhere on the disk, or that the disk is nearly full and there isn't much VM space.
Posted By: Hal Itosis Re: du won't run? - 06/03/10 04:08 AM
Originally Posted By: CharlesS
Originally Posted By: Hal Itosis
It may be then that the "memory alloc" message is simply to alert the operator that more than one call to the -exec utility was needed. I.e., it manages to process everything... but just alerts the operator that it wasn't all done within a single call.

Nope, it means exactly what it says: fts_read ran out of memory when trying to read a directory. My guess is that you've either got a really big directory somewhere on the disk, or that the disk is nearly full and there isn't much VM space.

No guess needed... man3 is well-known for its size.

But —pray tell —what are the useful consequences of “means exactly what it says” then?

And why doesn't that same message appear when running the same find command on the same hierarchy and only swapping {} \; for {} + ?

And BTW, i never said it didn't 'mean what it says'... so when you reply with "nope", it sounds as if you're disagreeing with something, but you: a) misrepresented (or misunderstood) what I was saying in the first place... and b) offered no alternative of your own which explains why both methods produce the same answer.

I was trying to explain what that message actually meant in terms of what happened. I.e., the command's activity within the filesystem, and the results we got. Though I admit my conclusion was based on some speculation, you have yet to prove anything I said was actually wrong, and/or offer any "right" answer.

I.e., if something ran out of memory, then why/how does it produce the same results as other methods which didn't run out of memory? So far, my explanation makes sense... and you haven't even provided one which might be worthy of either debate or agreement.

/posted from my iPad.
Posted By: CharlesS Re: du won't run? - 06/04/10 03:00 PM
fts_read is a function that iterates through a directory. "Cannot allocate memory" is error 12, ENOMEM. If you're getting that, it usually means malloc is failing to allocate memory for a variable somewhere. I suppose there's a small possibility that the paths could be using up all the memory available to the process, but since 150 KB is hardly anything, I doubt that. It could be that it's trying to fork a process with too much VM space, but the fork seems to be succeeding since the ls program is actually getting run. The argument list could be too long, except that it isn't — ARG_MAX is 262144 bytes (256 KiB), which is longer than 150 KB.

There's clearly something wrong, though, since I'm getting the same error on my machine, and my list of zero-files in /usr, /bin, and /sbin is only 2924 bytes long. There's nothing too long about that list of arguments at all, and I can even copy and paste the list straight into ls -l@ at the shell, and it works fine. But the find command does not.

Something's returning ENOMEM in the code, which most likely means that something is using up the process's available memory. Or it could be a bug in the code. Who knows. If you really want to make the find command run faster by consolidating arguments, the best way to do it is probably just to pipe to xargs. That way, you'll get the additional benefit that if the argument list does get longer than ARG_MAX, it'll split it up for you without running the command once for each line.

find <path> <search criteria> | xargs ls -l@
Posted By: Virtual1 Re: du won't run? - 06/04/10 09:26 PM
recursion maybe? symbolic links? directory damage causing physical recursion?
Posted By: CharlesS Re: du won't run? - 06/05/10 03:46 AM
Beats me, but it's definitely not the file list being too long. I just created a folder with 5,923 files in it, all with long names. The total length of the file list is 276,718 bytes, but having find iterate them all and pass them to ls -l@ {} + does not result in the ENOMEM error. It does split the list up and launches the ls program several times, though, so this would actually be a decent substitute for xargs if it worked right, if less efficient (xargs launches the ls program twice for my test folder, whereas find -exec + launches it four times). This also means that the file list can't end up exceeding ARG_MAX, though. It's something else.
Posted By: Hal Itosis Re: du won't run? - 06/05/10 07:07 AM
Originally Posted By: CharlesS
I suppose there's a small possibility that the paths could be using up all the memory available to the process, but since 150 KB is hardly anything, I doubt that. It could be that it's trying to fork a process with too much VM space, but the fork seems to be succeeding since the ls program is actually getting run. The argument list could be too long, except that it isn't — ARG_MAX is 262144 bytes (256 KiB), which is longer than 150 KB.

Well, 256 is only slightly more than 150... if say perhaps (just speculating) it needed two copies of the data: one to buffer the input it's reading, and another to store the output it's constructing (be it ASCII-betical sorting or column-width calculating, etc.), then 150 x 2 = 300. [at this point i presume my "alert the operator" guess was probably incorrect... just pointing out that it wasn't necessarily totally ridiculous either, since (so far) there doesn't seem to be an actual memory error.]


Originally Posted By: CharlesS
If you really want to make the find command run faster by consolidating arguments, the best way to do it is probably just to pipe to xargs. That way, you'll get the additional benefit that if the argument list does get longer than ARG_MAX, it'll split it up for you without running the command once for each line.

find <path> <search criteria> | xargs ls -l@

Reading those statements, it seems apparent you were not yet aware of find's new {} + syntax (if Leopard 10.5.0 can still be called "new" that is), which i briefly mentioned earlier in this very thread. Its express intent is to emulate xargs. And —in some of the measurements i've taken on occasion, since Fall 2007 —it actually surpasses xargs (...not by much mind you, but still impressive).

Here are some timed runs (please note how the arg list for du does get exceeded, as evidenced by multiple "total" lines in the output):

time du -sh /usr
544M /usr

real 0m0.154s
user 0m0.024s
sys 0m0.130s



time find /usr -type f -print0 |xargs -0 du -sc |grep $'\ttotal' |
awk 'siz+=$1 END { print siz/2000, "megabytes" }'

566704 total
155432 total
119456 total
32144 total
101280 total
96488 total
19928 total
545.716 megabytes

real 0m0.293s
user 0m0.079s
sys 0m0.248s



time find /usr -type f -exec du -sc {} + |grep $'\ttotal' |
awk 'siz+=$1 END { print siz/2000, "megabytes" }'

537488 total
61696 total
97040 total
62248 total
73424 total
23528 total
22960 total
20784 total
105616 total
46936 total
40480 total
546.1 megabytes

real 0m0.285s
user 0m0.062s
sys 0m0.234s

^ Note there that the newer find syntax actually beat xargs by a whisker, despite it having used up 4 additional calls to du. (11 versus 7) shocked


By way of comparison, the old find syntax is glacially slow and abysmally inefficient (calling du for every single hit):

time find /usr -type f -exec du -sc {} \; |grep $'\ttotal' |
awk 'siz+=$1 END { print siz/2000, "megabytes" }'

48 total
240 total
152 total
0 total
48 total
:
: # 29,394 lines with a "total" (on my system)
:
8 total
8 total
176 total
8 total
554.184 megabytes

real 0m39.716s
user 0m8.726s
sys 0m28.341s

Interestingly enough, using a Finder Get Info window to measure /usr claims a calculated 1.22 GB on disk. (an error due to multi-linked files in /usr perhaps... or did they simply forget that "one block" != 1K ?)



Originally Posted By: CharlesS
There's clearly something wrong, though, since I'm getting the same error on my machine, and my list of zero-files in /usr, /bin, and /sbin is only 2924 bytes long. There's nothing too long about that list of arguments at all, and I can even copy and paste the list straight into ls -l@ at the shell, and it works fine. But the find command does not.

Something's returning ENOMEM in the code, which most likely means that something is using up the process's available memory. Or it could be a bug in the code. Who knows.

I don't know either, but I vote bug... and i think this particular sequence illustrates that possibility rather nicely (and/or contains a useful clue perhaps):

find /usr -type d -exec stat -f '%N' {} + |wc -l
   1509

find /usr -type f -exec stat -f '%N' {} + |wc -l
   29394

find /usr -type l -exec stat -f '%N' {} + |wc -l
find: fts_read: Cannot allocate memory
   3054

Now why would 3,000 symlinks cause a problem, when -exec stat previously processed nearly 30,000 files without blinking? confused

Here are three alternative methods of counting links:

find /usr -type l -exec stat -f '%N' {} \; |wc -l
   3054

find /usr -type l -print0 |xargs -0 stat -f '%N' |wc -l
   3054

find /usr -type l |wc -l
   3054


So it seems the "error" (in this case) shows up only when that newer find syntax encounters some particular condition (as yet unknown). Note that: it is the *message itself* which seems to be the actual error here, as 3054 is indeed the correct answer.

But it seems to turn up in other situations as well:



Originally Posted By: CharlesS
Beats me, but it's definitely not the file list being too long.

Having studied it further, i'll have to agree with you. But at the time, it didn't seem like the worst guess in the world. In a similar vein, i have some doubts about "means exactly what it says" at this juncture as well.
Posted By: Hal Itosis Re: du won't run? - 06/05/10 12:23 PM
Two other crazy clues:

If we start here with this error...
Originally Posted By: Hal Itosis
find /usr -type l -exec stat -f '%N' {} + |wc -l
find: fts_read: Cannot allocate memory
   3054
..and then walk down the hierarchy, it turns out that (unsurprisingly) man3 must be within the encompassing path for the error to happen:

find /usr/share/man/man3 -type l -exec ls -d {} + |wc

find: fts_read: Cannot allocate memory
   1335   1335   58596

(i used ls instead of stat there, but... same difference).

Now watch this: take out the -type l parameter, and poof: no more error...

find /usr/share/man/man3 -exec ls -d {} + |wc

   6803   6804   285957

...despite the large amount of data (almost 286K worth of pathnames, involving three calls to ls as opposed to one).



Another odd couple, this time using the -size primary:

find /usr/share/man/man3 -size -24c -exec ls -d {} + |wc

   842   843   30658

find /usr/share/man/man3 -size -25c -exec ls -d {} + |wc

find: fts_read: Cannot allocate memory
   919   920   33604

Looks like the character count (of the pathname data) crosses the 32K boundary there... but i'm not sure if that was the tipping point or just coincidence.

I think the authors of find and fts need to meet each other. smile
Posted By: artie505 Re: du won't run? - 06/05/10 12:59 PM
Talk about a thread evolving!
Posted By: CharlesS Re: du won't run? - 06/05/10 04:35 PM
Originally Posted By: Hal Itosis
Well, 256 is only slightly more than 150...

If by "slightly" we mean "almost double," then you're right.

Quote:
if say perhaps (just speculating) it needed two copies of the data: one to buffer the input it's reading, and another to store the output it's constructing (be it ASCII-betical sorting or column-width calculating, etc.), then 150 x 2 = 300. [at this point i presume my "alert the operator" guess was probably incorrect... just pointing out that it wasn't necessarily totally ridiculous either, since (so far) there doesn't seem to be an actual memory error.]

But since it's already been established that -exec + is cutting off and starting a new command line every 128 KiB or so, similar to xargs, that's clearly not the issue.

If this were designed to "alert the operator", then it would simply give an error such as "argument list too long" or something actually appropriate. This is not the case.


Quote:
Reading those statements, it seems apparent you were not yet aware of find's new {} + syntax (if Leopard 10.5.0 can still be called "new" that is), which i briefly mentioned earlier in this very thread. Its express intent is to emulate xargs. And —in some of the measurements i've taken on occasion, since Fall 2007 —it actually surpasses xargs (...not by much mind you, but still impressive).

Instead of posting snotty comments like this, you could just think about it and realize the problem with -exec + is that it evidently DOESN'T WORK RIGHT, whereas xargs does. Given the choice between taking a fraction of a second longer and actually working versus failing slightly faster, I'd go with the one that works (and if speed is what you're after, why are you using the shell anyway?).

And since -exec + cuts off the command line at around 128 KiB whereas xargs cuts off at 256 KiB, if the command line you're running takes a non-trivial time to execute, you might make back that 0.15 seconds anyway. I'd use xargs for now, until they fix find.

You were suggesting to use ; instead of + to work around this error, which would of course be quite a bit slower. I pointed out that xargs is a better solution for this case. Chill.
Quote:
bunch of fiddling with command line switches to attempt to isolate the issue

I've actually issued the same command line multiple times, and gotten failures sometimes and not others. At this point, I think that there is probably a random element involved, depending on the state of memory at the time the code is run (which is often the case with memory-related issues), and thus the only really effective way to troubleshoot it would be to go through the source code to the find tool itself with a debugger and a fine-toothed comb. If the bug could be isolated, then it could even be reported to Apple, along with a patch to fix the issue. This would be a legitimate thing to investigate; however, I'm losing interest in this. I posted in this thread because artie505 asked for help; I did so by posting a C-based tool which should scan for HFS+ damaged files significantly faster and more accurately than using the find tool, as well as being more reliable due to the lack of reliance on possibly damaged shell tools. However, I'm starting to think it was a mistake to come here. If the thread's going to be about defending your "This error was designed to inform the operator about something that the tool automatically takes care of anyway, by reporting a completely different error" statement ad nauseum, then I'm out.
Posted By: Hal Itosis Re: du won't run? - 06/06/10 04:20 PM
Originally Posted By: CharlesS
But since it's already been established that -exec + is cutting off and starting a new command line every 128 KiB or so, similar to xargs, that's clearly not the issue.

Hold on a second... “128 KiB or so” now is it? Earlier you used 256 as some official size, in the midst of dismissing my comment about 150K as being above the threshold. And now we're saying that 128 is what's “already been established” ? smile

As far as “that's clearly not the issue” goes, didn't you see what i wrote above??? Here... i'll repeat a line from my previous reply, in 11 point size:
Originally Posted By: Hal Itosis
at this point i presume my "alert the operator" guess was probably incorrect.
So why are you getting all worked up over something i've already withdrawn? confused



Originally Posted By: CharlesS
If this were designed to "alert the operator", then it would simply give an error such as "argument list too long" or something actually appropriate. This is not the case.

Yep... but since i conceded that point already (twice in fact), your purpose in rehashing it is truly mysterious.



Originally Posted By: CharlesS
Instead of posting snotty comments like this, you could just think about it and realize the problem with -exec + is that it evidently DOESN'T WORK RIGHT, whereas xargs does. Given the choice between taking a fraction of a second longer and actually working versus failing slightly faster, I'd go with the one that works

>> snotty
Which part was snotty??? Seems like we're just trading shots here, whenever the other makes a slip.

>> DOESN'T WORK RIGHT
>> failing

Well, every example so far produces the right answer (despite the odd error message). Anyway, I totally followed the reasoning behind xargs being a worthy alternative. (in fact, xargs was long one of my favorite tools, and still is... so you're preaching to the choir there). My only objection was the way you initially worded the case for xargs, as it contained false (or misguided) reasoning. Now that you've revised the wording, i no longer object.

BTW (to all concerned), this "fts_read: Cannot allocate memory" error is apparently something new in Snow Leopard. I've never seen it in Leopard (and i use find a lot in my shell scripts, as well as on the command line).



Originally Posted By: CharlesS
At this point, I think that there is probably a random element involved, depending on the state of memory at the time the code is run (which is often the case with memory-related issues), -- I've actually issued the same command line multiple times, and gotten failures sometimes and not others.

Interesting... that i have not seen, after hours of tinkering. So —if you can post a particular command which will behave that way —please do, as i would find that clue quite compelling.



Originally Posted By: CharlesS
I posted in this thread because artie505 asked for help; I did so by posting a C-based tool which should scan for HFS+ damaged files significantly faster and more accurately than using the find tool, as well as being more reliable due to the lack of reliance on possibly damaged shell tools.

Understood and already acknowledged. I replied simply with an enthusiastic "Excellent!" — despite the fact that your post was couched with (subtle) criticisms of my efforts. I.e., yes, i already knew that IF we were to search other areas, then resource-fork-only items would produce false hits. But we weren't asked to search other areas... so the need for such a system-wide tool wasn't a consideration at the time. BTW, why is your binary so big? 50K seems huge for something doing such a basic task. Care to post the source?



Originally Posted By: CharlesS
However, I'm starting to think it was a mistake to come here. If the thread's going to be about defending your "This error was designed to inform the operator about something that the tool automatically takes care of anyway, by reporting a completely different error" statement ad nauseum, then I'm out.

Begging your pardon, but you have mischaracterized the matter entirely.
  • First off, my statement was never an assertion. You claim i said "was designed" -- but if you go back and read what i actually wrote, you'll see the phrase was "may be". So it never was anything to be defended. Your "mistake" was to dismiss it in such an offhanded manner, and then not supply anything useful to replace it which fit into the facts already seen: that there was no error in terms of items found. So you're the one who started the "nausea" here.

  • Second, twice now you have ignored what i wrote... so here is part 2 (in a large font size for easy reading):
    Originally Posted By: Hal Itosis
    Having studied it further, i'll have to agree with you.
    See that? It's from my previous reply. I.e., i dropped that theory twice (using plain English), but twice now you have picked it back up again.
Thus: a) you started it, and b) you have pursued it (without reason). My subsequent posts have been engaged in studying that fts error, not "defending" anything.


What hath Artie wrought this time?
Posted By: CharlesS Re: du won't run? - 06/06/10 07:32 PM
I'm not going to do this, sorry. I'll only answer the one question that contained actual technical content:

Originally Posted By: Hal Itosis
Originally Posted By: CharlesS
But since it's already been established that -exec + is cutting off and starting a new command line every 128 KiB or so, similar to xargs, that's clearly not the issue.

Hold on a second... “128 KiB or so” now is it? Earlier you used 256 as some official size, in the midst of dismissing my comment about 150K as being above the threshold. And now we're saying that 128 is what's “already been established” ? smile

The "some official size" is ARG_MAX, which is 256 * 1024 bytes, or 256 KiB. It is well-known, and documented in /usr/include/sys/syslimits.h. If you don't have the developer tools installed, you can also use the sysctl tool to look it up. The xargs tool cuts off at ARG_MAX. -exec + seems to be cutting off at half that, hence 128 KiB, causing twice as many command lines to be executed. In neither case is the command line length able to exceed ARG_MAX.

By the way, I went through the source code to the find tool with a debugger, found the problem, and I think I've fixed it. As expected, it had nothing to do with the inputs given to the program except to the extent that random chance affected the code paths. The issue was that errno was being checked at the wrong time, thus causing spurious errors to be logged. This is a problem, though, because the code is bailing out as soon as it encounters the false error.

Oh, and it's been in there since Leopard. You probably just haven't noticed it because the conditions weren't just right to cause it.

Here is a build I made of the tool which should (hopefully) solve the issue. A patch has been sent to Apple, so if they accept the patch, then this might be fixed in some future version of OS X.

http://www.charlessoft.com/fixed_find.zip

P.S. The reason the tool is 50 KB is because it is a 64-bit universal binary, and thus contains three binaries — one for x86_64, one for i386, and one for ppc. 50 KB is not large, by the way — even Hello World is 37.2 KB if you compile it as a tri-binary.
Posted By: MacManiac Re: du won't run? - 06/07/10 03:39 AM
Charles,

Thank you for your continued participation. We all know how valuable your time is and when you choose to invest it here everyone benefits greatly.

I think it's ironic and insightful that through this thread we were able to discover / correct a bug in the source code which runs behind the scenes in Snow Leopard & Leopard. I hope that Apple gives credit when they incorporate the fix.
Posted By: Hal Itosis Re: du won't run? - 06/08/10 08:27 AM
Originally Posted By: CharlesS
The "some official size" is ARG_MAX, which is 256 * 1024 bytes, or 256 KiB. It is well-known, and documented in /usr/include/sys/syslimits.h. If you don't have the developer tools installed, you can also use the sysctl tool to look it up.

And/or getconf(1) too:

$ getconf ARG_MAX
262144



Originally Posted By: CharlesS
The xargs tool cuts off at ARG_MAX. -exec + seems to be cutting off at half that, hence 128 KiB, causing twice as many command lines to be executed. In neither case is the command line length able to exceed ARG_MAX.

The bit that caused me to smile back there was where you said 128 KiB had "already been established" —yet, that was the very first mention of "128" in this thread.


Originally Posted By: CharlesS
By the way, I went through the source code to the find tool with a debugger, found the problem, and I think I've fixed it. As expected, it had nothing to do with the inputs given to the program except to the extent that random chance affected the code paths. The issue was that errno was being checked at the wrong time, thus causing spurious errors to be logged. This is a problem, though, because the code is bailing out as soon as it encounters the false error.

Oh, and it's been in there since Leopard. You probably just haven't noticed it because the conditions weren't just right to cause it.

Here is a build I made of the tool which should (hopefully) solve the issue. A patch has been sent to Apple, so if they accept the patch, then this might be fixed in some future version of OS X.

http://www.charlessoft.com/fixed_find.zip

Outstanding. It seems to work properly. (thanks)
I take no credit for your passionate perseverance. wink
Posted By: CharlesS Re: du won't run? - 06/08/10 01:46 PM
Originally Posted By: Hal Itosis
Originally Posted By: CharlesS
The xargs tool cuts off at ARG_MAX. -exec + seems to be cutting off at half that, hence 128 KiB, causing twice as many command lines to be executed. In neither case is the command line length able to exceed ARG_MAX.

The bit that caused me to smile back there was where you said 128 KiB had "already been established" —yet, that was the very first mention of "128" in this thread.

It had already been established that it was cutting off earlier than xargs, which was the point. Since it generated about twice as many command lines when run on a large number of files with approximately equal lengths, it implied it was cutting off at about half the limit. 256 / 2 == 128. A little bit of testing seemed to support this. Sorry if I wasn't clear.

If you want, you can easily verify that. Just create a small program (or script, that works too) that logs the length of the argument list it's given, and have find pass its arguments to it. When I did it, they all ended up coming in slightly around 131072, or 128 KiB. I don't actually know if it's a hard limit or not (maybe not, since some seem to go slightly over 131072 when the null byte at the end of each string is taken into account), but they all seem to hover around that value. I'd have to look at the code to see what exactly it's doing, but I don't have time, and it really doesn't matter much anyway.

Anyway, I think this thread has served its purpose, so I'm done here.
Posted By: Hal Itosis Re: du won't run? - 06/27/10 04:36 PM
As an addendum here, i have encountered a thread where a user's Terminal doesn't startup... and the window's titlebar indicates it's stuck on the login command. That particular thread hasn't played out as yet, but i can certainly envision a situation wherein the file /usr/bin/login itself is one of the corrupted items... which will render Terminal.app unusable.

In such cases, one could employ AppleScript Editor (until a self-contained app comes along):

do shell script "/full/path/to/find_sl_damaged_files > ~/Desktop/report.txt"

...where the user will need to supply the proper "/full/path/to" part.


EDIT: hmm, or perhaps Terminal's "New Command..." menu item would still be workable (without a login shell).
Posted By: Virtual1 Re: du won't run? - 06/28/10 03:27 AM
if login was broken I would expect anything that used the shell, including applescript events, not to work. anything that had to login anyway.

Posted By: Hal Itosis Re: du won't run? - 06/28/10 06:11 AM
Not all shells are "login" shells (or interactive for that matter), but idunno.
Perhaps we can get Artie to rebork his files and try it. wink Or heck...
we can just remove the -x bits* from /usr/bin/login and test it out.

Maybe later. (or will you do the honors now?... i see you're up late too).


EDIT: *yikes... that might require DURP to fix if you're right. Perhaps it's better to just move /usr/bin/login somewhere, as that would be easier to "undo". laugh

--

Rats... i don't know how anything works. I just moved /usr/bin/login to my desktop and Terminal launches same as ever.

Proof:

$ type -a login
-bash: type: login: not found

I don't get it... if there's an alternate (builtin), why doesn't type -a list it?
Does the /bin/bash binary contain its own "internal" login perhaps? ::shrug::
[i guess we can agree if /bin/*sh were all corrupt, then it would be pretty hopeless]

Night-night.
Posted By: artie505 Re: du won't run? - 06/28/10 07:35 AM
Originally Posted By: Hal Itosis
Perhaps we can get Artie to rebork his files and try it. wink

One of the fascinating things about this issue is that there's no consistency to which files wind up borked after a clone; sometimes it's a handful, sometimes a bushel basket (Almost invariably, different files are borked after each clone.), and sometimes everything comes out as expected.

The bug in the applicable rsync code remains under investigation.
© FineTunedMac