An open community 
of Macintosh users,
for Macintosh users.

FineTunedMac Dashboard widget now available! Download Here

Previous Thread
Next Thread
Print Thread
Page 1 of 2 1 2
du won't run?
#10160 05/26/10 10:17 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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?


The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10164 05/26/10 11:08 AM
Joined: Aug 2009
Likes: 7
Online

Joined: Aug 2009
Likes: 7
It seems to work for me. I get:

9.1G /Applications
5.8G /Library
0B /Network
2.3G /System
30G /Users


Jon

macOS 11.7.10, iMac Retina 5K 27-inch, late 2014, 3.5 GHz Intel Core i5, 1 TB fusion drive, 16 GB RAM, Epson SureColor P600, Photoshop CC, Lightroom CC, MS Office 365
Re: du won't run?
jchuzi #10170 05/26/10 05:07 PM
Joined: Aug 2009
Likes: 3
Moderator
Online
Moderator

Joined: Aug 2009
Likes: 3

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.



dkmarsh—member, FineTunedMac Co-op Board of Directors
Re: du won't run?
artie505 #10174 05/26/10 07:24 PM
Joined: Aug 2009
Offline

Joined: Aug 2009
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.


I work for the Department of Redundancy Department
Re: du won't run?
Virtual1 #10178 05/26/10 08:08 PM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
> 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...


The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10180 05/27/10 06:01 AM
Joined: Sep 2009
Offline

Joined: Sep 2009
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

Last edited by Hal Itosis; 05/27/10 02:58 PM. Reason: LINKY LINKY
Re: du won't run?
artie505 #10181 05/27/10 07:07 AM
Joined: Sep 2009
Offline

Joined: Sep 2009
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

Last edited by Hal Itosis; 05/27/10 07:10 AM.
Re: du won't run?
artie505 #10193 05/27/10 03:08 PM
Joined: Aug 2009
Offline

Joined: Aug 2009
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.


I work for the Department of Redundancy Department
Re: du won't run?
Hal Itosis #10205 05/28/10 09:19 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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...]


The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10207 05/28/10 12:57 PM
Joined: Sep 2009
Offline

Joined: Sep 2009
It appears your shell has issues.
You know what to do here:

type -a du od

echo "$PATH"

echo "$SHELL"

echo "$IFS" |od -cb

Last edited by Hal Itosis; 05/28/10 01:05 PM. Reason: more consistent perhaps
Re: du won't run?
Hal Itosis #10222 05/29/10 09:20 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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?


The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10223 05/29/10 10:46 AM
Joined: Aug 2009
Likes: 7
Online

Joined: Aug 2009
Likes: 7
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.

Last edited by jchuzi; 05/29/10 10:47 AM.

Jon

macOS 11.7.10, iMac Retina 5K 27-inch, late 2014, 3.5 GHz Intel Core i5, 1 TB fusion drive, 16 GB RAM, Epson SureColor P600, Photoshop CC, Lightroom CC, MS Office 365
Re: du won't run?
jchuzi #10224 05/29/10 11:13 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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.

Last edited by artie505; 05/29/10 11:15 AM. Reason: Added link

The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10230 05/29/10 02:29 PM
Joined: Sep 2009
Offline

Joined: Sep 2009
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@ {} +

Last edited by Hal Itosis; 05/29/10 04:43 PM. Reason: tweax
Re: du won't run?
Hal Itosis #10240 05/30/10 04:45 AM
Joined: Aug 2009
Offline

Joined: Aug 2009
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)


I work for the Department of Redundancy Department
Re: du won't run?
Virtual1 #10242 05/30/10 05:56 AM
Joined: Sep 2009
Offline

Joined: Sep 2009
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


Last edited by Hal Itosis; 05/30/10 06:44 AM. Reason: added confirmation of suspicion
Re: du won't run?
Hal Itosis #10244 05/30/10 08:44 AM
Joined: Aug 2009
Likes: 3
Moderator
Online
Moderator

Joined: Aug 2009
Likes: 3

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



dkmarsh—member, FineTunedMac Co-op Board of Directors
Re: du won't run?
Hal Itosis #10245 05/30/10 09:17 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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...

Last edited by artie505; 05/30/10 09:57 AM. Reason: Split post

The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10246 05/30/10 09:33 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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...

Last edited by artie505; 05/30/10 09:39 AM. Reason: Split post

The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10247 05/30/10 09:41 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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...

Last edited by artie505; 05/30/10 09:49 AM. Reason: Split post

The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10248 05/30/10 09:51 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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?


The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
Hal Itosis #10249 05/30/10 04:35 PM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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$ 



The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10267 05/31/10 05:11 AM
Joined: Sep 2009
Offline

Joined: Sep 2009
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.]

Last edited by Hal Itosis; 05/31/10 05:41 AM.
Re: du won't run?
Hal Itosis #10268 05/31/10 05:23 AM
Joined: Aug 2009
Likes: 15
OP Online

Joined: Aug 2009
Likes: 15
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?


The new Great Equalizer is the SEND button.

In Memory of Harv: Those who can make you believe absurdities can make you commit atrocities. ~Voltaire
Re: du won't run?
artie505 #10269 05/31/10 05:55 AM
Joined: Sep 2009
Offline

Joined: Sep 2009
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.

Last edited by Hal Itosis; 05/31/10 05:59 AM.
Page 1 of 2 1 2

Moderated by  alternaut, dkmarsh, joemikeb 

Link Copied to Clipboard
Powered by UBB.threads™ PHP Forum Software 7.7.4
(Release build 20200307)
Responsive Width:

PHP: 7.4.33 Page Time: 0.054s Queries: 65 (0.043s) Memory: 0.9026 MB (Peak: 1.2739 MB) Data Comp: Zlib Server Time: 2024-03-28 20:26:32 UTC
Valid HTML 5 and Valid CSS