Rixstep
 About | ACP | Buy | Industry Watch | Learning Curve | News | Products | Search | Substack
Home » Learning Curve

New Mac < $100?

Treat yourself in these recessionary times.


Get It

Try It

It's not your fault the real estate market blew up. That Fanny and Freddy went down for the count. That banks everywhere toppled like dominoes. But you're feeling the crunch today. Everyone is.

You might like to buy yourself a new Mac for the holidays. A glittering iMac or a MacBook Pro. But times are tough and you may have to put that purchase off indefinitely.

Why then not take the opportunity to get to know your present Mac a bit better?

Try this command in your Terminal. Give it time to run. It should take but a few seconds. At the end you'll get the results of the 'pipe' into wc.

sudo find -x / | wc

You should get something like this.

$ sudo find -x / | wc
Password:
  232889  283314 22560899

It's the first field that's interesting - 232889 in the above readout. That's the number of files and directories you have on your system. Now try this to find out how many directories you have. (This may take a few seconds longer.)

sudo find -x / -type d | wc

You should get something like this.

$ sudo find -x / -type d | wc
Password:
   36521   48364 3543392

36,521 directories (or thereabouts) on your system. Now count what you have in your own playpen.

$ find -x ~ -type d | wc
    1657    1780   96386

A petty 1,657 directories. Total files?

$ find -x ~ | wc
    6030    6393  406363

6,030 files. Not much. Of course that means there are still 226,859 files you haven't any direct knowledge of.

226,859 files is a lot of files. Especially when they're on a system you own and you still have no clue what they are and what they do. There's a whole new computer out there you haven't seen. Why are those files there? Try the command 'ls -al /' - you'll see a bit of the following.

/.fseventsd - files for the fsevents daemon that generates data for Spotlight.
/.Spotlight-V100 - Spotlight indexes.
/.Trashes - trashed files put there from boots on other volumes.
/.vol - still used on some systems to deal with 'Carbon' file paths.
/Applications - where Apple's own applications usually reside.
/bin - the first of four Unix command file directories.
/cores - used for 'core dumps' which don't happen much anymore.
/dev - device files. Direct interfaces with your device drivers.
/Developer - where Apple's ADC tools reside.
/home - a mysterious directory first found on Leopard.
/Library - lots of ancillary files.
/net - another mystery directory first sighted on Leopard.
/Network - bridge to network communications.
/private - a huge hive of very critical Unix files.
/sbin - the second of the four Unix command file directories.
/System - where Apple place their system files. Huge repository.
/Users - that's you and your files. And anybody else on your box.
/usr - houses the final two of the four Unix command file directories.

Of course the above is only scratching the surface.

See with Terminal.app

Of course you could make do with the tools Apple give you. Primarily Terminal.app. Apple's tools generally block access to a great many of the above directories. You could use Terminal.app to get past that - to inspect /dev for example.

$ ls -@ailOR /dev
total 9
300 dr-xr-xr-x   3 root     wheel     hidden     4142 Dec 22 01:46 .
  2 drwxrwxr-t  31 root     admin     -          1122 Dec 18 07:33 ..
310 crw-------   1 root     wheel     -        1,   0 Dec 22 01:46 auditpipe
601 crw-------   1 root     wheel     -       10,   0 Dec 22 01:46 autofs
605 crw-------   1 root     wheel     -       13,   0 Dec 22 01:46 autofs_control
603 crw-rw-rw-   1 root     wheel     -       11,   1 Dec 22 01:46 autofs_nowait
572 crw-------   1 root     wheel     -       23,   0 Dec 22 03:27 bpf0
573 crw-------   1 root     wheel     -       23,   1 Dec 22 03:27 bpf1
574 crw-------   1 root     wheel     -       23,   2 Dec 22 01:46 bpf2
575 crw-------   1 root     wheel     -       23,   3 Dec 22 01:46 bpf3
301 crw-------   1 root     wheel     -        0,   0 Dec 22 01:46 console
615 crw-rw-rw-   1 root     wheel     -       18,   3 Dec 22 01:46 cu.Bluetooth-Modem
611 crw-rw-rw-   1 root     wheel     -       18,   1 Dec 22 01:46 cu.Bluetooth-PDA-Sync
588 brw-r-----   1 root     operator  -       14,   0 Dec 22 01:46 disk0
590 brw-r-----   1 root     operator  -       14,   1 Dec 22 01:46 disk0s1
592 brw-r-----   1 root     operator  -       14,   2 Dec 22 01:46 disk0s2
594 brw-r-----   1 root     operator  -       14,   3 Dec 22 01:46 disk0s3
596 brw-r-----   1 root     operator  -       14,   4 Dec 22 01:46 disk0s4
598 brw-r-----   1 root     operator  -       14,   5 Dec 22 01:46 disk0s5
579 crw-rw-rw-   1 root     wheel     -       24,   2 Dec 22 01:46 dtrace
580 crw-rw-rw-   1 root     wheel     -       25,   0 Dec 22 01:46 dtracehelper
585 crw-rw-rw-   1 root     wheel     -        0,   0 Dec 22 01:46 fbt
306 dr-xr-xr-x   1 root     wheel     -             0 Dec 22 01:46 fd
576 crw-r--r--   1 root     wheel     -        8,   0 Dec 22 01:46 fsevents
607 crw-rw-rw-   1 root     wheel     -       17,   6 Dec 22 01:46 io8log
609 cr--r--r--   1 root     wheel     -       17,   7 Dec 22 01:46 io8logmt
305 crw-------   1 root     wheel     -        6,   0 Dec 22 01:46 klog
581 crw-rw-rw-   1 root     wheel     -        0,   0 Dec 22 01:46 lockstat
584 crw-rw-rw-   1 root     wheel     -        0,   0 Dec 22 01:46 machtrace
303 crw-rw-rw-   1 root     wheel     -        3,   2 Dec 22 02:17 null
587 crw-rw-rw-   1 root     operator  -       20,   0 Dec 22 01:46 pmCPUClient
586 crw-rw-rw-   1 root     wheel     -        0,   0 Dec 22 01:46 profile
567 crw-rw-rw-   1 root     tty       -       15,   1 Dec 22 03:28 ptmx
312 crw-rw-rw-   1 root     wheel     -        5,   0 Dec 22 01:46 ptyp0
314 crw-rw-rw-   1 root     wheel     -        5,   1 Dec 22 01:46 ptyp1
316 crw-rw-rw-   1 root     wheel     -        5,   2 Dec 22 01:46 ptyp2
318 crw-rw-rw-   1 root     wheel     -        5,   3 Dec 22 01:46 ptyp3
320 crw-rw-rw-   1 root     wheel     -        5,   4 Dec 22 01:46 ptyp4
322 crw-rw-rw-   1 root     wheel     -        5,   5 Dec 22 01:46 ptyp5
324 crw-rw-rw-   1 root     wheel     -        5,   6 Dec 22 01:46 ptyp6
326 crw-rw-rw-   1 root     wheel     -        5,   7 Dec 22 01:46 ptyp7
328 crw-rw-rw-   1 root     wheel     -        5,   8 Dec 22 01:46 ptyp8
330 crw-rw-rw-   1 root     wheel     -        5,   9 Dec 22 01:46 ptyp9
332 crw-rw-rw-   1 root     wheel     -        5,  10 Dec 22 01:46 ptypa
334 crw-rw-rw-   1 root     wheel     -        5,  11 Dec 22 01:46 ptypb
336 crw-rw-rw-   1 root     wheel     -        5,  12 Dec 22 01:46 ptypc
338 crw-rw-rw-   1 root     wheel     -        5,  13 Dec 22 01:46 ptypd
340 crw-rw-rw-   1 root     wheel     -        5,  14 Dec 22 01:46 ptype
342 crw-rw-rw-   1 root     wheel     -        5,  15 Dec 22 01:46 ptypf
344 crw-rw-rw-   1 root     wheel     -        5,  16 Dec 22 01:46 ptyq0
346 crw-rw-rw-   1 root     wheel     -        5,  17 Dec 22 01:46 ptyq1
348 crw-rw-rw-   1 root     wheel     -        5,  18 Dec 22 01:46 ptyq2
350 crw-rw-rw-   1 root     wheel     -        5,  19 Dec 22 01:46 ptyq3
352 crw-rw-rw-   1 root     wheel     -        5,  20 Dec 22 01:46 ptyq4
354 crw-rw-rw-   1 root     wheel     -        5,  21 Dec 22 01:46 ptyq5
356 crw-rw-rw-   1 root     wheel     -        5,  22 Dec 22 01:46 ptyq6
358 crw-rw-rw-   1 root     wheel     -        5,  23 Dec 22 01:46 ptyq7
360 crw-rw-rw-   1 root     wheel     -        5,  24 Dec 22 01:46 ptyq8
362 crw-rw-rw-   1 root     wheel     -        5,  25 Dec 22 01:46 ptyq9
364 crw-rw-rw-   1 root     wheel     -        5,  26 Dec 22 01:46 ptyqa
366 crw-rw-rw-   1 root     wheel     -        5,  27 Dec 22 01:46 ptyqb
368 crw-rw-rw-   1 root     wheel     -        5,  28 Dec 22 01:46 ptyqc
370 crw-rw-rw-   1 root     wheel     -        5,  29 Dec 22 01:46 ptyqd
372 crw-rw-rw-   1 root     wheel     -        5,  30 Dec 22 01:46 ptyqe
374 crw-rw-rw-   1 root     wheel     -        5,  31 Dec 22 01:46 ptyqf
376 crw-rw-rw-   1 root     wheel     -        5,  32 Dec 22 01:46 ptyr0
378 crw-rw-rw-   1 root     wheel     -        5,  33 Dec 22 01:46 ptyr1
380 crw-rw-rw-   1 root     wheel     -        5,  34 Dec 22 01:46 ptyr2
382 crw-rw-rw-   1 root     wheel     -        5,  35 Dec 22 01:46 ptyr3
384 crw-rw-rw-   1 root     wheel     -        5,  36 Dec 22 01:46 ptyr4
386 crw-rw-rw-   1 root     wheel     -        5,  37 Dec 22 01:46 ptyr5
388 crw-rw-rw-   1 root     wheel     -        5,  38 Dec 22 01:46 ptyr6
390 crw-rw-rw-   1 root     wheel     -        5,  39 Dec 22 01:46 ptyr7
392 crw-rw-rw-   1 root     wheel     -        5,  40 Dec 22 01:46 ptyr8
394 crw-rw-rw-   1 root     wheel     -        5,  41 Dec 22 01:46 ptyr9
396 crw-rw-rw-   1 root     wheel     -        5,  42 Dec 22 01:46 ptyra
398 crw-rw-rw-   1 root     wheel     -        5,  43 Dec 22 01:46 ptyrb
400 crw-rw-rw-   1 root     wheel     -        5,  44 Dec 22 01:46 ptyrc
402 crw-rw-rw-   1 root     wheel     -        5,  45 Dec 22 01:46 ptyrd
404 crw-rw-rw-   1 root     wheel     -        5,  46 Dec 22 01:46 ptyre
406 crw-rw-rw-   1 root     wheel     -        5,  47 Dec 22 01:46 ptyrf
408 crw-rw-rw-   1 root     wheel     -        5,  48 Dec 22 01:46 ptys0
410 crw-rw-rw-   1 root     wheel     -        5,  49 Dec 22 01:46 ptys1
412 crw-rw-rw-   1 root     wheel     -        5,  50 Dec 22 01:46 ptys2
414 crw-rw-rw-   1 root     wheel     -        5,  51 Dec 22 01:46 ptys3
416 crw-rw-rw-   1 root     wheel     -        5,  52 Dec 22 01:46 ptys4
418 crw-rw-rw-   1 root     wheel     -        5,  53 Dec 22 01:46 ptys5
420 crw-rw-rw-   1 root     wheel     -        5,  54 Dec 22 01:46 ptys6
422 crw-rw-rw-   1 root     wheel     -        5,  55 Dec 22 01:46 ptys7
424 crw-rw-rw-   1 root     wheel     -        5,  56 Dec 22 01:46 ptys8
426 crw-rw-rw-   1 root     wheel     -        5,  57 Dec 22 01:46 ptys9
428 crw-rw-rw-   1 root     wheel     -        5,  58 Dec 22 01:46 ptysa
430 crw-rw-rw-   1 root     wheel     -        5,  59 Dec 22 01:46 ptysb
432 crw-rw-rw-   1 root     wheel     -        5,  60 Dec 22 01:46 ptysc
434 crw-rw-rw-   1 root     wheel     -        5,  61 Dec 22 01:46 ptysd
436 crw-rw-rw-   1 root     wheel     -        5,  62 Dec 22 01:46 ptyse
438 crw-rw-rw-   1 root     wheel     -        5,  63 Dec 22 01:46 ptysf
440 crw-rw-rw-   1 root     wheel     -        5,  64 Dec 22 01:46 ptyt0
442 crw-rw-rw-   1 root     wheel     -        5,  65 Dec 22 01:46 ptyt1
444 crw-rw-rw-   1 root     wheel     -        5,  66 Dec 22 01:46 ptyt2
446 crw-rw-rw-   1 root     wheel     -        5,  67 Dec 22 01:46 ptyt3
448 crw-rw-rw-   1 root     wheel     -        5,  68 Dec 22 01:46 ptyt4
450 crw-rw-rw-   1 root     wheel     -        5,  69 Dec 22 01:46 ptyt5
452 crw-rw-rw-   1 root     wheel     -        5,  70 Dec 22 01:46 ptyt6
454 crw-rw-rw-   1 root     wheel     -        5,  71 Dec 22 01:46 ptyt7
456 crw-rw-rw-   1 root     wheel     -        5,  72 Dec 22 01:46 ptyt8
458 crw-rw-rw-   1 root     wheel     -        5,  73 Dec 22 01:46 ptyt9
460 crw-rw-rw-   1 root     wheel     -        5,  74 Dec 22 01:46 ptyta
462 crw-rw-rw-   1 root     wheel     -        5,  75 Dec 22 01:46 ptytb
464 crw-rw-rw-   1 root     wheel     -        5,  76 Dec 22 01:46 ptytc
466 crw-rw-rw-   1 root     wheel     -        5,  77 Dec 22 01:46 ptytd
468 crw-rw-rw-   1 root     wheel     -        5,  78 Dec 22 01:46 ptyte
470 crw-rw-rw-   1 root     wheel     -        5,  79 Dec 22 01:46 ptytf
472 crw-rw-rw-   1 root     wheel     -        5,  80 Dec 22 01:46 ptyu0
474 crw-rw-rw-   1 root     wheel     -        5,  81 Dec 22 01:46 ptyu1
476 crw-rw-rw-   1 root     wheel     -        5,  82 Dec 22 01:46 ptyu2
478 crw-rw-rw-   1 root     wheel     -        5,  83 Dec 22 01:46 ptyu3
480 crw-rw-rw-   1 root     wheel     -        5,  84 Dec 22 01:46 ptyu4
482 crw-rw-rw-   1 root     wheel     -        5,  85 Dec 22 01:46 ptyu5
484 crw-rw-rw-   1 root     wheel     -        5,  86 Dec 22 01:46 ptyu6
486 crw-rw-rw-   1 root     wheel     -        5,  87 Dec 22 01:46 ptyu7
488 crw-rw-rw-   1 root     wheel     -        5,  88 Dec 22 01:46 ptyu8
490 crw-rw-rw-   1 root     wheel     -        5,  89 Dec 22 01:46 ptyu9
492 crw-rw-rw-   1 root     wheel     -        5,  90 Dec 22 01:46 ptyua
494 crw-rw-rw-   1 root     wheel     -        5,  91 Dec 22 01:46 ptyub
496 crw-rw-rw-   1 root     wheel     -        5,  92 Dec 22 01:46 ptyuc
498 crw-rw-rw-   1 root     wheel     -        5,  93 Dec 22 01:46 ptyud
500 crw-rw-rw-   1 root     wheel     -        5,  94 Dec 22 01:46 ptyue
502 crw-rw-rw-   1 root     wheel     -        5,  95 Dec 22 01:46 ptyuf
504 crw-rw-rw-   1 root     wheel     -        5,  96 Dec 22 01:46 ptyv0
506 crw-rw-rw-   1 root     wheel     -        5,  97 Dec 22 01:46 ptyv1
508 crw-rw-rw-   1 root     wheel     -        5,  98 Dec 22 01:46 ptyv2
510 crw-rw-rw-   1 root     wheel     -        5,  99 Dec 22 01:46 ptyv3
512 crw-rw-rw-   1 root     wheel     -        5, 100 Dec 22 01:46 ptyv4
514 crw-rw-rw-   1 root     wheel     -        5, 101 Dec 22 01:46 ptyv5
516 crw-rw-rw-   1 root     wheel     -        5, 102 Dec 22 01:46 ptyv6
518 crw-rw-rw-   1 root     wheel     -        5, 103 Dec 22 01:46 ptyv7
520 crw-rw-rw-   1 root     wheel     -        5, 104 Dec 22 01:46 ptyv8
522 crw-rw-rw-   1 root     wheel     -        5, 105 Dec 22 01:46 ptyv9
524 crw-rw-rw-   1 root     wheel     -        5, 106 Dec 22 01:46 ptyva
526 crw-rw-rw-   1 root     wheel     -        5, 107 Dec 22 01:46 ptyvb
528 crw-rw-rw-   1 root     wheel     -        5, 108 Dec 22 01:46 ptyvc
530 crw-rw-rw-   1 root     wheel     -        5, 109 Dec 22 01:46 ptyvd
532 crw-rw-rw-   1 root     wheel     -        5, 110 Dec 22 01:46 ptyve
534 crw-rw-rw-   1 root     wheel     -        5, 111 Dec 22 01:46 ptyvf
536 crw-rw-rw-   1 root     wheel     -        5, 112 Dec 22 01:46 ptyw0
538 crw-rw-rw-   1 root     wheel     -        5, 113 Dec 22 01:46 ptyw1
540 crw-rw-rw-   1 root     wheel     -        5, 114 Dec 22 01:46 ptyw2
542 crw-rw-rw-   1 root     wheel     -        5, 115 Dec 22 01:46 ptyw3
544 crw-rw-rw-   1 root     wheel     -        5, 116 Dec 22 01:46 ptyw4
546 crw-rw-rw-   1 root     wheel     -        5, 117 Dec 22 01:46 ptyw5
548 crw-rw-rw-   1 root     wheel     -        5, 118 Dec 22 01:46 ptyw6
550 crw-rw-rw-   1 root     wheel     -        5, 119 Dec 22 01:46 ptyw7
552 crw-rw-rw-   1 root     wheel     -        5, 120 Dec 22 01:46 ptyw8
554 crw-rw-rw-   1 root     wheel     -        5, 121 Dec 22 01:46 ptyw9
556 crw-rw-rw-   1 root     wheel     -        5, 122 Dec 22 01:46 ptywa
558 crw-rw-rw-   1 root     wheel     -        5, 123 Dec 22 01:46 ptywb
560 crw-rw-rw-   1 root     wheel     -        5, 124 Dec 22 01:46 ptywc
562 crw-rw-rw-   1 root     wheel     -        5, 125 Dec 22 01:46 ptywd
564 crw-rw-rw-   1 root     wheel     -        5, 126 Dec 22 01:46 ptywe
566 crw-rw-rw-   1 root     wheel     -        5, 127 Dec 22 01:46 ptywf
577 crw-rw-rw-   1 root     wheel     -        9,   0 Dec 22 03:27 random
589 crw-r-----   1 root     operator  -       14,   0 Dec 22 01:46 rdisk0
591 crw-r-----   1 root     operator  -       14,   1 Dec 22 01:46 rdisk0s1
593 crw-r-----   1 root     operator  -       14,   2 Dec 22 01:46 rdisk0s2
595 crw-r-----   1 root     operator  -       14,   3 Dec 22 01:46 rdisk0s3
597 crw-r-----   1 root     operator  -       14,   4 Dec 22 01:46 rdisk0s4
599 crw-r-----   1 root     operator  -       14,   5 Dec 22 01:46 rdisk0s5
582 crw-rw-rw-   1 root     wheel     -        0,   0 Dec 22 01:46 sdt
309 lr-xr-xr-x   1 root     wheel     -             0 Dec 22 01:46 stderr -> fd/2
307 lr-xr-xr-x   1 root     wheel     -             0 Dec 22 01:46 stdin -> fd/0
308 lr-xr-xr-x   1 root     wheel     -             0 Dec 22 01:46 stdout -> fd/1
583 crw-rw-rw-   1 root     wheel     -        0,   0 Dec 22 01:46 systrace
302 crw-rw-rw-   1 root     wheel     -        2,   0 Dec 22 03:15 tty
617 crw-rw-rw-   1 root     wheel     -       18,   2 Dec 22 01:46 tty.Bluetooth-Modem
613 crw-rw-rw-   1 root     wheel     -       18,   0 Dec 22 01:46 tty.Bluetooth-PDA-Sync
311 crw-rw-rw-   1 root     wheel     -        4,   0 Dec 22 01:46 ttyp0
313 crw-rw-rw-   1 root     wheel     -        4,   1 Dec 22 01:46 ttyp1
315 crw-rw-rw-   1 root     wheel     -        4,   2 Dec 22 01:46 ttyp2
317 crw-rw-rw-   1 root     wheel     -        4,   3 Dec 22 01:46 ttyp3
319 crw-rw-rw-   1 root     wheel     -        4,   4 Dec 22 01:46 ttyp4
321 crw-rw-rw-   1 root     wheel     -        4,   5 Dec 22 01:46 ttyp5
323 crw-rw-rw-   1 root     wheel     -        4,   6 Dec 22 01:46 ttyp6
325 crw-rw-rw-   1 root     wheel     -        4,   7 Dec 22 01:46 ttyp7
327 crw-rw-rw-   1 root     wheel     -        4,   8 Dec 22 01:46 ttyp8
329 crw-rw-rw-   1 root     wheel     -        4,   9 Dec 22 01:46 ttyp9
331 crw-rw-rw-   1 root     wheel     -        4,  10 Dec 22 01:46 ttypa
333 crw-rw-rw-   1 root     wheel     -        4,  11 Dec 22 01:46 ttypb
335 crw-rw-rw-   1 root     wheel     -        4,  12 Dec 22 01:46 ttypc
337 crw-rw-rw-   1 root     wheel     -        4,  13 Dec 22 01:46 ttypd
339 crw-rw-rw-   1 root     wheel     -        4,  14 Dec 22 01:46 ttype
341 crw-rw-rw-   1 root     wheel     -        4,  15 Dec 22 01:46 ttypf
343 crw-rw-rw-   1 root     wheel     -        4,  16 Dec 22 01:46 ttyq0
345 crw-rw-rw-   1 root     wheel     -        4,  17 Dec 22 01:46 ttyq1
347 crw-rw-rw-   1 root     wheel     -        4,  18 Dec 22 01:46 ttyq2
349 crw-rw-rw-   1 root     wheel     -        4,  19 Dec 22 01:46 ttyq3
351 crw-rw-rw-   1 root     wheel     -        4,  20 Dec 22 01:46 ttyq4
353 crw-rw-rw-   1 root     wheel     -        4,  21 Dec 22 01:46 ttyq5
355 crw-rw-rw-   1 root     wheel     -        4,  22 Dec 22 01:46 ttyq6
357 crw-rw-rw-   1 root     wheel     -        4,  23 Dec 22 01:46 ttyq7
359 crw-rw-rw-   1 root     wheel     -        4,  24 Dec 22 01:46 ttyq8
361 crw-rw-rw-   1 root     wheel     -        4,  25 Dec 22 01:46 ttyq9
363 crw-rw-rw-   1 root     wheel     -        4,  26 Dec 22 01:46 ttyqa
365 crw-rw-rw-   1 root     wheel     -        4,  27 Dec 22 01:46 ttyqb
367 crw-rw-rw-   1 root     wheel     -        4,  28 Dec 22 01:46 ttyqc
369 crw-rw-rw-   1 root     wheel     -        4,  29 Dec 22 01:46 ttyqd
371 crw-rw-rw-   1 root     wheel     -        4,  30 Dec 22 01:46 ttyqe
373 crw-rw-rw-   1 root     wheel     -        4,  31 Dec 22 01:46 ttyqf
375 crw-rw-rw-   1 root     wheel     -        4,  32 Dec 22 01:46 ttyr0
377 crw-rw-rw-   1 root     wheel     -        4,  33 Dec 22 01:46 ttyr1
379 crw-rw-rw-   1 root     wheel     -        4,  34 Dec 22 01:46 ttyr2
381 crw-rw-rw-   1 root     wheel     -        4,  35 Dec 22 01:46 ttyr3
383 crw-rw-rw-   1 root     wheel     -        4,  36 Dec 22 01:46 ttyr4
385 crw-rw-rw-   1 root     wheel     -        4,  37 Dec 22 01:46 ttyr5
387 crw-rw-rw-   1 root     wheel     -        4,  38 Dec 22 01:46 ttyr6
389 crw-rw-rw-   1 root     wheel     -        4,  39 Dec 22 01:46 ttyr7
391 crw-rw-rw-   1 root     wheel     -        4,  40 Dec 22 01:46 ttyr8
393 crw-rw-rw-   1 root     wheel     -        4,  41 Dec 22 01:46 ttyr9
395 crw-rw-rw-   1 root     wheel     -        4,  42 Dec 22 01:46 ttyra
397 crw-rw-rw-   1 root     wheel     -        4,  43 Dec 22 01:46 ttyrb
399 crw-rw-rw-   1 root     wheel     -        4,  44 Dec 22 01:46 ttyrc
401 crw-rw-rw-   1 root     wheel     -        4,  45 Dec 22 01:46 ttyrd
403 crw-rw-rw-   1 root     wheel     -        4,  46 Dec 22 01:46 ttyre
405 crw-rw-rw-   1 root     wheel     -        4,  47 Dec 22 01:46 ttyrf
407 crw-rw-rw-   1 root     wheel     -        4,  48 Dec 22 01:46 ttys0
625 crw--w----   1 macuser  tty       -       16,   0 Dec 22 03:28 ttys000
409 crw-rw-rw-   1 root     wheel     -        4,  49 Dec 22 01:46 ttys1
411 crw-rw-rw-   1 root     wheel     -        4,  50 Dec 22 01:46 ttys2
413 crw-rw-rw-   1 root     wheel     -        4,  51 Dec 22 01:46 ttys3
415 crw-rw-rw-   1 root     wheel     -        4,  52 Dec 22 01:46 ttys4
417 crw-rw-rw-   1 root     wheel     -        4,  53 Dec 22 01:46 ttys5
419 crw-rw-rw-   1 root     wheel     -        4,  54 Dec 22 01:46 ttys6
421 crw-rw-rw-   1 root     wheel     -        4,  55 Dec 22 01:46 ttys7
423 crw-rw-rw-   1 root     wheel     -        4,  56 Dec 22 01:46 ttys8
425 crw-rw-rw-   1 root     wheel     -        4,  57 Dec 22 01:46 ttys9
427 crw-rw-rw-   1 root     wheel     -        4,  58 Dec 22 01:46 ttysa
429 crw-rw-rw-   1 root     wheel     -        4,  59 Dec 22 01:46 ttysb
431 crw-rw-rw-   1 root     wheel     -        4,  60 Dec 22 01:46 ttysc
433 crw-rw-rw-   1 root     wheel     -        4,  61 Dec 22 01:46 ttysd
435 crw-rw-rw-   1 root     wheel     -        4,  62 Dec 22 01:46 ttyse
437 crw-rw-rw-   1 root     wheel     -        4,  63 Dec 22 01:46 ttysf
439 crw-rw-rw-   1 root     wheel     -        4,  64 Dec 22 01:46 ttyt0
441 crw-rw-rw-   1 root     wheel     -        4,  65 Dec 22 01:46 ttyt1
443 crw-rw-rw-   1 root     wheel     -        4,  66 Dec 22 01:46 ttyt2
445 crw-rw-rw-   1 root     wheel     -        4,  67 Dec 22 01:46 ttyt3
447 crw-rw-rw-   1 root     wheel     -        4,  68 Dec 22 01:46 ttyt4
449 crw-rw-rw-   1 root     wheel     -        4,  69 Dec 22 01:46 ttyt5
451 crw-rw-rw-   1 root     wheel     -        4,  70 Dec 22 01:46 ttyt6
453 crw-rw-rw-   1 root     wheel     -        4,  71 Dec 22 01:46 ttyt7
455 crw-rw-rw-   1 root     wheel     -        4,  72 Dec 22 01:46 ttyt8
457 crw-rw-rw-   1 root     wheel     -        4,  73 Dec 22 01:46 ttyt9
459 crw-rw-rw-   1 root     wheel     -        4,  74 Dec 22 01:46 ttyta
461 crw-rw-rw-   1 root     wheel     -        4,  75 Dec 22 01:46 ttytb
463 crw-rw-rw-   1 root     wheel     -        4,  76 Dec 22 01:46 ttytc
465 crw-rw-rw-   1 root     wheel     -        4,  77 Dec 22 01:46 ttytd
467 crw-rw-rw-   1 root     wheel     -        4,  78 Dec 22 01:46 ttyte
469 crw-rw-rw-   1 root     wheel     -        4,  79 Dec 22 01:46 ttytf
471 crw-rw-rw-   1 root     wheel     -        4,  80 Dec 22 01:46 ttyu0
473 crw-rw-rw-   1 root     wheel     -        4,  81 Dec 22 01:46 ttyu1
475 crw-rw-rw-   1 root     wheel     -        4,  82 Dec 22 01:46 ttyu2
477 crw-rw-rw-   1 root     wheel     -        4,  83 Dec 22 01:46 ttyu3
479 crw-rw-rw-   1 root     wheel     -        4,  84 Dec 22 01:46 ttyu4
481 crw-rw-rw-   1 root     wheel     -        4,  85 Dec 22 01:46 ttyu5
483 crw-rw-rw-   1 root     wheel     -        4,  86 Dec 22 01:46 ttyu6
485 crw-rw-rw-   1 root     wheel     -        4,  87 Dec 22 01:46 ttyu7
487 crw-rw-rw-   1 root     wheel     -        4,  88 Dec 22 01:46 ttyu8
489 crw-rw-rw-   1 root     wheel     -        4,  89 Dec 22 01:46 ttyu9
491 crw-rw-rw-   1 root     wheel     -        4,  90 Dec 22 01:46 ttyua
493 crw-rw-rw-   1 root     wheel     -        4,  91 Dec 22 01:46 ttyub
495 crw-rw-rw-   1 root     wheel     -        4,  92 Dec 22 01:46 ttyuc
497 crw-rw-rw-   1 root     wheel     -        4,  93 Dec 22 01:46 ttyud
499 crw-rw-rw-   1 root     wheel     -        4,  94 Dec 22 01:46 ttyue
501 crw-rw-rw-   1 root     wheel     -        4,  95 Dec 22 01:46 ttyuf
503 crw-rw-rw-   1 root     wheel     -        4,  96 Dec 22 01:46 ttyv0
505 crw-rw-rw-   1 root     wheel     -        4,  97 Dec 22 01:46 ttyv1
507 crw-rw-rw-   1 root     wheel     -        4,  98 Dec 22 01:46 ttyv2
509 crw-rw-rw-   1 root     wheel     -        4,  99 Dec 22 01:46 ttyv3
511 crw-rw-rw-   1 root     wheel     -        4, 100 Dec 22 01:46 ttyv4
513 crw-rw-rw-   1 root     wheel     -        4, 101 Dec 22 01:46 ttyv5
515 crw-rw-rw-   1 root     wheel     -        4, 102 Dec 22 01:46 ttyv6
517 crw-rw-rw-   1 root     wheel     -        4, 103 Dec 22 01:46 ttyv7
519 crw-rw-rw-   1 root     wheel     -        4, 104 Dec 22 01:46 ttyv8
521 crw-rw-rw-   1 root     wheel     -        4, 105 Dec 22 01:46 ttyv9
523 crw-rw-rw-   1 root     wheel     -        4, 106 Dec 22 01:46 ttyva
525 crw-rw-rw-   1 root     wheel     -        4, 107 Dec 22 01:46 ttyvb
527 crw-rw-rw-   1 root     wheel     -        4, 108 Dec 22 01:46 ttyvc
529 crw-rw-rw-   1 root     wheel     -        4, 109 Dec 22 01:46 ttyvd
531 crw-rw-rw-   1 root     wheel     -        4, 110 Dec 22 01:46 ttyve
533 crw-rw-rw-   1 root     wheel     -        4, 111 Dec 22 01:46 ttyvf
535 crw-rw-rw-   1 root     wheel     -        4, 112 Dec 22 01:46 ttyw0
537 crw-rw-rw-   1 root     wheel     -        4, 113 Dec 22 01:46 ttyw1
539 crw-rw-rw-   1 root     wheel     -        4, 114 Dec 22 01:46 ttyw2
541 crw-rw-rw-   1 root     wheel     -        4, 115 Dec 22 01:46 ttyw3
543 crw-rw-rw-   1 root     wheel     -        4, 116 Dec 22 01:46 ttyw4
545 crw-rw-rw-   1 root     wheel     -        4, 117 Dec 22 01:46 ttyw5
547 crw-rw-rw-   1 root     wheel     -        4, 118 Dec 22 01:46 ttyw6
549 crw-rw-rw-   1 root     wheel     -        4, 119 Dec 22 01:46 ttyw7
551 crw-rw-rw-   1 root     wheel     -        4, 120 Dec 22 01:46 ttyw8
553 crw-rw-rw-   1 root     wheel     -        4, 121 Dec 22 01:46 ttyw9
555 crw-rw-rw-   1 root     wheel     -        4, 122 Dec 22 01:46 ttywa
557 crw-rw-rw-   1 root     wheel     -        4, 123 Dec 22 01:46 ttywb
559 crw-rw-rw-   1 root     wheel     -        4, 124 Dec 22 01:46 ttywc
561 crw-rw-rw-   1 root     wheel     -        4, 125 Dec 22 01:46 ttywd
563 crw-rw-rw-   1 root     wheel     -        4, 126 Dec 22 01:46 ttywe
565 crw-rw-rw-   1 root     wheel     -        4, 127 Dec 22 01:46 ttywf
578 crw-rw-rw-   1 root     wheel     -        9,   1 Dec 22 01:46 urandom
568 brw-------   1 root     operator  -        1,   0 Dec 22 01:46 vn0
569 brw-------   1 root     operator  -        1,   1 Dec 22 01:46 vn1
570 brw-------   1 root     operator  -        1,   2 Dec 22 01:46 vn2
571 brw-------   1 root     operator  -        1,   3 Dec 22 01:46 vn3
304 crw-rw-rw-   1 root     wheel     -        3,   3 Dec 22 01:46 zero

/dev/fd:
total 40
    625 crw--w----   1 macuser  tty    -     16,   0 Dec 22 03:28 0
1468485 -rw-r--r--   1 macuser  staff  -       20480 Dec 22 03:28 1
    625 crw--w----   1 macuser  tty    -     16,   0 Dec 22 03:28 2
 195855 dr--------  15 macuser  staff  uchg      510 Dec  1 01:00 3
    306 dr--r--r--   1 root     wheel  -           0 Dec 22 01:46 4

/dev/fd/3:
ls: 3: Not a directory
ls: 4: directory causes a cycle

Of course you won't be much wiser for that. Especially not the final three lines.

/dev/fd/3:
ls: 3: Not a directory
ls: 4: directory causes a cycle

But that's OK - you won't need to go there every day. (But it's nice to know you can.) There's even more cool stuff hidden in root.

/.HFS+ Private Directory Data - used by Time Machine.
/.journal, /.journal_info_block - used by 'Elvis' (the journaling feature of the file system).
/␀␀␀␀HFS+ Private Data - you're about to see what this one does.

Those little squiggly characters in front of 'HFS+ Private Data' all say 'NUL' by the way.
␀␀␀␀HFS+ Private Data

They have a value of 0x2400 or 022000 or 9216 decimal. They're there to make it difficult for you to find your way in.

But you're dying to know what's inside - right? Here's how you do it - again with Terminal.app. The directory's been given totally impossible permissions - no read, no write, no entry, no nothing - and is marked as both 'hidden' and 'immutable'. So first you have to loosen that up.

$sudo chflags 0 '␀␀␀␀HFS+ Private Data'; sudo chmod 777 '␀␀␀␀HFS+ Private Data'
Password:
Password:
$ cd '␀␀␀␀HFS+ Private Data'; $ ls -@ailOR
total 23344
     18 drwxrwxrwx@ 1336 root     wheel  -  45424 Jan  1  1970 .
	com.apple.FinderInfo	    32
      2 drwxrwxr-t    31 root     admin  -   1122 Dec 18 07:33 ..
1010594 -r-xr-xr-x     2 root     wheel  -  89072 Oct 16 11:56 iNode1010594
1010595 -r-sr-xr-x     4 root     wheel  - 110720 Oct 16 11:58 iNode1010595
1010603 -r-sr-xr-x     3 root     wheel  - 100000 Oct 16 11:58 iNode1010603
1011122 -rw-r--r--     2 root     wheel  -    955 Oct 16 11:58 iNode1011122
1011124 -rw-r--r--     2 root     wheel  -    154 Oct 16 11:58 iNode1011124
 101953 -r--r--r--     2 root     wheel  -  63907 May 18  2009 iNode101953
 102562 -rwxr-xr-x    24 root     wheel  -    807 May 19  2009 iNode102562
 106888 -r--r--r--    41 root     wheel  -   2365 Jul 14 07:16 iNode106888
 106929 -r--r--r--     2 root     wheel  -    513 Jul 14 07:16 iNode106929
 106930 -r--r--r--     4 root     wheel  -    699 Jul 14 07:16 iNode106930
 106934 -r--r--r--     2 root     wheel  -   1880 Jul 14 07:16 iNode106934
 106935 -r--r--r--     8 root     wheel  -   2166 Jul 14 07:16 iNode106935
 106936 -r--r--r--    11 root     wheel  -   1843 Jul 14 07:16 iNode106936
 106939 -r--r--r--     2 root     wheel  -   1787 Jul 14 07:16 iNode106939
 106948 -r--r--r--     2 root     wheel  -   1531 Jul 14 07:16 iNode106948
 106957 -r--r--r--     5 root     wheel  -   1999 Jul 14 07:16 iNode106957
 106970 -r--r--r--     5 root     wheel  -   1971 Jul 14 07:16 iNode106970
 106981 -r--r--r--     4 root     wheel  -   2039 Jul 14 07:16 iNode106981
 106986 -r--r--r--    13 root     wheel  -   3374 Jul 14 07:16 iNode106986
 106987 -r--r--r--     2 root     wheel  -   2683 Jul 14 07:16 iNode106987
 106990 -r--r--r--     3 root     wheel  -   1921 Jul 14 07:16 iNode106990
 106991 -r--r--r--     3 root     wheel  -   1760 Jul 14 07:16 iNode106991
 106997 -r--r--r--    10 root     wheel  -   3810 Jul 14 07:16 iNode106997
 107000 -r--r--r--    19 root     wheel  -   8526 Jul 14 07:16 iNode107000
 107020 -r--r--r--    10 root     wheel  -   8183 Jul 14 07:16 iNode107020
 107021 -r--r--r--    10 root     wheel  -   1574 Jul 14 07:16 iNode107021
 107023 -r--r--r--     2 root     wheel  -   1882 Jul 14 07:16 iNode107023
 107026 -r--r--r--     2 root     wheel  -   1673 Jul 14 07:16 iNode107026
 107029 -r--r--r--     2 root     wheel  -   1629 Jul 14 07:16 iNode107029
 107032 -r--r--r--     4 root     wheel  -   1580 Jul 14 07:16 iNode107032
 107038 -r--r--r--     3 root     wheel  -   1570 Jul 14 07:16 iNode107038
 107047 -r--r--r--    10 root     wheel  -   2055 Jul 14 07:16 iNode107047
 107059 -r--r--r--     2 root     wheel  -   1786 Jul 14 07:16 iNode107059
 107063 -r--r--r--     4 root     wheel  -   1335 Jul 14 07:16 iNode107063
 107067 -r--r--r--     5 root     wheel  -   1589 Jul 14 07:16 iNode107067
 107069 -r--r--r--     4 root     wheel  -    793 Jul 14 07:16 iNode107069
 107070 -r--r--r--     6 root     wheel  -   2782 Jul 14 07:16 iNode107070
 107074 -r--r--r--     8 root     wheel  -   3369 Jul 14 07:16 iNode107074
 107081 -r--r--r--    11 root     wheel  -   5763 Jul 14 07:16 iNode107081
 107092 -r--r--r--     8 root     wheel  -   1760 Jul 14 07:16 iNode107092
 107096 -r--r--r--     9 root     wheel  -   2287 Jul 14 07:16 iNode107096
 107097 -r--r--r--     5 root     wheel  -   3602 Jul 14 07:16 iNode107097
 107099 -r--r--r--     3 root     wheel  -   2738 Jul 14 07:16 iNode107099
 107100 -r--r--r--     2 root     wheel  -   1652 Jul 14 07:16 iNode107100
 107108 -r--r--r--     2 root     wheel  -   4868 Jul 14 07:16 iNode107108
 107109 -r--r--r--    11 root     wheel  -   1970 Jul 14 07:16 iNode107109
 107123 -r--r--r--     2 root     wheel  -   1537 Jul 14 07:16 iNode107123
 107127 -r--r--r--     2 root     wheel  -   1450 Jul 14 07:16 iNode107127
 107138 -r--r--r--     3 root     wheel  -   1895 Jul 14 07:16 iNode107138
 107141 -r--r--r--     4 root     wheel  -   2514 Jul 14 07:16 iNode107141
 107142 -r--r--r--     3 root     wheel  -   1571 Jul 14 07:16 iNode107142
 107143 -r--r--r--     6 root     wheel  -   3376 Jul 14 07:16 iNode107143
 107145 -r--r--r--    15 root     wheel  -   2554 Jul 14 07:16 iNode107145
 107152 -r--r--r--     6 root     wheel  -   2190 Jul 14 07:16 iNode107152
 107159 -r--r--r--     6 root     wheel  -   3277 Jul 14 07:16 iNode107159
 107171 -r--r--r--     3 root     wheel  -   2862 Jul 14 07:16 iNode107171
 107176 -r--r--r--     2 root     wheel  -   1665 Jul 14 07:16 iNode107176
 107177 -r--r--r--     2 root     wheel  -   1762 Jul 14 07:16 iNode107177
 107178 -r--r--r--     4 root     wheel  -   1473 Jul 14 07:16 iNode107178
 107181 -r--r--r--     6 root     wheel  -   2108 Jul 14 07:16 iNode107181
 107183 -r--r--r--     7 root     wheel  -   2858 Jul 14 07:16 iNode107183
 107184 -r--r--r--     8 root     wheel  -   2698 Jul 14 07:16 iNode107184
 107185 -r--r--r--     2 root     wheel  -   2149 Jul 14 07:16 iNode107185
 107186 -r--r--r--     3 root     wheel  -   1824 Jul 14 07:16 iNode107186
 107187 -r--r--r--     3 root     wheel  -   1443 Jul 14 07:16 iNode107187
 107188 -r--r--r--     2 root     wheel  -   1992 Jul 14 07:16 iNode107188
 107193 -r--r--r--     3 root     wheel  -   1491 Jul 14 07:16 iNode107193
 107201 -r--r--r--     3 root     wheel  -   2009 Jul 14 07:16 iNode107201
 107209 -r--r--r--     6 root     wheel  -   1996 Jul 14 07:16 iNode107209
 107212 -r--r--r--     2 root     wheel  -   1774 Jul 14 07:16 iNode107212
 107213 -r--r--r--     3 root     wheel  -   1592 Jul 14 07:16 iNode107213
 107214 -r--r--r--     3 root     wheel  -   1446 Jul 14 07:16 iNode107214
 107215 -r--r--r--     2 root     wheel  -   1663 Jul 14 07:16 iNode107215
 107218 -r--r--r--     2 root     wheel  -   1682 Jul 14 07:16 iNode107218
 107223 -r--r--r--     3 root     wheel  -   2334 Jul 14 07:16 iNode107223
 107224 -r--r--r--     6 root     wheel  -   4370 Jul 14 07:16 iNode107224
 107225 -r--r--r--     6 root     wheel  -   1488 Jul 14 07:16 iNode107225
 107230 -r--r--r--     2 root     wheel  -   2474 Jul 14 07:16 iNode107230
 107237 -r--r--r--     7 root     wheel  -   6241 Jul 14 07:16 iNode107237
 107245 -r--r--r--     2 root     wheel  -   2340 Jul 14 07:16 iNode107245
 107252 -r--r--r--     6 root     wheel  -   5576 Jul 14 07:16 iNode107252
 107253 -r--r--r--     6 root     wheel  -   1541 Jul 14 07:16 iNode107253
 107256 -r--r--r--     6 root     wheel  -   4140 Jul 14 07:16 iNode107256
 107257 -r--r--r--     6 root     wheel  -   1536 Jul 14 07:16 iNode107257
 107266 -r--r--r--     2 root     wheel  -   1748 Jul 14 07:16 iNode107266
 107267 -r--r--r--     2 root     wheel  -   2098 Jul 14 07:16 iNode107267
 107269 -r--r--r--     2 root     wheel  -   1668 Jul 14 07:16 iNode107269
 107270 -r--r--r--     4 root     wheel  -   2580 Jul 14 07:16 iNode107270
 107271 -r--r--r--     2 root     wheel  -   1497 Jul 14 07:16 iNode107271
 107272 -r--r--r--     2 root     wheel  -   1915 Jul 14 07:16 iNode107272
 107273 -r--r--r--     2 root     wheel  -   1987 Jul 14 07:16 iNode107273
 107274 -r--r--r--     5 root     wheel  -   1902 Jul 14 07:16 iNode107274
 107279 -r--r--r--     2 root     wheel  -   1749 Jul 14 07:16 iNode107279
 107281 -r--r--r--     2 root     wheel  -   4226 Jul 14 07:16 iNode107281
 107287 -r--r--r--     2 root     wheel  -   1586 Jul 14 07:16 iNode107287
 107312 -r--r--r--     2 root     wheel  -   4804 Jul 14 07:16 iNode107312
 107317 -r--r--r--     4 root     wheel  -   2165 Jul 14 07:16 iNode107317
 107318 -r--r--r--     3 root     wheel  -   1475 Jul 14 07:16 iNode107318
 107320 -r--r--r--     3 root     wheel  -   1980 Jul 14 07:16 iNode107320
 107323 -r--r--r--     7 root     wheel  -   3116 Jul 14 07:16 iNode107323
 107339 -r--r--r--     3 root     wheel  -   2382 Jul 14 07:16 iNode107339
 107348 -r--r--r--     5 root     wheel  -   2884 Jul 14 07:16 iNode107348
 107349 -r--r--r--     2 root     wheel  -    676 Jul 14 07:16 iNode107349
 107352 -r--r--r--    18 root     wheel  -   1607 Jul 14 07:16 iNode107352
 107357 -r--r--r--     3 root     wheel  -   1764 Jul 14 07:16 iNode107357
 107362 -r--r--r--     2 root     wheel  -   1773 Jul 14 07:16 iNode107362
 107366 -r--r--r--     2 root     wheel  -   1806 Jul 14 07:16 iNode107366
 107389 -r--r--r--    19 root     wheel  -   1878 Jul 14 07:16 iNode107389
 107390 -r--r--r--    18 root     wheel  -   1543 Jul 14 07:16 iNode107390
 107400 -r--r--r--     4 root     wheel  -   1641 Jul 14 07:16 iNode107400
 107442 -r--r--r--     2 root     wheel  -   1033 Jul 14 07:16 iNode107442
 107443 -r--r--r--     3 root     wheel  -   2240 Jul 14 07:16 iNode107443
 107449 -r--r--r--     2 root     wheel  -   2585 Jul 14 07:16 iNode107449
 107455 -r--r--r--     3 root     wheel  -   1658 Jul 14 07:16 iNode107455
 107468 -r--r--r--     2 root     wheel  -   1802 Jul 14 07:16 iNode107468
 107470 -r--r--r--    10 root     wheel  -   1418 Jul 14 07:16 iNode107470
 107474 -r--r--r--     2 root     wheel  -    890 Jul 14 07:16 iNode107474
 107484 -r--r--r--     2 root     wheel  -   1817 Jul 14 07:16 iNode107484
 107487 -r--r--r--     3 root     wheel  -   1837 Jul 14 07:16 iNode107487
 107488 -r--r--r--     2 root     wheel  -   1870 Jul 14 07:16 iNode107488
 107493 -r--r--r--     2 root     wheel  -   1718 Jul 14 07:16 iNode107493
 107497 -r--r--r--     2 root     wheel  -   1206 Jul 14 07:16 iNode107497
 107500 -r--r--r--     4 root     wheel  -   1784 Jul 14 07:16 iNode107500
 107505 -r--r--r--     2 root     wheel  -   1693 Jul 14 07:16 iNode107505
 107508 -r--r--r--     2 root     wheel  -   1877 Jul 14 07:16 iNode107508
 107518 -r--r--r--     4 root     wheel  -    595 Jul 14 07:16 iNode107518
 107525 -r--r--r--     4 root     wheel  -   2791 Jul 14 07:16 iNode107525
 107531 -r--r--r--     2 root     wheel  -   1741 Jul 14 07:16 iNode107531
 107534 -r--r--r--     8 root     wheel  -   2311 Jul 14 07:16 iNode107534
 107547 -r--r--r--     2 root     wheel  -   1159 Jul 14 07:16 iNode107547
 107553 -r--r--r--     2 root     wheel  -   1487 Jul 14 07:16 iNode107553
 107567 -r--r--r--     2 root     wheel  -   2336 Jul 14 07:16 iNode107567
 107568 -r--r--r--     5 root     wheel  -   2335 Jul 14 07:16 iNode107568
 107571 -r--r--r--     2 root     wheel  -   1560 Jul 14 07:16 iNode107571
 107578 -r--r--r--     4 root     wheel  -   1703 Jul 14 07:16 iNode107578
 107579 -r--r--r--     3 root     wheel  -   1999 Jul 14 07:16 iNode107579
 107585 -r--r--r--    17 root     wheel  -   1892 Jul 14 07:16 iNode107585
 107612 -r--r--r--     3 root     wheel  -   1380 Jul 14 07:16 iNode107612
 107620 -r--r--r--     2 root     wheel  -   1427 Jul 14 07:16 iNode107620
 107630 -r--r--r--     9 root     wheel  -   2416 Jul 14 07:16 iNode107630
 107643 -r--r--r--     2 root     wheel  -   1699 Jul 14 07:16 iNode107643
 107646 -r--r--r--     2 root     wheel  -   1499 Jul 14 07:16 iNode107646
 107655 -r--r--r--     3 root     wheel  -   1952 Jul 14 07:16 iNode107655
 107686 -r--r--r--     2 root     wheel  -   2281 Jul 14 07:16 iNode107686
 107688 -r--r--r--     4 root     wheel  -   1708 Jul 14 07:16 iNode107688
 107702 -r--r--r--     5 root     wheel  -   6558 Jul 14 07:16 iNode107702
 107724 -r--r--r--     4 root     wheel  -   2634 Jul 14 07:16 iNode107724
 107748 -r--r--r--     2 root     wheel  -   1448 Jul 14 07:16 iNode107748
 107758 -r--r--r--     6 root     wheel  -   1617 Jul 14 07:16 iNode107758
 107770 -r--r--r--     5 root     wheel  -   1778 Jul 14 07:16 iNode107770
 107794 -r--r--r--     5 root     wheel  -   2806 Jul 14 07:16 iNode107794
 107796 -r--r--r--     3 root     wheel  -   2199 Jul 14 07:16 iNode107796
 107797 -r--r--r--     4 root     wheel  -   1727 Jul 14 07:16 iNode107797
 107800 -r--r--r--     4 root     wheel  -   1916 Jul 14 07:16 iNode107800
 107803 -r--r--r--     2 root     wheel  -   2150 Jul 14 07:16 iNode107803
 107805 -r--r--r--     2 root     wheel  -   1574 Jul 14 07:16 iNode107805
 107806 -r--r--r--     2 root     wheel  -   1538 Jul 14 07:16 iNode107806
 107816 -r--r--r--     2 root     wheel  -   2251 Jul 14 07:16 iNode107816
 107819 -r--r--r--     2 root     wheel  -   3059 Jul 14 07:16 iNode107819
 107824 -r--r--r--     2 root     wheel  -   2365 Jul 14 07:16 iNode107824
 107838 -r--r--r--     2 root     wheel  -   2428 Jul 14 07:16 iNode107838
 107847 -r--r--r--     3 root     wheel  -   2771 Jul 14 07:16 iNode107847
 107848 -r--r--r--     3 root     wheel  -   1424 Jul 14 07:16 iNode107848
 107855 -r--r--r--     4 root     wheel  -   2564 Jul 14 07:16 iNode107855
 107856 -r--r--r--     8 root     wheel  -   1600 Jul 14 07:16 iNode107856
 107857 -r--r--r--     2 root     wheel  -   2370 Jul 14 07:16 iNode107857
 107870 -r--r--r--     4 root     wheel  -   2443 Jul 14 07:16 iNode107870
 107879 -r--r--r--     3 root     wheel  -   2592 Jul 14 07:16 iNode107879
 107882 -r--r--r--     3 root     wheel  -   3101 Jul 14 07:16 iNode107882
 107885 -r--r--r--     2 root     wheel  -   1748 Jul 14 07:16 iNode107885
 107908 -r--r--r--     3 root     wheel  -   8946 Jul 14 07:16 iNode107908
 107915 -r--r--r--     4 root     wheel  -   1999 Jul 14 07:16 iNode107915
 107925 -r--r--r--     4 root     wheel  -   2173 Jul 14 07:16 iNode107925
 107927 -r--r--r--     3 root     wheel  -   2751 Jul 14 07:16 iNode107927
 107933 -r--r--r--     2 root     wheel  -   1053 Jul 14 07:16 iNode107933
 107942 -r--r--r--     2 root     wheel  -   1706 Jul 14 07:16 iNode107942
 107945 -r--r--r--     2 root     wheel  -   1708 Jul 14 07:16 iNode107945
 107948 -r--r--r--     4 root     wheel  -   1601 Jul 14 07:16 iNode107948
 107951 -r--r--r--     2 root     wheel  -   1517 Jul 14 07:16 iNode107951
 107954 -r--r--r--     2 root     wheel  -   1519 Jul 14 07:16 iNode107954
 107962 -r--r--r--     2 root     wheel  -   3300 Jul 14 07:16 iNode107962
 107970 -r--r--r--     2 root     wheel  -   1867 Jul 14 07:16 iNode107970
 107985 -r--r--r--     3 root     wheel  -   1920 Jul 14 07:16 iNode107985
 107991 -r--r--r--     3 root     wheel  -   1470 Jul 14 07:16 iNode107991
 108040 -r--r--r--     2 root     wheel  -   1565 Jul 14 07:16 iNode108040
 108043 -r--r--r--    20 root     wheel  -   1777 Jul 14 07:16 iNode108043
 108047 -r--r--r--     2 root     wheel  -   1877 Jul 14 07:16 iNode108047
 108052 -r--r--r--     2 root     wheel  -   1252 Jul 14 07:16 iNode108052
 108061 -r--r--r--     4 root     wheel  -   1763 Jul 14 07:16 iNode108061
 108070 -r--r--r--     3 root     wheel  -   1142 Jul 14 07:16 iNode108070
 108071 -r--r--r--     3 root     wheel  -   1107 Jul 14 07:16 iNode108071
 108076 -r--r--r--     6 root     wheel  -   1345 Jul 14 07:16 iNode108076
 108077 -r--r--r--     6 root     wheel  -   1218 Jul 14 07:16 iNode108077
 108087 -r--r--r--     2 root     wheel  -   1736 Jul 14 07:16 iNode108087
 108096 -r--r--r--     2 root     wheel  -   1256 Jul 14 07:16 iNode108096
 108099 -r--r--r--     2 root     wheel  -   1958 Jul 14 07:16 iNode108099
 108104 -r--r--r--     2 root     wheel  -   1840 Jul 14 07:16 iNode108104
 108111 -r--r--r--     2 root     wheel  -   1462 Jul 14 07:16 iNode108111
 108119 -r--r--r--     2 root     wheel  -   2123 Jul 14 07:16 iNode108119
 108130 -r--r--r--    64 root     wheel  -   7480 Jun 24 03:29 iNode108130
 108154 -r--r--r--     6 root     wheel  -   2244 Jun 24 03:28 iNode108154
 108155 -r--r--r--     8 root     wheel  -   2999 Jun 24 03:28 iNode108155
 108156 -r--r--r--     8 root     wheel  -   3833 Jun 24 03:26 iNode108156
 108157 -r--r--r--     5 root     wheel  -   2181 Jun 24 03:26 iNode108157
 108158 -r--r--r--     4 root     wheel  -   1863 Jun 24 03:28 iNode108158
 108159 -r--r--r--     5 root     wheel  -   1847 Jun 24 03:26 iNode108159
 108160 -r--r--r--     9 root     wheel  -   3563 Jun 24 03:28 iNode108160
 108161 -r--r--r--     5 root     wheel  -   1148 Jun 24 03:29 iNode108161
 108162 -r--r--r--     5 root     wheel  -   2014 Jun 24 03:26 iNode108162
 108163 -r--r--r--     2 root     wheel  -   4497 Jun 24 03:28 iNode108163
 108164 -r--r--r--     3 root     wheel  -   3692 Jun 24 03:26 iNode108164
 108165 -r--r--r--     2 root     wheel  -   1951 Jun 24 03:26 iNode108165
 108220 -r--r--r--     4 root     wheel  -   1786 Jun 24 03:26 iNode108220
 108225 -r--r--r--     6 root     wheel  -   1882 Jun 24 03:26 iNode108225
 108232 -r--r--r--     8 root     wheel  -   2083 Jun 24 03:26 iNode108232
 108243 -r--r--r--     7 root     wheel  -   3525 Jun 24 03:30 iNode108243
 108247 -r--r--r--     5 root     wheel  -   1785 Jun 24 03:28 iNode108247
 108300 -r--r--r--    33 root     wheel  -   3976 Jun 24 03:29 iNode108300
 109673 -r--r--r--     2 root     wheel  -    877 May 18  2009 iNode109673
 113886 -r--r--r--     2 root     wheel  -   2406 May 18  2009 iNode113886
 113938 -rw-r--r--     4 root     wheel  -   6593 Jul 14 07:25 iNode113938
 113961 -r--r--r--     6 root     wheel  -   4502 Jun 26 01:55 iNode113961
 114258 -r-xr-xr-x     2 root     wheel  - 101392 May 18  2009 iNode114258
 114270 -r-xr-xr-x     2 root     wheel  -  55024 Jun 30 05:45 iNode114270
 114284 -r--r--r--     2 root     wheel  -   1969 Jun 30 05:45 iNode114284
 117579 -r-xr-xr-x     2 root     wheel  -  52352 Jul 14 07:25 iNode117579
 117591 -r--r--r--     2 root     wheel  -   2636 Jul 14 07:25 iNode117591
 117600 -r--r--r--     2 root     wheel  -   4728 Jul 14 07:26 iNode117600
 117677 -rwxr-xr-x     2 root     wheel  - 142880 Jul 14 07:25 iNode117677
 117690 -rw-r--r--     2 root     wheel  -     16 Jul 14 07:25 iNode117690
 117697 -rw-r--r--     3 root     wheel  -    435 Jul 14 07:25 iNode117697
 117773 -rw-r--r--     2 root     wheel  -   1169 Jul 11 11:38 iNode117773
 117777 -rw-r--r--     2 root     wheel  -   2066 Jul 11 11:38 iNode117777
 117780 -rw-r--r--     4 root     wheel  -   7487 Jul 11 11:38 iNode117780
 117783 -rw-r--r--     8 root     wheel  -   3210 Jul 11 11:38 iNode117783
 117784 -rw-r--r--     7 root     wheel  -   9532 Jul 11 11:38 iNode117784
 117788 -rw-r--r--     8 root     wheel  -   3804 Jul 11 11:38 iNode117788
 117800 -rw-r--r--     2 root     wheel  -    911 Jul 11 11:38 iNode117800
 117808 -rw-r--r--     3 root     wheel  -   2882 Jul 11 11:38 iNode117808
 117815 -rw-r--r--    12 root     wheel  -  13583 Jul 11 11:38 iNode117815
 117831 -rw-r--r--     2 root     wheel  -   2781 Jul 11 11:38 iNode117831
 117888 -rw-r--r--     2 root     wheel  -    990 May 18  2009 iNode117888
 117891 -rw-r--r--     2 root     wheel  -   2057 May 18  2009 iNode117891
 117896 -rw-r--r--     2 root     wheel  -   1390 May 18  2009 iNode117896
 117903 -rw-r--r--     2 root     wheel  -   1266 May 18  2009 iNode117903
 117908 -rw-r--r--     2 root     wheel  -   1058 May 18  2009 iNode117908
 117909 -rw-r--r--     2 root     wheel  -   1335 May 18  2009 iNode117909
 117910 -rw-r--r--     2 root     wheel  -   1626 May 18  2009 iNode117910
 117918 -rw-r--r--     2 root     wheel  -   1005 May 18  2009 iNode117918
 117921 -rw-r--r--     2 root     wheel  -   1548 May 18  2009 iNode117921
 119956 -r-xr-xr-x     2 root     wheel  - 271440 May 18  2009 iNode119956
 119978 -r--r--r--     2 root     wheel  -   4290 Jul 25 07:17 iNode119978
 119982 -r-xr-xr-x     2 root     wheel  -  60944 May 18  2009 iNode119982
 120050 -r--r--r--     2 root     wheel  -   1901 May 18  2009 iNode120050
 121152 -r--r--r--     2 root     wheel  -   6044 Jul 15 07:27 iNode121152
 121796 -rwxr-xr-x    37 root     wheel  -    807 Jun 24 09:42 iNode121796
 131078 -rwxr-xr-x     5 root     wheel  -    925 Jul  8 08:57 iNode131078
 131087 -rwxr-xr-x     2 root     wheel  -  86000 Jul  8 08:57 iNode131087
 131103 -rw-r--r--     2 root     wheel  -   1478 Jul  8 08:57 iNode131103
 135137 -rwxr-xr-x     2 root     wheel  -    925 Jul  1 08:28 iNode135137
 135207 -r--r--r--    17 root     wheel  -   1176 May 19  2009 iNode135207
 135225 -r--r--r--     5 root     wheel  -   3118 May 19  2009 iNode135225
 135240 -r--r--r--     5 root     wheel  -    444 May 18  2009 iNode135240
 135381 -r-xr-xr-x    15 root     wheel  -    190 May 18  2009 iNode135381
 135414 -r-xr-xr-x     2 root     wheel  -  64176 May 18  2009 iNode135414
 135430 -r--r--r--    87 root     wheel  -   2676 May 18  2009 iNode135430
 135543 -r--r--r--     2 root     wheel  -    242 May 18  2009 iNode135543
 135546 -r--r--r--     3 root     wheel  -   1405 May 18  2009 iNode135546
 135558 -rw-r--r--     2 root     wheel  -   2750 May 18  2009 iNode135558
 136272 -r--r--r--    14 root     wheel  -   6795 Jul 23 05:40 iNode136272
 136587 -r--r--r--     2 root     wheel  -  11985 Jul 23 05:46 iNode136587
 136748 -r--r--r--     4 root     wheel  -  29676 Jul 23 05:46 iNode136748
 136759 -r--r--r--     2 root     wheel  -   3018 Jul 23 05:46 iNode136759
 136760 -r--r--r--     2 root     wheel  -   3619 Jul 23 05:46 iNode136760
 136764 -r--r--r--     3 root     wheel  -   3356 Jul 23 05:46 iNode136764
 136768 -r--r--r--     2 root     wheel  -   5113 Jul 23 05:46 iNode136768
 137060 -r--r--r--     2 root     wheel  -   1807 May 18  2009 iNode137060
 141373 -r--r--r--    24 root     wheel  -   4827 Aug  1 07:49 iNode141373
 141397 -r--r--r--     3 root     wheel  -   1633 Aug  1 07:49 iNode141397
 141401 -r--r--r--     2 root     wheel  -   1624 Aug  1 07:49 iNode141401
 141404 -r--r--r--     2 root     wheel  -   1617 Aug  1 07:49 iNode141404
 141405 -r--r--r--     2 root     wheel  -   1778 Aug  1 07:49 iNode141405
 141406 -r--r--r--     2 root     wheel  -   2044 Aug  1 07:49 iNode141406
 141407 -r--r--r--     2 root     wheel  -   1418 Aug  1 07:49 iNode141407
 141408 -r--r--r--     2 root     wheel  -   1424 Aug  1 07:49 iNode141408
 141409 -r--r--r--     2 root     wheel  -   1416 Aug  1 07:49 iNode141409
 141414 -r--r--r--     2 root     wheel  -   1537 Aug  1 07:49 iNode141414
 141487 -rwxr-xr-x     2 root     wheel  - 265392 May 18  2009 iNode141487
1468020 -rw-r--r--     1 rixstep  staff  - 127768 Dec 22 02:18 iNode1468020
 199030 -rwx------     2 rixstep  staff  -   9568 Dec  1 01:00 iNode199030
 201895 -rw-------     1 rixstep  staff  -      0 Dec  1 01:00 iNode201895
 220731 -rw-r--r--     4 root     wheel  - 413900 May 18  2009 iNode220731
 220735 -rw-r--r--     3 root     wheel  - 413900 May 18  2009 iNode220735
 221438 -rw-r--r--     4 root     wheel  - 453665 May 18  2009 iNode221438
 221439 -rw-r--r--     3 root     wheel  -  38945 May 18  2009 iNode221439
 221442 -rw-r--r--     3 root     wheel  - 453665 May 18  2009 iNode221442
  24500 -r-xr-xr-x     2 root     wheel  - 148016 Jun 30 05:44 iNode24500
  24518 -r-xr-xr-x     2 root     tty    - 213472 Jun 30 05:45 iNode24518
  24721 -r-xr-xr-x     2 root     wheel  -  39552 Jul 14 07:25 iNode24721
  24728 -r-xr-xr-x     2 root     wheel  -  44448 Jul 14 07:26 iNode24728
  25095 -rw-r--r--     2 root     wheel  -   1367 May 18  2009 iNode25095
  25655 -r-xr-xr-x     2 root     wheel  -  63184 May 18  2009 iNode25655
 256654 -r--r--r--     2 root     wheel  -   1357 Jul 14 07:16 iNode256654
 256663 -r--r--r--     2 root     wheel  -   1474 Jul 14 07:16 iNode256663
 256670 -r--r--r--     2 root     wheel  -   2134 Aug  1 07:39 iNode256670
 257466 -rwxr-xr-x     2 root     wheel  -  30797 May 18  2009 iNode257466
 257469 -rwxr-xr-x     2 root     wheel  - 232943 May 18  2009 iNode257469
 257761 -r--r--r--     2 root     wheel  -   3518 May 18  2009 iNode257761
 257764 -r--r--r--     2 root     wheel  -   2747 May 18  2009 iNode257764
 257804 -rw-r--r--     3 root     wheel  -   1493 May 18  2009 iNode257804
 257862 -r--r--r--     2 root     wheel  -    604 May 18  2009 iNode257862
 257865 -rwxr-xr-x     2 root     wheel  - 287296 May 18  2009 iNode257865
 257868 -rw-r--r--     2 root     wheel  -   1642 May 18  2009 iNode257868
 257965 -r--r--r--     2 root     wheel  -   3657 Jul 23 05:40 iNode257965
 257966 -r--r--r--    10 root     wheel  -   6718 Jul 23 05:40 iNode257966
 257969 -r--r--r--    17 root     wheel  -  11214 Jul 23 05:40 iNode257969
 257970 -r--r--r--    10 root     wheel  -   3617 Jul 23 05:40 iNode257970
 257971 -r--r--r--    42 root     wheel  -  19981 Jul 23 05:40 iNode257971
 257974 -r--r--r--     4 root     wheel  -   5847 Jul 23 05:40 iNode257974
 257975 -r--r--r--     9 root     wheel  -   5720 Jul 23 05:40 iNode257975
 257976 -r--r--r--    12 root     wheel  -   4512 Jul 23 05:40 iNode257976
 257977 -r--r--r--    24 root     wheel  -   7495 Jul 23 05:40 iNode257977
 257990 -r--r--r--     5 root     wheel  -   4826 Jul 23 05:40 iNode257990
 258002 -r--r--r--    35 root     wheel  -  11897 Jul 23 05:40 iNode258002
 258003 -r--r--r--     2 root     wheel  -   3260 Jul 23 05:40 iNode258003
 258004 -r--r--r--     2 root     wheel  -   3786 Jul 23 05:40 iNode258004
  25801 -rwxr-xr-x     2 root     wheel  - 767200 May 18  2009 iNode25801
 258024 -r--r--r--     2 root     wheel  -   3196 Jul 23 05:40 iNode258024
 258026 -r--r--r--    31 root     wheel  -  11005 Jul 23 05:40 iNode258026
 258028 -r--r--r--     3 root     wheel  -   4957 Jul 23 05:40 iNode258028
 258031 -r--r--r--     9 root     wheel  -   5515 Jul 23 05:40 iNode258031
 258035 -r--r--r--     6 root     wheel  -   5144 Jul 23 05:40 iNode258035
 258040 -r--r--r--    12 root     wheel  -   5382 Jul 23 05:40 iNode258040
 258044 -r--r--r--     2 root     wheel  -   3856 Jul 23 05:40 iNode258044
 258045 -r--r--r--     2 root     wheel  -   3127 Jul 23 05:40 iNode258045
 258047 -r--r--r--    18 root     wheel  -  11230 Jul 23 05:40 iNode258047
 258048 -r--r--r--    12 root     wheel  -   4820 Jul 23 05:40 iNode258048
 258051 -r--r--r--     9 root     wheel  -   4578 Jul 23 05:40 iNode258051
 258052 -r--r--r--     2 root     wheel  -   3895 Jul 23 05:40 iNode258052
 258053 -r--r--r--    13 root     wheel  -   6772 Jul 23 05:40 iNode258053
 258054 -r--r--r--     3 root     wheel  -   4549 Jul 23 05:40 iNode258054
 258055 -r--r--r--     3 root     wheel  -   4751 Jul 23 05:40 iNode258055
 258058 -r--r--r--    10 root     wheel  -   6319 Jul 23 05:40 iNode258058
 258059 -r--r--r--     3 root     wheel  -   5292 Jul 23 05:40 iNode258059
 258064 -r--r--r--     2 root     wheel  -   3533 Jul 23 05:40 iNode258064
 258068 -r--r--r--    12 root     wheel  -   4368 Jul 23 05:40 iNode258068
 258081 -r--r--r--     6 root     wheel  -   7185 Jul 23 05:40 iNode258081
 258082 -r--r--r--     3 root     wheel  -   3711 Jul 23 05:40 iNode258082
 258107 -r--r--r--     3 root     wheel  -   3702 Jul 23 05:40 iNode258107
 258108 -r--r--r--    10 root     wheel  -   5860 Jul 23 05:40 iNode258108
 258118 -r--r--r--     6 root     wheel  -   4196 Jul 23 05:40 iNode258118
 258126 -r--r--r--     3 root     wheel  -   3356 Jul 23 05:40 iNode258126
 258130 -r--r--r--     4 root     wheel  -   3249 Jul 23 05:40 iNode258130
 258133 -r--r--r--     9 root     wheel  -   5567 Jul 23 05:40 iNode258133
 258139 -r--r--r--     9 root     wheel  -   7777 Jul 23 05:40 iNode258139
 258142 -r--r--r--     3 root     wheel  -   4131 Jul 23 05:40 iNode258142
 258147 -r--r--r--     4 root     wheel  -   3693 Jul 23 05:40 iNode258147
 258148 -r--r--r--     4 root     wheel  -   3659 Jul 23 05:40 iNode258148
 258208 -r--r--r--     2 root     wheel  -   3243 Jul 23 05:40 iNode258208
 258223 -r--r--r--    13 root     wheel  -   4439 Jul 23 05:40 iNode258223
 258224 -r--r--r--     3 root     wheel  -   3669 Jul 23 05:40 iNode258224
 258225 -r--r--r--     3 root     wheel  -   3761 Jul 23 05:40 iNode258225
 258226 -r--r--r--     4 root     wheel  -   3849 Jul 23 05:40 iNode258226
 258229 -r--r--r--     4 root     wheel  -   4214 Jul 23 05:40 iNode258229
 258254 -r--r--r--     3 root     wheel  -   3451 Jul 23 05:40 iNode258254
 258271 -r--r--r--     2 root     wheel  -   4104 Jul 23 05:40 iNode258271
 258288 -r--r--r--     3 root     wheel  -   3835 Jul 23 05:40 iNode258288
 258290 -r--r--r--     8 root     wheel  -   7047 Jul 23 05:40 iNode258290
 258294 -r--r--r--     4 root     wheel  -   3922 Jul 23 05:40 iNode258294
 258295 -r--r--r--     2 root     wheel  -   3766 Jul 23 05:40 iNode258295
 258300 -r--r--r--     3 root     wheel  -   3992 Jul 23 05:40 iNode258300
 258306 -r--r--r--    10 root     wheel  -   5257 Jul 23 05:40 iNode258306
 258343 -r--r--r--    15 root     wheel  -   5108 Jul 23 05:40 iNode258343
 258359 -r--r--r--     3 root     wheel  -   4442 Jul 23 05:40 iNode258359
 258361 -r--r--r--     8 root     wheel  -   5069 Jul 23 05:40 iNode258361
 258369 -r--r--r--     2 root     wheel  -   4825 Jul 23 05:40 iNode258369
 258372 -r--r--r--     3 root     wheel  -   4917 Jul 23 05:40 iNode258372
 258394 -r--r--r--    18 root     wheel  -   5430 Jul 23 05:40 iNode258394
 258404 -r--r--r--     3 root     wheel  -   3803 Jul 23 05:40 iNode258404
 258413 -r--r--r--     7 root     wheel  -   3598 Jul 23 05:40 iNode258413
 258508 -r--r--r--     2 root     wheel  -   2903 Jul 23 05:40 iNode258508
 258521 -r--r--r--     2 root     wheel  -   3165 Jul 23 05:40 iNode258521
 258531 -r--r--r--     6 root     wheel  -   7650 Jul 23 05:40 iNode258531
 258541 -r--r--r--    11 root     wheel  -   3193 Jul 23 05:40 iNode258541
 258556 -r--r--r--     6 root     wheel  -   3432 Jul 23 05:40 iNode258556
 258571 -r--r--r--     2 root     wheel  -   3618 Jul 23 05:40 iNode258571
 258603 -r--r--r--    15 root     wheel  -   6432 Jul 23 05:46 iNode258603
 258610 -r--r--r--     8 root     wheel  -   5843 Jul 23 05:46 iNode258610
 258611 -r--r--r--     7 root     wheel  -   4943 Jul 23 05:46 iNode258611
 258612 -r--r--r--     7 root     wheel  -   5798 Jul 23 05:46 iNode258612
 258613 -r--r--r--     6 root     wheel  -   3969 Jul 23 05:46 iNode258613
 258614 -r--r--r--     2 root     wheel  -   2744 Jul 23 05:46 iNode258614
 258615 -r--r--r--    28 root     wheel  -   4242 Jul 23 05:46 iNode258615
 258616 -r--r--r--     8 root     wheel  -   4628 Jul 23 05:46 iNode258616
 258617 -r--r--r--     7 root     wheel  -   4583 Jul 23 05:46 iNode258617
 258621 -r--r--r--     6 root     wheel  -   3889 Jul 23 05:46 iNode258621
 258633 -r--r--r--    13 root     wheel  -   4488 Jul 23 05:46 iNode258633
 258636 -r--r--r--     9 root     wheel  -   6940 Jul 23 05:46 iNode258636
 258637 -r--r--r--     2 root     wheel  -   3269 Jul 23 05:46 iNode258637
 258639 -r--r--r--     2 root     wheel  -   3542 Jul 23 05:46 iNode258639
 258642 -r--r--r--     2 root     wheel  -   3165 Jul 23 05:46 iNode258642
 258646 -r--r--r--     4 root     wheel  -  10593 Jul 23 05:46 iNode258646
 258656 -r--r--r--     2 root     wheel  -   3392 Jul 23 05:46 iNode258656
 258657 -r--r--r--     2 root     wheel  -   4560 Jul 23 05:46 iNode258657
 258658 -r--r--r--     2 root     wheel  -   3557 Jul 23 05:46 iNode258658
 258659 -r--r--r--     2 root     wheel  -   3705 Jul 23 05:46 iNode258659
 258660 -r--r--r--     3 root     wheel  -   6145 Jul 23 05:46 iNode258660
 258661 -r--r--r--     2 root     wheel  -   9146 Jul 23 05:46 iNode258661
 258662 -r--r--r--    10 root     wheel  -  11214 Jul 23 05:46 iNode258662
 258664 -r--r--r--     2 root     wheel  -   4308 Jul 23 05:46 iNode258664
 258665 -r--r--r--     4 root     wheel  -   4662 Jul 23 05:46 iNode258665
 258694 -r--r--r--     4 root     wheel  -   4657 Jul 23 05:46 iNode258694
 258699 -r--r--r--     8 root     wheel  -   5824 Jul 23 05:46 iNode258699
 258700 -r--r--r--     3 root     wheel  -   3797 Jul 23 05:46 iNode258700
 258708 -r--r--r--     3 root     wheel  -   3519 Jul 23 05:46 iNode258708
 258716 -r--r--r--     2 root     wheel  -   3502 Jul 23 05:46 iNode258716
 258717 -r--r--r--     4 root     wheel  -   4135 Jul 23 05:46 iNode258717
 258719 -r--r--r--     2 root     wheel  -   3102 Jul 23 05:46 iNode258719
 258723 -r--r--r--     4 root     wheel  -   3735 Jul 23 05:46 iNode258723
 258727 -r--r--r--     3 root     wheel  -   3526 Jul 23 05:46 iNode258727
 258730 -r--r--r--     2 root     wheel  -   3178 Jul 23 05:46 iNode258730
 258734 -r--r--r--     2 root     wheel  -   3244 Jul 23 05:46 iNode258734
 258759 -r--r--r--     2 root     wheel  -   3245 Jul 23 05:46 iNode258759
 258760 -r--r--r--     3 root     wheel  -   3537 Jul 23 05:46 iNode258760
 258763 -r--r--r--     4 root     wheel  -   3616 Jul 23 05:46 iNode258763
 258764 -r--r--r--     2 root     wheel  -   2905 Jul 23 05:46 iNode258764
 258773 -r--r--r--     3 root     wheel  -   3473 Jul 23 05:46 iNode258773
 258778 -r--r--r--     2 root     wheel  -   3426 Jul 23 05:46 iNode258778
 258782 -r--r--r--     2 root     wheel  -   3086 Jul 23 05:46 iNode258782
 258783 -r--r--r--     2 root     wheel  -   2832 Jul 23 05:46 iNode258783
 258786 -r--r--r--     2 root     wheel  -   3275 Jul 23 05:46 iNode258786
 258792 -r--r--r--     2 root     wheel  -   3458 Jul 23 05:46 iNode258792
 258813 -r--r--r--     2 root     wheel  -   3835 Jul 23 05:46 iNode258813
 258816 -r--r--r--     2 root     wheel  -   3068 Jul 23 05:46 iNode258816
 258824 -r--r--r--     3 root     wheel  -   3642 Jul 23 05:46 iNode258824
 258877 -r--r--r--     2 root     wheel  -   3279 Jul 23 05:46 iNode258877
 258913 -r--r--r--    14 root     wheel  -   4801 Jul 23 05:46 iNode258913
 258916 -r--r--r--     4 root     wheel  -   2797 Jul 23 05:46 iNode258916
 259057 -r--r--r--     2 root     wheel  -   3832 Aug  1 07:49 iNode259057
 269220 -rw-r--r--     2 root     wheel  -    437 May 18  2009 iNode269220
 269221 -rw-r--r--     4 root     wheel  -    411 May 18  2009 iNode269221
 269223 -rw-r--r--     6 root     wheel  -    608 May 18  2009 iNode269223
 269228 -rw-r--r--     3 root     wheel  -   1420 May 18  2009 iNode269228
 269229 -rw-r--r--     5 root     wheel  -   1011 May 18  2009 iNode269229
 269231 -rw-r--r--     3 root     wheel  -    675 May 18  2009 iNode269231
 269234 -rw-r--r--     5 root     wheel  -   1152 May 18  2009 iNode269234
 269236 -rw-r--r--     3 root     wheel  -    399 May 18  2009 iNode269236
 269239 -rw-r--r--     5 root     wheel  -    626 May 18  2009 iNode269239
 269240 -rw-r--r--     4 root     wheel  -   1103 May 18  2009 iNode269240
 269244 -rw-r--r--     8 root     wheel  -    816 May 18  2009 iNode269244
 269253 -rw-r--r--     2 root     wheel  -   1868 May 18  2009 iNode269253
 269254 -rw-r--r--     2 root     wheel  -   1868 May 18  2009 iNode269254
 269255 -rw-r--r--     2 root     wheel  -   1883 May 18  2009 iNode269255
 269256 -rw-r--r--     2 root     wheel  -   1873 May 18  2009 iNode269256
 269257 -rw-r--r--     2 root     wheel  -   1883 May 18  2009 iNode269257
 269259 -rw-r--r--     3 root     wheel  -    431 May 18  2009 iNode269259
 269261 -rw-r--r--     2 root     wheel  -    775 May 18  2009 iNode269261
 269262 -rw-r--r--     2 root     wheel  -    773 May 18  2009 iNode269262
 269269 -rw-r--r--     3 root     wheel  -   1295 May 18  2009 iNode269269
 269275 -rw-r--r--     2 root     wheel  -   1770 May 18  2009 iNode269275
 269276 -rw-r--r--     3 root     wheel  -   1417 May 18  2009 iNode269276
 269278 -rw-r--r--     3 root     wheel  -   1174 May 18  2009 iNode269278
 269279 -rw-r--r--     3 root     wheel  -    666 May 18  2009 iNode269279
 269280 -rw-r--r--     3 root     wheel  -    694 May 18  2009 iNode269280
 269281 -rw-r--r--     3 root     wheel  -   1165 May 18  2009 iNode269281
 269282 -rw-r--r--     3 root     wheel  -   1174 May 18  2009 iNode269282
 269283 -rw-r--r--     3 root     wheel  -    666 May 18  2009 iNode269283
 269284 -rw-r--r--     3 root     wheel  -    694 May 18  2009 iNode269284
 269285 -rw-r--r--     3 root     wheel  -   1165 May 18  2009 iNode269285
 269286 -rw-r--r--     3 root     wheel  -    743 May 18  2009 iNode269286
 269287 -rw-r--r--     3 root     wheel  -    743 May 18  2009 iNode269287
 269288 -rw-r--r--     3 root     wheel  -    553 May 18  2009 iNode269288
 269289 -rw-r--r--     3 root     wheel  -    582 May 18  2009 iNode269289
 269290 -rw-r--r--     3 root     wheel  -    614 May 18  2009 iNode269290
 269291 -rw-r--r--     3 root     wheel  -   1170 May 18  2009 iNode269291
 269292 -rw-r--r--     3 root     wheel  -    652 May 18  2009 iNode269292
 269293 -rw-r--r--     3 root     wheel  -    694 May 18  2009 iNode269293
 269294 -rw-r--r--     3 root     wheel  -   1161 May 18  2009 iNode269294
 269296 -rw-r--r--     2 root     wheel  -   1503 May 18  2009 iNode269296
 269297 -rw-r--r--     4 root     wheel  -   1299 May 18  2009 iNode269297
 269300 -rw-r--r--     3 root     wheel  -   1293 May 18  2009 iNode269300
 269301 -rw-r--r--     4 root     wheel  -   1295 May 18  2009 iNode269301
 269307 -rw-r--r--     2 root     wheel  -    571 May 18  2009 iNode269307
 269308 -rw-r--r--     5 root     wheel  -    481 May 18  2009 iNode269308
 269309 -rw-r--r--     2 root     wheel  -    444 May 18  2009 iNode269309
 269313 -rw-r--r--     2 root     wheel  -   1227 May 18  2009 iNode269313
 269322 -rw-r--r--     3 root     wheel  -   1278 May 18  2009 iNode269322
 269323 -rw-r--r--     2 root     wheel  -   1276 May 18  2009 iNode269323
 269324 -rw-r--r--     2 root     wheel  -   1319 May 18  2009 iNode269324
 269325 -rw-r--r--     2 root     wheel  -   1331 May 18  2009 iNode269325
 269326 -rw-r--r--     2 root     wheel  -   1351 May 18  2009 iNode269326
 269327 -rw-r--r--     2 root     wheel  -   1361 May 18  2009 iNode269327
 269328 -rw-r--r--     2 root     wheel  -   1404 May 18  2009 iNode269328
 269329 -rw-r--r--     2 root     wheel  -   1414 May 18  2009 iNode269329
 269364 -rw-r--r--     3 root     wheel  -    551 May 18  2009 iNode269364
 269365 -rw-r--r--     2 root     wheel  -    473 May 18  2009 iNode269365
 269366 -rw-r--r--     2 root     wheel  -    498 May 18  2009 iNode269366
 269370 -rw-r--r--     2 root     wheel  -    471 May 18  2009 iNode269370
 269371 -rw-r--r--     3 root     wheel  -    520 May 18  2009 iNode269371
 269373 -rw-r--r--     2 root     wheel  -    350 May 18  2009 iNode269373
 269386 -rw-r--r--     2 root     wheel  -    470 May 18  2009 iNode269386
 269396 -rw-r--r--     3 root     wheel  -    357 May 18  2009 iNode269396
 269401 -rw-r--r--     3 root     wheel  -    857 May 18  2009 iNode269401
 269402 -rw-r--r--     6 root     wheel  -    891 May 18  2009 iNode269402
 269403 -rw-r--r--     3 root     wheel  -    990 May 18  2009 iNode269403
 269406 -rw-r--r--     2 root     wheel  -    864 May 18  2009 iNode269406
 269407 -rw-r--r--     2 root     wheel  -    875 May 18  2009 iNode269407
 269408 -rw-r--r--     4 root     wheel  -    640 May 18  2009 iNode269408
 269433 -rw-r--r--     3 root     wheel  -    709 May 18  2009 iNode269433
 269434 -rw-r--r--     3 root     wheel  -    696 May 18  2009 iNode269434
 269439 -rw-r--r--     2 root     wheel  -    502 May 18  2009 iNode269439
 269475 -rw-r--r--     2 root     wheel  -   1370 May 18  2009 iNode269475
 269481 -rw-r--r--     2 root     wheel  -    476 May 18  2009 iNode269481
 269484 -rw-r--r--     2 root     wheel  -   1518 May 18  2009 iNode269484
 269485 -rw-r--r--     2 root     wheel  -    735 May 18  2009 iNode269485
 269487 -rw-r--r--     2 root     wheel  -   1502 May 18  2009 iNode269487
 269488 -rw-r--r--     3 root     wheel  -   1478 May 18  2009 iNode269488
 269489 -rw-r--r--     3 root     wheel  -   1459 May 18  2009 iNode269489
 269490 -rw-r--r--     2 root     wheel  -   1496 May 18  2009 iNode269490
 269491 -rw-r--r--     2 root     wheel  -   1252 May 18  2009 iNode269491
 269492 -rw-r--r--     2 root     wheel  -   1496 May 18  2009 iNode269492
 269493 -rw-r--r--     2 root     wheel  -   1252 May 18  2009 iNode269493
 269494 -rw-r--r--     3 root     wheel  -   1502 May 18  2009 iNode269494
 269495 -rw-r--r--     3 root     wheel  -   1264 May 18  2009 iNode269495
 269496 -rw-r--r--     2 root     wheel  -   1496 May 18  2009 iNode269496
 269497 -rw-r--r--     2 root     wheel  -   1252 May 18  2009 iNode269497
 269510 -rw-r--r--     2 root     wheel  -    203 May 18  2009 iNode269510
 269511 -rw-r--r--     2 root     wheel  -    424 May 18  2009 iNode269511
 269523 -rw-r--r--     2 root     wheel  -    364 May 18  2009 iNode269523
 269529 -rw-r--r--     2 root     wheel  -    461 May 18  2009 iNode269529
 269532 -rw-r--r--     2 root     wheel  -   1474 May 18  2009 iNode269532
 269535 -rw-r--r--     2 root     wheel  -   1478 May 18  2009 iNode269535
 269542 -rw-r--r--     3 root     wheel  -   1136 May 18  2009 iNode269542
 269544 -rw-r--r--     3 root     wheel  -   1129 May 18  2009 iNode269544
 269545 -rw-r--r--     3 root     wheel  -   1135 May 18  2009 iNode269545
 269546 -rw-r--r--     3 root     wheel  -   1373 May 18  2009 iNode269546
 269547 -rw-r--r--     3 root     wheel  -    471 May 18  2009 iNode269547
 269548 -rw-r--r--     3 root     wheel  -   1369 May 18  2009 iNode269548
 269549 -rw-r--r--     3 root     wheel  -   1385 May 18  2009 iNode269549
 269550 -rw-r--r--     3 root     wheel  -   1393 May 18  2009 iNode269550
 269551 -rw-r--r--     3 root     wheel  -   1379 May 18  2009 iNode269551
 269552 -rw-r--r--     3 root     wheel  -   1385 May 18  2009 iNode269552
 269553 -rw-r--r--     3 root     wheel  -   1391 May 18  2009 iNode269553
 269554 -rw-r--r--     3 root     wheel  -   1399 May 18  2009 iNode269554
 269555 -rw-r--r--     2 root     wheel  -    906 May 18  2009 iNode269555
 269556 -rw-r--r--     2 root     wheel  -    910 May 18  2009 iNode269556
 269557 -rw-r--r--     2 root     wheel  -    543 May 18  2009 iNode269557
 269558 -rw-r--r--     2 root     wheel  -    771 May 18  2009 iNode269558
 269559 -rw-r--r--     2 root     wheel  -    792 May 18  2009 iNode269559
 269560 -rw-r--r--     2 root     wheel  -    486 May 18  2009 iNode269560
 269561 -rw-r--r--     3 root     wheel  -   1508 May 18  2009 iNode269561
 269562 -rw-r--r--     3 root     wheel  -   1536 May 18  2009 iNode269562
 269563 -rw-r--r--     3 root     wheel  -   1536 May 18  2009 iNode269563
 269564 -rw-r--r--     2 root     wheel  -    806 May 18  2009 iNode269564
 269565 -rw-r--r--     2 root     wheel  -   1800 May 18  2009 iNode269565
 269566 -rw-r--r--     4 root     wheel  -   1117 May 18  2009 iNode269566
 269567 -rw-r--r--     3 root     wheel  -   1081 May 18  2009 iNode269567
 269568 -rw-r--r--     2 root     wheel  -   1182 May 18  2009 iNode269568
 269569 -rw-r--r--     2 root     wheel  -   1327 May 18  2009 iNode269569
 269572 -rw-r--r--     2 root     wheel  -   1865 May 18  2009 iNode269572
 269616 -rw-r--r--     3 root     wheel  -    547 May 18  2009 iNode269616
 269617 -rw-r--r--     3 root     wheel  -    632 May 18  2009 iNode269617
 269618 -rw-r--r--     3 root     wheel  -    632 May 18  2009 iNode269618
 269619 -rw-r--r--     4 root     wheel  -    464 May 18  2009 iNode269619
 269651 -rw-r--r--     2 root     wheel  -    697 May 18  2009 iNode269651
 269656 -rw-r--r--     3 root     wheel  -   1159 May 18  2009 iNode269656
 269659 -rw-r--r--     2 root     wheel  -   1180 May 18  2009 iNode269659
 269665 -rw-r--r--     2 root     wheel  -   1167 May 18  2009 iNode269665
 269667 -rw-r--r--     2 root     wheel  -   1186 May 18  2009 iNode269667
 269677 -rw-r--r--     3 root     wheel  -    421 May 18  2009 iNode269677
 269678 -rw-r--r--     2 root     wheel  -    606 May 18  2009 iNode269678
 269685 -rw-r--r--     2 root     wheel  -    509 May 18  2009 iNode269685
 269688 -rw-r--r--     3 root     wheel  -    422 May 18  2009 iNode269688
 269689 -rw-r--r--     2 root     wheel  -    333 May 18  2009 iNode269689
 269695 -rw-r--r--     2 root     wheel  -    560 May 18  2009 iNode269695
 269696 -rw-r--r--     2 root     wheel  -    609 May 18  2009 iNode269696
 269697 -rw-r--r--     2 root     wheel  -    591 May 18  2009 iNode269697
 269707 -rw-r--r--     2 root     wheel  -    490 May 18  2009 iNode269707
 269708 -rw-r--r--     2 root     wheel  -    516 May 18  2009 iNode269708
 269727 -rw-r--r--     2 root     wheel  -   1249 May 18  2009 iNode269727
 269734 -rw-r--r--     5 root     wheel  -    832 May 18  2009 iNode269734
 269735 -rw-r--r--     3 root     wheel  -    810 May 18  2009 iNode269735
 269738 -rw-r--r--     3 root     wheel  -    826 May 18  2009 iNode269738
 269742 -rw-r--r--     4 root     wheel  -    950 May 18  2009 iNode269742
 269743 -rw-r--r--     2 root     wheel  -    933 May 18  2009 iNode269743
 269746 -rw-r--r--     2 root     wheel  -    940 May 18  2009 iNode269746
 269747 -rw-r--r--     2 root     wheel  -    950 May 18  2009 iNode269747
 269750 -rw-r--r--     4 root     wheel  -    970 May 18  2009 iNode269750
 269753 -rw-r--r--     3 root     wheel  -    560 May 18  2009 iNode269753
 269754 -rw-r--r--     4 root     wheel  -    551 May 18  2009 iNode269754
 269758 -rw-r--r--     2 root     wheel  -    338 May 18  2009 iNode269758
 269759 -rw-r--r--     2 root     wheel  -    170 May 18  2009 iNode269759
 269760 -rw-r--r--     2 root     wheel  -    554 May 18  2009 iNode269760
 269762 -rw-r--r--     4 root     wheel  -    527 May 18  2009 iNode269762
 269771 -rw-r--r--     2 root     wheel  -    523 May 18  2009 iNode269771
 269780 -rw-r--r--     2 root     wheel  -    420 May 18  2009 iNode269780
 269781 -rw-r--r--     2 root     wheel  -    586 May 18  2009 iNode269781
 269798 -rw-r--r--     3 root     wheel  -    462 May 18  2009 iNode269798
 269801 -rw-r--r--     2 root     wheel  -    377 May 18  2009 iNode269801
 269802 -rw-r--r--     3 root     wheel  -    456 May 18  2009 iNode269802
 269803 -rw-r--r--     2 root     wheel  -    440 May 18  2009 iNode269803
 269816 -rw-r--r--     2 root     wheel  -   1476 May 18  2009 iNode269816
 269817 -rw-r--r--     2 root     wheel  -   1510 May 18  2009 iNode269817
 269818 -rw-r--r--     4 root     wheel  -   1510 May 18  2009 iNode269818
 269819 -rw-r--r--     4 root     wheel  -   1524 May 18  2009 iNode269819
 269839 -rw-r--r--     2 root     wheel  -   1270 May 18  2009 iNode269839
 269840 -rw-r--r--     2 root     wheel  -   1522 May 18  2009 iNode269840
 269841 -rw-r--r--     2 root     wheel  -   1508 May 18  2009 iNode269841
 269842 -rw-r--r--     2 root     wheel  -   1298 May 18  2009 iNode269842
 269854 -rw-r--r--     2 root     wheel  -   1518 May 18  2009 iNode269854
 269855 -rw-r--r--     2 root     wheel  -   1270 May 18  2009 iNode269855
 269856 -rw-r--r--     2 root     wheel  -   1508 May 18  2009 iNode269856
 269857 -rw-r--r--     2 root     wheel  -   1298 May 18  2009 iNode269857
 269873 -rw-r--r--     3 root     wheel  -    370 May 18  2009 iNode269873
 269881 -rw-r--r--     2 root     wheel  -    400 May 18  2009 iNode269881
 269884 -rw-r--r--     2 root     wheel  -   1565 May 18  2009 iNode269884
 269887 -rw-r--r--     2 root     wheel  -    476 May 18  2009 iNode269887
 269888 -rw-r--r--     2 root     wheel  -    414 May 18  2009 iNode269888
 269892 -rw-r--r--     2 root     wheel  -    405 May 18  2009 iNode269892
 269895 -rw-r--r--     2 root     wheel  -    960 May 18  2009 iNode269895
 269898 -rw-r--r--     2 root     wheel  -   1333 May 18  2009 iNode269898
 269899 -rw-r--r--     2 root     wheel  -    990 May 18  2009 iNode269899
 269900 -rw-r--r--     2 root     wheel  -   1283 May 18  2009 iNode269900
 269901 -rw-r--r--     2 root     wheel  -   1372 May 18  2009 iNode269901
 269902 -rw-r--r--     2 root     wheel  -   1005 May 18  2009 iNode269902
 269913 -rw-r--r--     4 root     wheel  -   1170 May 18  2009 iNode269913
 269914 -rw-r--r--     2 root     wheel  -   1170 May 18  2009 iNode269914
 269915 -rw-r--r--     5 root     wheel  -   1031 May 18  2009 iNode269915
 269932 -rw-r--r--     2 root     wheel  -   2146 May 18  2009 iNode269932
 269933 -rw-r--r--     2 root     wheel  -   1482 May 18  2009 iNode269933
 269938 -rw-r--r--     4 root     wheel  -   1154 May 18  2009 iNode269938
 269941 -rw-r--r--     4 root     wheel  -   1492 May 18  2009 iNode269941
 269942 -rw-r--r--     4 root     wheel  -   1575 May 18  2009 iNode269942
 269943 -rw-r--r--     4 root     wheel  -   1606 May 18  2009 iNode269943
 269944 -rw-r--r--     4 root     wheel  -   1175 May 18  2009 iNode269944
 269945 -rw-r--r--     4 root     wheel  -   1531 May 18  2009 iNode269945
 269956 -rw-r--r--     4 root     wheel  -   1347 May 18  2009 iNode269956
 269957 -rw-r--r--     4 root     wheel  -   1371 May 18  2009 iNode269957
 269958 -rw-r--r--     7 root     wheel  -   1199 May 18  2009 iNode269958
 269959 -rw-r--r--     4 root     wheel  -   1423 May 18  2009 iNode269959
 269960 -rw-r--r--     4 root     wheel  -   1417 May 18  2009 iNode269960
 269961 -rw-r--r--     4 root     wheel  -   1367 May 18  2009 iNode269961
 269975 -rw-r--r--     2 root     wheel  -   1335 May 18  2009 iNode269975
 269976 -rw-r--r--     2 root     wheel  -   1355 May 18  2009 iNode269976
 269977 -rw-r--r--     2 root     wheel  -   1409 May 18  2009 iNode269977
 269978 -rw-r--r--     2 root     wheel  -   1403 May 18  2009 iNode269978
 269979 -rw-r--r--     2 root     wheel  -   1355 May 18  2009 iNode269979
 269980 -rw-r--r--     2 root     wheel  -   1321 May 18  2009 iNode269980
 269981 -rw-r--r--     2 root     wheel  -   1341 May 18  2009 iNode269981
 269982 -rw-r--r--     2 root     wheel  -   1403 May 18  2009 iNode269982
 269983 -rw-r--r--     2 root     wheel  -   1395 May 18  2009 iNode269983
 269984 -rw-r--r--     2 root     wheel  -   1341 May 18  2009 iNode269984
 269985 -rw-r--r--     2 root     wheel  -   1552 May 18  2009 iNode269985
 269986 -rw-r--r--     2 root     wheel  -   1821 May 18  2009 iNode269986
 269987 -rw-r--r--     2 root     wheel  -   1730 May 18  2009 iNode269987
 269988 -rw-r--r--     2 root     wheel  -   1750 May 18  2009 iNode269988
 269989 -rw-r--r--     2 root     wheel  -   1749 May 18  2009 iNode269989
 269990 -rw-r--r--     2 root     wheel  -   1729 May 18  2009 iNode269990
 269991 -rw-r--r--     2 root     wheel  -   1810 May 18  2009 iNode269991
 269992 -rw-r--r--     2 root     wheel  -   1809 May 18  2009 iNode269992
 269993 -rw-r--r--     2 root     wheel  -   1804 May 18  2009 iNode269993
 269994 -rw-r--r--     2 root     wheel  -   1803 May 18  2009 iNode269994
 269995 -rw-r--r--     2 root     wheel  -   1748 May 18  2009 iNode269995
 269996 -rw-r--r--     2 root     wheel  -   1749 May 18  2009 iNode269996
 270067 -rw-r--r--     2 root     wheel  -   2266 May 18  2009 iNode270067
 270068 -rw-r--r--     2 root     wheel  -   2343 May 18  2009 iNode270068
 270069 -rw-r--r--     2 root     wheel  -   1557 May 18  2009 iNode270069
 270084 -rw-r--r--     2 root     wheel  -   1159 May 18  2009 iNode270084
 270093 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270093
 270094 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270094
 270095 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270095
 270096 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270096
 270097 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270097
 270098 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270098
 270099 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270099
 270100 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270100
 270101 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270101
 270102 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270102
 270103 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270103
 270104 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270104
 270105 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270105
 270106 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270106
 270107 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270107
 270108 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270108
 270109 -rw-r--r--     2 root     wheel  -   1200 May 18  2009 iNode270109
 270110 -rw-r--r--     2 root     wheel  -    971 May 18  2009 iNode270110
 270111 -rw-r--r--     2 root     wheel  -   1196 May 18  2009 iNode270111
 270112 -rw-r--r--     2 root     wheel  -    969 May 18  2009 iNode270112
 270113 -rw-r--r--     2 root     wheel  -   1196 May 18  2009 iNode270113
 270114 -rw-r--r--     2 root     wheel  -    969 May 18  2009 iNode270114
 270115 -rw-r--r--     2 root     wheel  -   1196 May 18  2009 iNode270115
 270116 -rw-r--r--     2 root     wheel  -    969 May 18  2009 iNode270116
 270117 -rw-r--r--     2 root     wheel  -   1198 May 18  2009 iNode270117
 270118 -rw-r--r--     2 root     wheel  -   1210 May 18  2009 iNode270118
 270119 -rw-r--r--     2 root     wheel  -   1218 May 18  2009 iNode270119
 270120 -rw-r--r--     2 root     wheel  -    949 May 18  2009 iNode270120
 270121 -rw-r--r--     2 root     wheel  -    995 May 18  2009 iNode270121
 270122 -rw-r--r--     2 root     wheel  -   1009 May 18  2009 iNode270122
 270123 -rw-r--r--     2 root     wheel  -   1017 May 18  2009 iNode270123
 270126 -rw-r--r--     2 root     wheel  -    467 May 18  2009 iNode270126
 270127 -rw-r--r--     2 root     wheel  -    371 May 18  2009 iNode270127
 270128 -rw-r--r--     4 root     wheel  -    524 May 18  2009 iNode270128
 270129 -rw-r--r--     2 root     wheel  -    430 May 18  2009 iNode270129
 270130 -rw-r--r--     3 root     wheel  -    738 May 18  2009 iNode270130
 270135 -rw-r--r--     3 root     wheel  -   1055 May 18  2009 iNode270135
 270138 -rw-r--r--     2 root     wheel  -   1065 May 18  2009 iNode270138
 270140 -rw-r--r--     2 root     wheel  -    543 May 18  2009 iNode270140
 270141 -rw-r--r--     3 root     wheel  -    354 May 18  2009 iNode270141
 270148 -rw-r--r--     2 root     wheel  -    949 May 18  2009 iNode270148
 270150 -rw-r--r--     2 root     wheel  -    992 May 18  2009 iNode270150
 270155 -rw-r--r--     2 root     wheel  -    434 May 18  2009 iNode270155
 270171 -rw-r--r--     7 root     wheel  -    429 May 18  2009 iNode270171
 270172 -rw-r--r--     3 root     wheel  -    425 May 18  2009 iNode270172
 270173 -rw-r--r--     4 root     wheel  -    391 May 18  2009 iNode270173
 270174 -rw-r--r--     2 root     wheel  -    417 May 18  2009 iNode270174
 270196 -rw-r--r--     2 root     wheel  -   1466 May 18  2009 iNode270196
 270198 -rw-r--r--     2 root     wheel  -   1441 May 18  2009 iNode270198
 270199 -rw-r--r--     2 root     wheel  -   1439 May 18  2009 iNode270199
 270201 -rw-r--r--     2 root     wheel  -    414 May 18  2009 iNode270201
 270208 -rw-r--r--     3 root     wheel  -   1134 May 18  2009 iNode270208
 270209 -rw-r--r--     3 root     wheel  -   1184 May 18  2009 iNode270209
 270229 -rw-r--r--     2 root     wheel  -    654 May 18  2009 iNode270229
 270230 -rw-r--r--     2 root     wheel  -    668 May 18  2009 iNode270230
 270245 -rw-r--r--     2 root     wheel  -    473 May 18  2009 iNode270245
 270247 -rw-r--r--     2 root     wheel  -    542 May 18  2009 iNode270247
 270257 -rw-r--r--     2 root     wheel  -   1142 May 18  2009 iNode270257
 270260 -rw-r--r--     2 root     wheel  -   1187 May 18  2009 iNode270260
 270263 -rw-r--r--     2 root     wheel  -    370 May 18  2009 iNode270263
 270266 -rw-r--r--     2 root     wheel  -    370 May 18  2009 iNode270266
 270274 -rw-r--r--     2 root     wheel  -   1146 May 18  2009 iNode270274
 270275 -rw-r--r--     2 root     wheel  -   1185 May 18  2009 iNode270275
 270276 -rw-r--r--     2 root     wheel  -   1196 May 18  2009 iNode270276
 270283 -rw-r--r--     4 root     wheel  -   1223 May 18  2009 iNode270283
 270285 -rw-r--r--     3 root     wheel  -    645 May 18  2009 iNode270285
 270286 -rw-r--r--     2 root     wheel  -    651 May 18  2009 iNode270286
 270287 -rw-r--r--     2 root     wheel  -    668 May 18  2009 iNode270287
 270291 -rw-r--r--     2 root     wheel  -    423 May 18  2009 iNode270291
 270294 -rw-r--r--     2 root     wheel  -    679 May 18  2009 iNode270294
 270298 -rw-r--r--     3 root     wheel  -    460 May 18  2009 iNode270298
 270299 -rw-r--r--     3 root     wheel  -    513 May 18  2009 iNode270299
 270300 -rw-r--r--     4 root     wheel  -    615 May 18  2009 iNode270300
 270301 -rw-r--r--     4 root     wheel  -    631 May 18  2009 iNode270301
 270304 -rw-r--r--     2 root     wheel  -    650 May 18  2009 iNode270304
 270307 -rw-r--r--     2 root     wheel  -    445 May 18  2009 iNode270307
 270322 -rw-r--r--     2 root     wheel  -    615 May 18  2009 iNode270322
 270332 -rw-r--r--     2 root     wheel  -    699 May 18  2009 iNode270332
 270340 -rw-r--r--     3 root     wheel  -   1111 May 18  2009 iNode270340
 270346 -rw-r--r--     3 root     wheel  -    456 May 18  2009 iNode270346
 270351 -rw-r--r--     3 root     wheel  -   1263 May 18  2009 iNode270351
 270358 -rw-r--r--     2 root     wheel  -   1267 May 18  2009 iNode270358
 270359 -rw-r--r--     2 root     wheel  -   1332 May 18  2009 iNode270359
 270363 -rw-r--r--     2 root     wheel  -   1271 May 18  2009 iNode270363
 270376 -rw-r--r--     5 root     wheel  -    707 May 18  2009 iNode270376
 270377 -rw-r--r--     5 root     wheel  -    689 May 18  2009 iNode270377
 270382 -rw-r--r--     3 root     wheel  -    671 May 18  2009 iNode270382
 270383 -rw-r--r--     6 root     wheel  -    626 May 18  2009 iNode270383
 270385 -rw-r--r--     2 root     wheel  -    600 May 18  2009 iNode270385
 270386 -rw-r--r--     3 root     wheel  -    632 May 18  2009 iNode270386
 270392 -rw-r--r--     2 root     wheel  -    628 May 18  2009 iNode270392
 270396 -rw-r--r--     3 root     wheel  -   1405 May 18  2009 iNode270396
 270397 -rw-r--r--     2 root     wheel  -   1418 May 18  2009 iNode270397
 270398 -rw-r--r--     2 root     wheel  -   1421 May 18  2009 iNode270398
 270399 -rw-r--r--     2 root     wheel  -   1425 May 18  2009 iNode270399
 270414 -rw-r--r--     2 root     wheel  -   1806 May 18  2009 iNode270414
 270431 -rw-r--r--     2 root     wheel  -   1364 May 18  2009 iNode270431
 270433 -rw-r--r--     2 root     wheel  -   1115 May 18  2009 iNode270433
 270437 -rw-r--r--     2 root     wheel  -   1779 May 18  2009 iNode270437
 270442 -rw-r--r--     2 root     wheel  -    592 May 18  2009 iNode270442
 270445 -rw-r--r--     3 root     wheel  -    615 May 18  2009 iNode270445
 270460 -rw-r--r--     2 root     wheel  -   1203 May 18  2009 iNode270460
 270463 -rw-r--r--     2 root     wheel  -   1203 May 18  2009 iNode270463
 270466 -rw-r--r--     4 root     wheel  -   1265 May 18  2009 iNode270466
 270467 -rw-r--r--     3 root     wheel  -   1289 May 18  2009 iNode270467
 270476 -rw-r--r--     2 root     wheel  -   1298 May 18  2009 iNode270476
 270479 -rw-r--r--     3 root     wheel  -   1240 May 18  2009 iNode270479
 270494 -rw-r--r--     2 root     wheel  -    692 May 18  2009 iNode270494
 270495 -rw-r--r--     3 root     wheel  -    487 May 18  2009 iNode270495
 270498 -rw-r--r--     2 root     wheel  -    700 May 18  2009 iNode270498
 270502 -rw-r--r--     2 root     wheel  -    731 May 18  2009 iNode270502
 270507 -rw-r--r--     2 root     wheel  -   1211 May 18  2009 iNode270507
 270509 -rw-r--r--     2 root     wheel  -    668 May 18  2009 iNode270509
 270512 -rw-r--r--     3 root     wheel  -    562 May 18  2009 iNode270512
 270514 -rw-r--r--     2 root     wheel  -    679 May 18  2009 iNode270514
 270527 -rw-r--r--     5 root     wheel  -    535 May 18  2009 iNode270527
 270540 -rw-r--r--     2 root     wheel  -   1337 May 18  2009 iNode270540
 270549 -rw-r--r--     2 root     wheel  -    376 May 18  2009 iNode270549
 270551 -rw-r--r--     4 root     wheel  -   1008 May 18  2009 iNode270551
 270562 -rw-r--r--     2 root     wheel  -    615 May 18  2009 iNode270562
 270563 -rw-r--r--     3 root     wheel  -   1251 May 18  2009 iNode270563
 270565 -rw-r--r--     2 root     wheel  -    609 May 18  2009 iNode270565
 270570 -rw-r--r--     2 root     wheel  -    604 May 18  2009 iNode270570
 270572 -rw-r--r--     3 root     wheel  -   1830 May 18  2009 iNode270572
 270575 -rw-r--r--     2 root     wheel  -   1905 May 18  2009 iNode270575
 270582 -rw-r--r--     2 root     wheel  -    587 May 18  2009 iNode270582
 270583 -rw-r--r--     2 root     wheel  -    579 May 18  2009 iNode270583
 270594 -rw-r--r--     2 root     wheel  -   1325 May 18  2009 iNode270594
 270597 -rw-r--r--     3 root     wheel  -   1194 May 18  2009 iNode270597
 270602 -rw-r--r--     4 root     wheel  -    716 May 18  2009 iNode270602
 270605 -rw-r--r--     2 root     wheel  -    714 May 18  2009 iNode270605
 270607 -rw-r--r--     3 root     wheel  -    518 May 18  2009 iNode270607
 270612 -rw-r--r--     5 root     wheel  -   1520 May 18  2009 iNode270612
 270613 -rw-r--r--     4 root     wheel  -   1504 May 18  2009 iNode270613
 270614 -rw-r--r--     2 root     wheel  -    410 May 18  2009 iNode270614
 270619 -rw-r--r--     2 root     wheel  -    640 May 18  2009 iNode270619
 270624 -rw-r--r--     3 root     wheel  -    959 May 18  2009 iNode270624
 270625 -rw-r--r--     2 root     wheel  -    486 May 18  2009 iNode270625
 270628 -rw-r--r--     2 root     wheel  -   1175 May 18  2009 iNode270628
 270634 -rw-r--r--     3 root     wheel  -   1630 May 18  2009 iNode270634
 270637 -rw-r--r--     2 root     wheel  -    404 May 18  2009 iNode270637
 270666 -rw-r--r--     2 root     wheel  -   1695 May 18  2009 iNode270666
 270669 -rw-r--r--     3 root     wheel  -    161 May 18  2009 iNode270669
 270693 -rw-r--r--     2 root     wheel  -    354 May 18  2009 iNode270693
 270694 -rw-r--r--     2 root     wheel  -    396 May 18  2009 iNode270694
 270698 -rw-r--r--     3 root     wheel  -   1205 May 18  2009 iNode270698
 270699 -rw-r--r--     2 root     wheel  -    659 May 18  2009 iNode270699
 270718 -rw-r--r--     2 root     wheel  -    475 May 18  2009 iNode270718
 270725 -rw-r--r--     5 root     wheel  -    493 May 18  2009 iNode270725
 270726 -rw-r--r--     2 root     wheel  -    989 May 18  2009 iNode270726
 270732 -rw-r--r--     2 root     wheel  -    505 May 18  2009 iNode270732
 270736 -rw-r--r--     2 root     wheel  -    360 May 18  2009 iNode270736
 270737 -rw-r--r--     2 root     wheel  -    422 May 18  2009 iNode270737
 270757 -rw-r--r--     2 root     wheel  -   1136 May 18  2009 iNode270757
 270758 -rw-r--r--     2 root     wheel  -   1321 May 18  2009 iNode270758
 270766 -rw-r--r--     2 root     wheel  -    393 May 18  2009 iNode270766
 270768 -rw-r--r--     2 root     wheel  -   1657 May 18  2009 iNode270768
 270770 -rw-r--r--     2 root     wheel  -   1657 May 18  2009 iNode270770
 270771 -rw-r--r--     2 root     wheel  -   1425 May 18  2009 iNode270771
 270772 -rw-r--r--     2 root     wheel  -    531 May 18  2009 iNode270772
 270773 -rw-r--r--     2 root     wheel  -    603 May 18  2009 iNode270773
 270774 -rw-r--r--     2 root     wheel  -    554 May 18  2009 iNode270774
 270781 -rw-r--r--     2 root     wheel  -    842 May 18  2009 iNode270781
 270788 -rw-r--r--     2 root     wheel  -   1392 May 18  2009 iNode270788
 270790 -rw-r--r--     2 root     wheel  -   1319 May 18  2009 iNode270790
 270791 -rw-r--r--     2 root     wheel  -   1563 May 18  2009 iNode270791
 270841 -rw-r--r--     2 root     wheel  -    494 May 18  2009 iNode270841
 270846 -rw-r--r--     2 root     wheel  -   1396 May 18  2009 iNode270846
 270853 -rw-r--r--     2 root     wheel  -   1413 May 18  2009 iNode270853
 270859 -rw-r--r--     2 root     wheel  -    954 May 18  2009 iNode270859
 270869 -rw-r--r--     3 root     wheel  -    382 May 18  2009 iNode270869
 270873 -rw-r--r--     5 root     wheel  -   1201 May 18  2009 iNode270873
 270883 -rw-r--r--     5 root     wheel  -   1182 May 18  2009 iNode270883
 270884 -rw-r--r--     5 root     wheel  -   1207 May 18  2009 iNode270884
 270888 -rw-r--r--     2 root     wheel  -   1177 May 18  2009 iNode270888
 270891 -rw-r--r--     5 root     wheel  -   1197 May 18  2009 iNode270891
 270892 -rw-r--r--     8 root     wheel  -   1237 May 18  2009 iNode270892
 270893 -rw-r--r--     6 root     wheel  -   1221 May 18  2009 iNode270893
 270918 -rw-r--r--     2 root     wheel  -   1550 May 18  2009 iNode270918
 270919 -rw-r--r--     2 root     wheel  -   1579 May 18  2009 iNode270919
 270920 -rw-r--r--     2 root     wheel  -   1101 May 18  2009 iNode270920
 270921 -rw-r--r--     2 root     wheel  -   1140 May 18  2009 iNode270921
 270922 -rw-r--r--     2 root     wheel  -   1301 May 18  2009 iNode270922
 270924 -rw-r--r--     2 root     wheel  -   1639 May 18  2009 iNode270924
 270925 -rw-r--r--     2 root     wheel  -   1668 May 18  2009 iNode270925
 270926 -rw-r--r--     2 root     wheel  -   1190 May 18  2009 iNode270926
 270927 -rw-r--r--     2 root     wheel  -   1229 May 18  2009 iNode270927
 270928 -rw-r--r--     2 root     wheel  -   1390 May 18  2009 iNode270928
 270956 -rw-r--r--     2 root     wheel  -   1500 May 18  2009 iNode270956
 270957 -rw-r--r--     2 root     wheel  -   1492 May 18  2009 iNode270957
 270961 -rw-r--r--     4 root     wheel  -   1518 May 18  2009 iNode270961
 270962 -rw-r--r--     4 root     wheel  -   1532 May 18  2009 iNode270962
 270963 -rw-r--r--     2 root     wheel  -   1496 May 18  2009 iNode270963
 270964 -rw-r--r--     2 root     wheel  -   1488 May 18  2009 iNode270964
 270965 -rw-r--r--     2 root     wheel  -   1502 May 18  2009 iNode270965
 270966 -rw-r--r--     2 root     wheel  -   1496 May 18  2009 iNode270966
 270967 -rw-r--r--     2 root     wheel  -   1488 May 18  2009 iNode270967
 270968 -rw-r--r--     2 root     wheel  -   1502 May 18  2009 iNode270968
 270969 -rw-r--r--     2 root     wheel  -   1496 May 18  2009 iNode270969
 270970 -rw-r--r--     2 root     wheel  -   1488 May 18  2009 iNode270970
 270971 -rw-r--r--     2 root     wheel  -   1502 May 18  2009 iNode270971
 270979 -rw-r--r--     2 root     wheel  -    591 May 18  2009 iNode270979
 270980 -rw-r--r--     2 root     wheel  -   1597 May 18  2009 iNode270980
 270981 -rw-r--r--     2 root     wheel  -   1629 May 18  2009 iNode270981
 271006 -rw-r--r--     4 root     wheel  -    379 May 18  2009 iNode271006
 271010 -rw-r--r--     2 root     wheel  -    448 May 18  2009 iNode271010
 271017 -rw-r--r--     2 root     wheel  -    447 May 18  2009 iNode271017
 271052 -rw-r--r--     2 root     wheel  -    564 May 18  2009 iNode271052
 271057 -rw-r--r--     2 root     wheel  -    430 May 18  2009 iNode271057
 271058 -rw-r--r--     2 root     wheel  -    424 May 18  2009 iNode271058
 271069 -rw-r--r--     2 root     wheel  -    546 May 18  2009 iNode271069
 271098 -rw-r--r--     2 root     wheel  -    754 May 18  2009 iNode271098
 271110 -rw-r--r--     2 root     wheel  -    412 May 18  2009 iNode271110
 271118 -rw-r--r--     2 root     wheel  -   1204 May 18  2009 iNode271118
 271119 -rw-r--r--     2 root     wheel  -    737 May 18  2009 iNode271119
 271120 -rw-r--r--     2 root     wheel  -   1204 May 18  2009 iNode271120
 271121 -rw-r--r--     2 root     wheel  -    737 May 18  2009 iNode271121
 271122 -rw-r--r--     2 root     wheel  -   1204 May 18  2009 iNode271122
 271125 -rw-r--r--     2 root     wheel  -    741 May 18  2009 iNode271125
 271163 -rw-r--r--     3 root     wheel  -    459 May 18  2009 iNode271163
 271172 -rw-r--r--     2 root     wheel  -    368 May 18  2009 iNode271172
 271200 -rw-r--r--     2 root     wheel  -    521 May 18  2009 iNode271200
 271230 -rw-r--r--     2 root     wheel  -    152 May 18  2009 iNode271230
 271235 -rw-r--r--     2 root     wheel  -   1369 May 18  2009 iNode271235
 271241 -rw-r--r--     2 root     wheel  -    364 May 18  2009 iNode271241
 271244 -rw-r--r--     2 root     wheel  -    581 May 18  2009 iNode271244
 271245 -rw-r--r--     2 root     wheel  -    583 May 18  2009 iNode271245
 271253 -rw-r--r--     3 root     wheel  -    585 May 18  2009 iNode271253
 271256 -rw-r--r--     2 root     wheel  -    581 May 18  2009 iNode271256
 271257 -rw-r--r--     3 root     wheel  -    595 May 18  2009 iNode271257
 271258 -rw-r--r--     3 root     wheel  -    598 May 18  2009 iNode271258
 271268 -rw-r--r--     2 root     wheel  -    855 May 18  2009 iNode271268
 271273 -rw-r--r--     2 root     wheel  -    888 May 18  2009 iNode271273
 271287 -rw-r--r--     2 root     wheel  -    541 May 18  2009 iNode271287
 271309 -rw-r--r--     2 root     wheel  -    625 May 18  2009 iNode271309
 271312 -rw-r--r--     2 root     wheel  -    645 May 18  2009 iNode271312
 271315 -rw-r--r--     3 root     wheel  -    467 May 18  2009 iNode271315
 271337 -rw-r--r--     2 root     wheel  -   3263 May 18  2009 iNode271337
 271360 -rw-r--r--     2 root     wheel  -   1027 May 18  2009 iNode271360
 271361 -rw-r--r--     2 root     wheel  -    972 May 18  2009 iNode271361
 271365 -rw-r--r--     3 root     wheel  -   1009 May 18  2009 iNode271365
 271366 -rw-r--r--     2 root     wheel  -   1024 May 18  2009 iNode271366
 271376 -rw-r--r--     2 root     wheel  -    997 May 18  2009 iNode271376
 271395 -rw-r--r--     2 root     wheel  -    566 May 18  2009 iNode271395
 271400 -rw-r--r--     2 root     wheel  -    467 May 18  2009 iNode271400
 271401 -rw-r--r--     3 root     wheel  -   1258 May 18  2009 iNode271401
 271417 -rw-r--r--     2 root     wheel  -    669 May 18  2009 iNode271417
 271421 -rw-r--r--     2 root     wheel  -    677 May 18  2009 iNode271421
 271431 -rw-r--r--     3 root     wheel  -    920 May 18  2009 iNode271431
 271432 -rw-r--r--     2 root     wheel  -    677 May 18  2009 iNode271432
 271438 -rw-r--r--     2 root     wheel  -    478 May 18  2009 iNode271438
 271457 -rw-r--r--     5 root     wheel  -    384 May 18  2009 iNode271457
 271462 -rw-r--r--     5 root     wheel  -    396 May 18  2009 iNode271462
 271468 -rw-r--r--     2 root     wheel  -   1375 May 18  2009 iNode271468
 271472 -rw-r--r--     2 root     wheel  -   1355 May 18  2009 iNode271472
 271486 -rw-r--r--     2 root     wheel  -    405 May 18  2009 iNode271486
 271490 -rw-r--r--     3 root     wheel  -    451 May 18  2009 iNode271490
 271499 -rw-r--r--     2 root     wheel  -   1159 May 18  2009 iNode271499
 271547 -rw-r--r--     2 root     wheel  -    972 May 18  2009 iNode271547
 271553 -rw-r--r--     2 root     wheel  -   1053 May 18  2009 iNode271553
 271554 -rw-r--r--     4 root     wheel  -   1172 May 18  2009 iNode271554
 271555 -rw-r--r--     4 root     wheel  -   1056 May 18  2009 iNode271555
 271556 -rw-r--r--     4 root     wheel  -   1049 May 18  2009 iNode271556
 271557 -rw-r--r--     2 root     wheel  -   1061 May 18  2009 iNode271557
 271560 -rw-r--r--     4 root     wheel  -   1195 May 18  2009 iNode271560
 271561 -rw-r--r--     2 root     wheel  -    947 May 18  2009 iNode271561
 271564 -rw-r--r--     4 root     wheel  -   1079 May 18  2009 iNode271564
 271565 -rw-r--r--     2 root     wheel  -    936 May 18  2009 iNode271565
 271568 -rw-r--r--     4 root     wheel  -   1072 May 18  2009 iNode271568
 271569 -rw-r--r--     2 root     wheel  -   1078 May 18  2009 iNode271569
 271601 -rw-r--r--     2 root     wheel  -    563 May 18  2009 iNode271601
 271604 -rw-r--r--     2 root     wheel  -   1060 May 18  2009 iNode271604
 271606 -rw-r--r--     2 root     wheel  -   1141 May 18  2009 iNode271606
 271607 -rw-r--r--     4 root     wheel  -   1260 May 18  2009 iNode271607
 271608 -rw-r--r--     4 root     wheel  -   1144 May 18  2009 iNode271608
 271609 -rw-r--r--     4 root     wheel  -   1137 May 18  2009 iNode271609
 271610 -rw-r--r--     2 root     wheel  -   1149 May 18  2009 iNode271610
 271613 -rw-r--r--     4 root     wheel  -   1283 May 18  2009 iNode271613
 271614 -rw-r--r--     2 root     wheel  -   1035 May 18  2009 iNode271614
 271617 -rw-r--r--     4 root     wheel  -   1167 May 18  2009 iNode271617
 271618 -rw-r--r--     2 root     wheel  -   1024 May 18  2009 iNode271618
 271621 -rw-r--r--     4 root     wheel  -   1160 May 18  2009 iNode271621
 271622 -rw-r--r--     2 root     wheel  -   1166 May 18  2009 iNode271622
 271676 -rw-r--r--     2 root     wheel  -   1452 May 18  2009 iNode271676
 271683 -rw-r--r--     2 root     wheel  -   1333 May 18  2009 iNode271683
 271690 -rw-r--r--     2 root     wheel  -   1345 May 18  2009 iNode271690
 271691 -rw-r--r--     2 root     wheel  -   1353 May 18  2009 iNode271691
 271696 -rw-r--r--     3 root     wheel  -    309 May 18  2009 iNode271696
 271700 -rw-r--r--     2 root     wheel  -    309 May 18  2009 iNode271700
 271705 -rw-r--r--     2 root     wheel  -    452 May 18  2009 iNode271705
 271720 -rw-r--r--     2 root     wheel  -   1189 May 18  2009 iNode271720
 271723 -rw-r--r--     2 root     wheel  -    585 May 18  2009 iNode271723
 271726 -rw-r--r--     2 root     wheel  -    561 May 18  2009 iNode271726
 271747 -rw-r--r--     2 root     wheel  -   1525 May 18  2009 iNode271747
 271748 -rw-r--r--     2 root     wheel  -    657 May 18  2009 iNode271748
 271750 -rw-r--r--     3 root     wheel  -    432 May 18  2009 iNode271750
 271762 -rw-r--r--     2 root     wheel  -   1256 May 18  2009 iNode271762
 271763 -rw-r--r--     2 root     wheel  -   1190 May 18  2009 iNode271763
 271764 -rw-r--r--     2 root     wheel  -   1221 May 18  2009 iNode271764
 271766 -rw-r--r--     2 root     wheel  -   1093 May 18  2009 iNode271766
 271768 -rw-r--r--     3 root     wheel  -   1272 May 18  2009 iNode271768
 271775 -rw-r--r--     2 root     wheel  -   1203 May 18  2009 iNode271775
 271789 -rw-r--r--     4 root     wheel  -   1249 May 18  2009 iNode271789
 271792 -rw-r--r--     2 root     wheel  -    635 May 18  2009 iNode271792
 271793 -rw-r--r--     2 root     wheel  -   1475 May 18  2009 iNode271793
 271794 -rw-r--r--     2 root     wheel  -   1303 May 18  2009 iNode271794
 271808 -rw-r--r--     2 root     wheel  -   1468 May 18  2009 iNode271808
 271809 -rw-r--r--     2 root     wheel  -   1440 May 18  2009 iNode271809
 271810 -rw-r--r--     2 root     wheel  -   1458 May 18  2009 iNode271810
 271846 -rw-r--r--     4 root     wheel  -   1688 May 18  2009 iNode271846
 271847 -rw-r--r--     3 root     wheel  -   1271 May 18  2009 iNode271847
 271848 -rw-r--r--     3 root     wheel  -   1277 May 18  2009 iNode271848
 271851 -rw-r--r--     4 root     wheel  -   1257 May 18  2009 iNode271851
 271852 -rw-r--r--     4 root     wheel  -   1269 May 18  2009 iNode271852
 271853 -rw-r--r--     4 root     wheel  -   1267 May 18  2009 iNode271853
 271854 -rw-r--r--     4 root     wheel  -   1281 May 18  2009 iNode271854
 271855 -rw-r--r--     4 root     wheel  -   1267 May 18  2009 iNode271855
 271856 -rw-r--r--     5 root     wheel  -   1299 May 18  2009 iNode271856
 271870 -rw-r--r--     2 root     wheel  -   1350 May 18  2009 iNode271870
 271871 -rw-r--r--     2 root     wheel  -   1356 May 18  2009 iNode271871
 271872 -rw-r--r--     2 root     wheel  -   1361 May 18  2009 iNode271872
 271873 -rw-r--r--     2 root     wheel  -   1373 May 18  2009 iNode271873
 271874 -rw-r--r--     2 root     wheel  -   1378 May 18  2009 iNode271874
 271875 -rw-r--r--     2 root     wheel  -   1353 May 18  2009 iNode271875
 271876 -rw-r--r--     2 root     wheel  -   1358 May 18  2009 iNode271876
 271878 -rw-r--r--     2 root     wheel  -   1368 May 18  2009 iNode271878
 271879 -rw-r--r--     2 root     wheel  -   1367 May 18  2009 iNode271879
 271880 -rw-r--r--     3 root     wheel  -   1393 May 18  2009 iNode271880
 271883 -rw-r--r--     2 root     wheel  -   1644 May 18  2009 iNode271883
 271884 -rw-r--r--     2 root     wheel  -   1632 May 18  2009 iNode271884
 271885 -rw-r--r--     2 root     wheel  -   1654 May 18  2009 iNode271885
 271886 -rw-r--r--     2 root     wheel  -   1668 May 18  2009 iNode271886
 271887 -rw-r--r--     2 root     wheel  -   1666 May 18  2009 iNode271887
 271888 -rw-r--r--     2 root     wheel  -   1041 May 18  2009 iNode271888
 271889 -rw-r--r--     2 root     wheel  -    912 May 18  2009 iNode271889
 271890 -rw-r--r--     2 root     wheel  -   1211 May 18  2009 iNode271890
 271891 -rw-r--r--     4 root     wheel  -   1225 May 18  2009 iNode271891
 271892 -rw-r--r--     2 root     wheel  -   1199 May 18  2009 iNode271892
 271893 -rw-r--r--     2 root     wheel  -   1207 May 18  2009 iNode271893
 271894 -rw-r--r--     2 root     wheel  -   1209 May 18  2009 iNode271894
 271895 -rw-r--r--     2 root     wheel  -   1241 May 18  2009 iNode271895
 271898 -rw-r--r--     2 root     wheel  -   1207 May 18  2009 iNode271898
 271899 -rw-r--r--     2 root     wheel  -   1209 May 18  2009 iNode271899
 271900 -rw-r--r--     2 root     wheel  -   1241 May 18  2009 iNode271900
 271905 -rw-r--r--     2 root     wheel  -   1233 May 18  2009 iNode271905
 271906 -rw-r--r--     3 root     wheel  -   1229 May 18  2009 iNode271906
 271907 -rw-r--r--     3 root     wheel  -   1243 May 18  2009 iNode271907
 271912 -rw-r--r--     2 root     wheel  -   1469 May 18  2009 iNode271912
 271913 -rw-r--r--     2 root     wheel  -   1487 May 18  2009 iNode271913
 271914 -rw-r--r--     2 root     wheel  -   1477 May 18  2009 iNode271914
 271915 -rw-r--r--     2 root     wheel  -   1491 May 18  2009 iNode271915
 271916 -rw-r--r--     3 root     wheel  -   2043 May 18  2009 iNode271916
 271927 -rw-r--r--     2 root     wheel  -   1109 May 18  2009 iNode271927
 271928 -rw-r--r--     2 root     wheel  -    998 May 18  2009 iNode271928
 271929 -rw-r--r--     2 root     wheel  -    988 May 18  2009 iNode271929
 271930 -rw-r--r--     2 root     wheel  -   1004 May 18  2009 iNode271930
 271931 -rw-r--r--     2 root     wheel  -   1626 May 18  2009 iNode271931
 271932 -rw-r--r--     2 root     wheel  -   1622 May 18  2009 iNode271932
 271933 -rw-r--r--     2 root     wheel  -   1628 May 18  2009 iNode271933
 271934 -rw-r--r--     2 root     wheel  -   1668 May 18  2009 iNode271934
 271935 -rw-r--r--     2 root     wheel  -   1648 May 18  2009 iNode271935
 271936 -rw-r--r--     2 root     wheel  -   1672 May 18  2009 iNode271936
 271937 -rw-r--r--     2 root     wheel  -   1628 May 18  2009 iNode271937
 271938 -rw-r--r--     2 root     wheel  -   1668 May 18  2009 iNode271938
 271939 -rw-r--r--     2 root     wheel  -   1632 May 18  2009 iNode271939
 271940 -rw-r--r--     2 root     wheel  -   1672 May 18  2009 iNode271940
 271941 -rw-r--r--     2 root     wheel  -   1672 May 18  2009 iNode271941
 271942 -rw-r--r--     2 root     wheel  -   1666 May 18  2009 iNode271942
 271943 -rw-r--r--     2 root     wheel  -   1712 May 18  2009 iNode271943
 271944 -rw-r--r--     2 root     wheel  -   1694 May 18  2009 iNode271944
 271945 -rw-r--r--     2 root     wheel  -   1726 May 18  2009 iNode271945
 271946 -rw-r--r--     2 root     wheel  -   1668 May 18  2009 iNode271946
 271947 -rw-r--r--     2 root     wheel  -   1648 May 18  2009 iNode271947
 271948 -rw-r--r--     2 root     wheel  -   1682 May 18  2009 iNode271948
 271949 -rw-r--r--     2 root     wheel  -   1355 May 18  2009 iNode271949
 271950 -rw-r--r--     2 root     wheel  -   1359 May 18  2009 iNode271950
 271951 -rw-r--r--     2 root     wheel  -   1366 May 18  2009 iNode271951
 271953 -rw-r--r--     2 root     wheel  -   1383 May 18  2009 iNode271953
 271954 -rw-r--r--     2 root     wheel  -   1394 May 18  2009 iNode271954
 271955 -rw-r--r--     2 root     wheel  -   1363 May 18  2009 iNode271955
 271956 -rw-r--r--     2 root     wheel  -   1374 May 18  2009 iNode271956
 271959 -rw-r--r--     2 root     wheel  -    790 May 18  2009 iNode271959
 271960 -rw-r--r--     2 root     wheel  -   1371 May 18  2009 iNode271960
 271961 -rw-r--r--     2 root     wheel  -   1370 May 18  2009 iNode271961
 271962 -rw-r--r--     3 root     wheel  -   1396 May 18  2009 iNode271962
 271965 -rw-r--r--     2 root     wheel  -   1638 May 18  2009 iNode271965
 271966 -rw-r--r--     2 root     wheel  -   1616 May 18  2009 iNode271966
 271967 -rw-r--r--     2 root     wheel  -   1616 May 18  2009 iNode271967
 271968 -rw-r--r--     2 root     wheel  -   1630 May 18  2009 iNode271968
 271971 -rw-r--r--     2 root     wheel  -   1586 May 18  2009 iNode271971
 271972 -rw-r--r--     2 root     wheel  -   1499 May 18  2009 iNode271972
 271973 -rw-r--r--     2 root     wheel  -   1608 May 18  2009 iNode271973
 271974 -rw-r--r--     2 root     wheel  -   1608 May 18  2009 iNode271974
 271975 -rw-r--r--     2 root     wheel  -   1622 May 18  2009 iNode271975
 271984 -rw-r--r--     2 root     wheel  -   1389 May 18  2009 iNode271984
 271985 -rw-r--r--     2 root     wheel  -   1393 May 18  2009 iNode271985
 271986 -rw-r--r--     2 root     wheel  -   1395 May 18  2009 iNode271986
 271988 -rw-r--r--     2 root     wheel  -   1405 May 18  2009 iNode271988
 271989 -rw-r--r--     2 root     wheel  -   1399 May 18  2009 iNode271989
 271990 -rw-r--r--     3 root     wheel  -   1427 May 18  2009 iNode271990
 272172 -rw-r--r--     3 root     wheel  -    356 May 18  2009 iNode272172
 272175 -rw-r--r--     2 root     wheel  -   1292 May 18  2009 iNode272175
 272178 -rw-r--r--     2 root     wheel  -    352 May 18  2009 iNode272178
 272302 -rw-r--r--     2 root     wheel  -   1501 May 18  2009 iNode272302
 272332 -rw-r--r--     3 root     wheel  -   1219 May 18  2009 iNode272332
 272344 -rw-r--r--     2 root     wheel  -    446 May 18  2009 iNode272344
 272347 -rw-r--r--     4 root     wheel  -   1124 May 18  2009 iNode272347
 272350 -rw-r--r--     2 root     wheel  -    336 May 18  2009 iNode272350
 280586 -rw-r--r--     4 root     wheel  - 413900 May 18  2009 iNode280586
 280590 -rw-r--r--     3 root     wheel  - 413900 May 18  2009 iNode280590
 280769 -rw-r--r--     4 root     wheel  - 453665 May 18  2009 iNode280769
 280770 -rw-r--r--     3 root     wheel  -  38945 May 18  2009 iNode280770
 280773 -rw-r--r--     3 root     wheel  - 453665 May 18  2009 iNode280773
 282444 -r--r--r--     2 root     wheel  -   1357 Jul 14 07:16 iNode282444
 282453 -r--r--r--     2 root     wheel  -   1474 Jul 14 07:16 iNode282453
 282460 -r--r--r--     2 root     wheel  -   2134 Aug  1 07:39 iNode282460
 283256 -rwxr-xr-x     2 root     wheel  -  30797 May 18  2009 iNode283256
 283259 -rwxr-xr-x     2 root     wheel  - 232943 May 18  2009 iNode283259
 283551 -r--r--r--     2 root     wheel  -   3518 May 18  2009 iNode283551
 283554 -r--r--r--     2 root     wheel  -   2747 May 18  2009 iNode283554
 283594 -rw-r--r--     3 root     wheel  -   1493 May 18  2009 iNode283594
 283653 -r--r--r--     2 root     wheel  -    604 May 18  2009 iNode283653
 283656 -rwxr-xr-x     2 root     wheel  - 287296 May 18  2009 iNode283656
 283659 -rw-r--r--     2 root     wheel  -   1642 May 18  2009 iNode283659
 283756 -r--r--r--     2 root     wheel  -   3657 Jul 23 05:40 iNode283756
 283757 -r--r--r--    10 root     wheel  -   6718 Jul 23 05:40 iNode283757
 283760 -r--r--r--    17 root     wheel  -  11214 Jul 23 05:40 iNode283760
 283761 -r--r--r--    10 root     wheel  -   3617 Jul 23 05:40 iNode283761
 283762 -r--r--r--    42 root     wheel  -  19981 Jul 23 05:40 iNode283762
 283765 -r--r--r--     4 root     wheel  -   5847 Jul 23 05:40 iNode283765
 283766 -r--r--r--     9 root     wheel  -   5720 Jul 23 05:40 iNode283766
 283767 -r--r--r--    12 root     wheel  -   4512 Jul 23 05:40 iNode283767
 283768 -r--r--r--    24 root     wheel  -   7495 Jul 23 05:40 iNode283768
 283781 -r--r--r--     5 root     wheel  -   4826 Jul 23 05:40 iNode283781
 283793 -r--r--r--    35 root     wheel  -  11897 Jul 23 05:40 iNode283793
 283794 -r--r--r--     2 root     wheel  -   3260 Jul 23 05:40 iNode283794
 283795 -r--r--r--     2 root     wheel  -   3786 Jul 23 05:40 iNode283795
 283815 -r--r--r--     2 root     wheel  -   3196 Jul 23 05:40 iNode283815
 283817 -r--r--r--    31 root     wheel  -  11005 Jul 23 05:40 iNode283817
 283819 -r--r--r--     3 root     wheel  -   4957 Jul 23 05:40 iNode283819
 283822 -r--r--r--     9 root     wheel  -   5515 Jul 23 05:40 iNode283822
 283826 -r--r--r--     6 root     wheel  -   5144 Jul 23 05:40 iNode283826
 283831 -r--r--r--    12 root     wheel  -   5382 Jul 23 05:40 iNode283831
 283835 -r--r--r--     2 root     wheel  -   3856 Jul 23 05:40 iNode283835
 283836 -r--r--r--     2 root     wheel  -   3127 Jul 23 05:40 iNode283836
 283838 -r--r--r--    18 root     wheel  -  11230 Jul 23 05:40 iNode283838
 283839 -r--r--r--    12 root     wheel  -   4820 Jul 23 05:40 iNode283839
 283842 -r--r--r--     9 root     wheel  -   4578 Jul 23 05:40 iNode283842
 283843 -r--r--r--     2 root     wheel  -   3895 Jul 23 05:40 iNode283843
 283844 -r--r--r--    13 root     wheel  -   6772 Jul 23 05:40 iNode283844
 283845 -r--r--r--     3 root     wheel  -   4549 Jul 23 05:40 iNode283845
 283846 -r--r--r--     3 root     wheel  -   4751 Jul 23 05:40 iNode283846
 283849 -r--r--r--    10 root     wheel  -   6319 Jul 23 05:40 iNode283849
 283850 -r--r--r--     3 root     wheel  -   5292 Jul 23 05:40 iNode283850
 283855 -r--r--r--     2 root     wheel  -   3533 Jul 23 05:40 iNode283855
 283859 -r--r--r--    12 root     wheel  -   4368 Jul 23 05:40 iNode283859
 283872 -r--r--r--     6 root     wheel  -   7185 Jul 23 05:40 iNode283872
 283873 -r--r--r--     3 root     wheel  -   3711 Jul 23 05:40 iNode283873
 283898 -r--r--r--     3 root     wheel  -   3702 Jul 23 05:40 iNode283898
 283899 -r--r--r--    10 root     wheel  -   5860 Jul 23 05:40 iNode283899
 283909 -r--r--r--     6 root     wheel  -   4196 Jul 23 05:40 iNode283909
 283917 -r--r--r--     3 root     wheel  -   3356 Jul 23 05:40 iNode283917
 283921 -r--r--r--     4 root     wheel  -   3249 Jul 23 05:40 iNode283921
 283924 -r--r--r--     9 root     wheel  -   5567 Jul 23 05:40 iNode283924
 283930 -r--r--r--     9 root     wheel  -   7777 Jul 23 05:40 iNode283930
 283933 -r--r--r--     3 root     wheel  -   4131 Jul 23 05:40 iNode283933
 283938 -r--r--r--     4 root     wheel  -   3693 Jul 23 05:40 iNode283938
 283939 -r--r--r--     4 root     wheel  -   3659 Jul 23 05:40 iNode283939
 283999 -r--r--r--     2 root     wheel  -   3243 Jul 23 05:40 iNode283999
 284014 -r--r--r--    13 root     wheel  -   4439 Jul 23 05:40 iNode284014
 284015 -r--r--r--     3 root     wheel  -   3669 Jul 23 05:40 iNode284015
 284016 -r--r--r--     3 root     wheel  -   3761 Jul 23 05:40 iNode284016
 284017 -r--r--r--     4 root     wheel  -   3849 Jul 23 05:40 iNode284017
 284020 -r--r--r--     4 root     wheel  -   4214 Jul 23 05:40 iNode284020
 284045 -r--r--r--     3 root     wheel  -   3451 Jul 23 05:40 iNode284045
 284062 -r--r--r--     2 root     wheel  -   4104 Jul 23 05:40 iNode284062
 284079 -r--r--r--     3 root     wheel  -   3835 Jul 23 05:40 iNode284079
 284081 -r--r--r--     8 root     wheel  -   7047 Jul 23 05:40 iNode284081
 284085 -r--r--r--     4 root     wheel  -   3922 Jul 23 05:40 iNode284085
 284086 -r--r--r--     2 root     wheel  -   3766 Jul 23 05:40 iNode284086
 284091 -r--r--r--     3 root     wheel  -   3992 Jul 23 05:40 iNode284091
 284097 -r--r--r--    10 root     wheel  -   5257 Jul 23 05:40 iNode284097
 284134 -r--r--r--    15 root     wheel  -   5108 Jul 23 05:40 iNode284134
 284150 -r--r--r--     3 root     wheel  -   4442 Jul 23 05:40 iNode284150
 284152 -r--r--r--     8 root     wheel  -   5069 Jul 23 05:40 iNode284152
 284160 -r--r--r--     2 root     wheel  -   4825 Jul 23 05:40 iNode284160
 284163 -r--r--r--     3 root     wheel  -   4917 Jul 23 05:40 iNode284163
 284185 -r--r--r--    18 root     wheel  -   5430 Jul 23 05:40 iNode284185
 284195 -r--r--r--     3 root     wheel  -   3803 Jul 23 05:40 iNode284195
 284204 -r--r--r--     7 root     wheel  -   3598 Jul 23 05:40 iNode284204
 284299 -r--r--r--     2 root     wheel  -   2903 Jul 23 05:40 iNode284299
 284312 -r--r--r--     2 root     wheel  -   3165 Jul 23 05:40 iNode284312
 284322 -r--r--r--     6 root     wheel  -   7650 Jul 23 05:40 iNode284322
 284332 -r--r--r--    11 root     wheel  -   3193 Jul 23 05:40 iNode284332
 284347 -r--r--r--     6 root     wheel  -   3432 Jul 23 05:40 iNode284347
 284362 -r--r--r--     2 root     wheel  -   3618 Jul 23 05:40 iNode284362
 284394 -r--r--r--    15 root     wheel  -   6432 Jul 23 05:46 iNode284394
 284401 -r--r--r--     8 root     wheel  -   5843 Jul 23 05:46 iNode284401
 284402 -r--r--r--     7 root     wheel  -   4943 Jul 23 05:46 iNode284402
 284403 -r--r--r--     7 root     wheel  -   5798 Jul 23 05:46 iNode284403
 284404 -r--r--r--     6 root     wheel  -   3969 Jul 23 05:46 iNode284404
 284405 -r--r--r--     2 root     wheel  -   2744 Jul 23 05:46 iNode284405
 284406 -r--r--r--    28 root     wheel  -   4242 Jul 23 05:46 iNode284406
 284407 -r--r--r--     8 root     wheel  -   4628 Jul 23 05:46 iNode284407
 284408 -r--r--r--     7 root     wheel  -   4583 Jul 23 05:46 iNode284408
 284412 -r--r--r--     6 root     wheel  -   3889 Jul 23 05:46 iNode284412
 284424 -r--r--r--    13 root     wheel  -   4488 Jul 23 05:46 iNode284424
 284427 -r--r--r--     9 root     wheel  -   6940 Jul 23 05:46 iNode284427
 284428 -r--r--r--     2 root     wheel  -   3269 Jul 23 05:46 iNode284428
 284430 -r--r--r--     2 root     wheel  -   3542 Jul 23 05:46 iNode284430
 284433 -r--r--r--     2 root     wheel  -   3165 Jul 23 05:46 iNode284433
 284437 -r--r--r--     4 root     wheel  -  10593 Jul 23 05:46 iNode284437
 284447 -r--r--r--     2 root     wheel  -   3392 Jul 23 05:46 iNode284447
 284448 -r--r--r--     2 root     wheel  -   4560 Jul 23 05:46 iNode284448
 284449 -r--r--r--     2 root     wheel  -   3557 Jul 23 05:46 iNode284449
 284450 -r--r--r--     2 root     wheel  -   3705 Jul 23 05:46 iNode284450
 284451 -r--r--r--     3 root     wheel  -   6145 Jul 23 05:46 iNode284451
 284452 -r--r--r--     2 root     wheel  -   9146 Jul 23 05:46 iNode284452
 284453 -r--r--r--    10 root     wheel  -  11214 Jul 23 05:46 iNode284453
 284455 -r--r--r--     2 root     wheel  -   4308 Jul 23 05:46 iNode284455
 284456 -r--r--r--     4 root     wheel  -   4662 Jul 23 05:46 iNode284456
 284485 -r--r--r--     4 root     wheel  -   4657 Jul 23 05:46 iNode284485
 284490 -r--r--r--     8 root     wheel  -   5824 Jul 23 05:46 iNode284490
 284491 -r--r--r--     3 root     wheel  -   3797 Jul 23 05:46 iNode284491
 284499 -r--r--r--     3 root     wheel  -   3519 Jul 23 05:46 iNode284499
 284507 -r--r--r--     2 root     wheel  -   3502 Jul 23 05:46 iNode284507
 284508 -r--r--r--     4 root     wheel  -   4135 Jul 23 05:46 iNode284508
 284510 -r--r--r--     2 root     wheel  -   3102 Jul 23 05:46 iNode284510
 284514 -r--r--r--     4 root     wheel  -   3735 Jul 23 05:46 iNode284514
 284518 -r--r--r--     3 root     wheel  -   3526 Jul 23 05:46 iNode284518
 284521 -r--r--r--     2 root     wheel  -   3178 Jul 23 05:46 iNode284521
 284525 -r--r--r--     2 root     wheel  -   3244 Jul 23 05:46 iNode284525
 284550 -r--r--r--     2 root     wheel  -   3245 Jul 23 05:46 iNode284550
 284551 -r--r--r--     3 root     wheel  -   3537 Jul 23 05:46 iNode284551
 284554 -r--r--r--     4 root     wheel  -   3616 Jul 23 05:46 iNode284554
 284555 -r--r--r--     2 root     wheel  -   2905 Jul 23 05:46 iNode284555
 284564 -r--r--r--     3 root     wheel  -   3473 Jul 23 05:46 iNode284564
 284569 -r--r--r--     2 root     wheel  -   3426 Jul 23 05:46 iNode284569
 284573 -r--r--r--     2 root     wheel  -   3086 Jul 23 05:46 iNode284573
 284574 -r--r--r--     2 root     wheel  -   2832 Jul 23 05:46 iNode284574
 284577 -r--r--r--     2 root     wheel  -   3275 Jul 23 05:46 iNode284577
 284583 -r--r--r--     2 root     wheel  -   3458 Jul 23 05:46 iNode284583
 284604 -r--r--r--     2 root     wheel  -   3835 Jul 23 05:46 iNode284604
 284607 -r--r--r--     2 root     wheel  -   3068 Jul 23 05:46 iNode284607
 284615 -r--r--r--     3 root     wheel  -   3642 Jul 23 05:46 iNode284615
 284668 -r--r--r--     2 root     wheel  -   3279 Jul 23 05:46 iNode284668
 284704 -r--r--r--    14 root     wheel  -   4801 Jul 23 05:46 iNode284704
 284707 -r--r--r--     4 root     wheel  -   2797 Jul 23 05:46 iNode284707
 284848 -r--r--r--     2 root     wheel  -   3832 Aug  1 07:49 iNode284848
 284938 -rwxr-xr-x     2 root     wheel  -  63728 Jul 11 10:03 iNode284938
  39661 -r--r--r--     3 root     wheel  -   2454 Jul 14 07:16 iNode39661
  39670 -r--r--r--     2 root     wheel  -   2406 Jun 24 03:30 iNode39670
  80519 -rwxr-xr-x     3 root     wheel  - 225088 May 18  2009 iNode80519
  80911 -rw-r--r--     3 root     wheel  -   2478 May 18  2009 iNode80911
  80944 -rw-r--r--     2 root     wheel  -  27100 May 18  2009 iNode80944
  81960 -rwxr-xr-x     2 root     wheel  - 291664 May 18  2009 iNode81960
  81963 -rw-r--r--     2 root     wheel  -  19311 May 18  2009 iNode81963
  82124 -r--r--r--     2 root     wheel  -   2143 May 18  2009 iNode82124
  82134 -r-xr-xr-x     2 root     wheel  - 110352 May 18  2009 iNode82134
  82138 -rw-r--r--     5 root     wheel  -  14303 Jul 29  2007 iNode82138
  82139 -rw-r--r--     5 root     wheel  -  14356 Jul 29  2007 iNode82139
  82140 -rw-r--r--     5 root     wheel  -  14297 Jul 29  2007 iNode82140
  82141 -rw-r--r--     5 root     wheel  -  14571 Jul 29  2007 iNode82141
  85503 -rw-r--r--     2 root     wheel  -   1346 Jun 24 09:44 iNode85503
  98174 -r-xr-xr-x     3 root     wheel  -  63632 May 18  2009 iNode98174
  98181 -r--r--r--     2 root     wheel  -   2580 May 18  2009 iNode98181
  98351 -rw-r--r--     2 root     wheel  -     74 Jun 24 03:41 iNode98351
  98354 -rw-r--r--     2 root     wheel  -     95 Jun 24 03:41 iNode98354
  98399 -rw-r--r--     2 root     wheel  -    238 Jun 24 03:41 iNode98399
  98403 -rw-r--r--     3 root     wheel  -    858 Jun 24 03:41 iNode98403
  98404 -rw-r--r--     2 root     wheel  -    861 Jun 24 03:41 iNode98404
  98409 -rw-r--r--     2 root     wheel  -    682 Jun 24 03:41 iNode98409
  98410 -rw-r--r--     3 root     wheel  -    410 Jun 24 03:41 iNode98410
  98413 -rw-r--r--     3 root     wheel  -    695 Jun 24 03:41 iNode98413
  98414 -rw-r--r--     2 root     wheel  -    414 Jun 24 03:41 iNode98414
  98416 -rw-r--r--     2 root     wheel  -    424 Jun 24 03:41 iNode98416
  98425 -rw-r--r--     2 root     wheel  -    134 Jun 24 03:41 iNode98425
  98445 -rw-r--r--     2 root     wheel  -   1279 Jun 24 03:41 iNode98445
  98457 -rw-r--r--     4 root     wheel  -    877 Jun 24 03:41 iNode98457
  98458 -rw-r--r--     2 root     wheel  -    811 Jun 24 03:41 iNode98458
  98460 -rw-r--r--     2 root     wheel  -    874 Jun 24 03:41 iNode98460
  98463 -rw-r--r--     3 root     wheel  -    861 Jun 24 03:41 iNode98463
  98464 -rw-r--r--     4 root     wheel  -    606 Jun 24 03:41 iNode98464
  98471 -rw-r--r--     3 root     wheel  -     73 Jun 24 03:41 iNode98471
  98475 -rw-r--r--     2 root     wheel  -   1244 Jun 24 03:41 iNode98475
  98476 -rw-r--r--     2 root     wheel  -    871 Jun 24 03:41 iNode98476
  98481 -rw-r--r--     3 root     wheel  -    869 Jun 24 03:41 iNode98481
  98491 -rw-r--r--     2 root     wheel  -    185 Jun 24 03:41 iNode98491
  98496 -rw-r--r--     2 root     wheel  -   1001 Jun 24 03:41 iNode98496
  98507 -rw-r--r--     2 root     wheel  -    236 Jun 24 03:41 iNode98507
  98511 -rw-r--r--     2 root     wheel  -    569 Jun 24 03:41 iNode98511
  98516 -rw-r--r--     2 root     wheel  -    594 Jun 24 03:41 iNode98516
  98524 -rw-r--r--     3 root     wheel  -   1267 Jun 24 03:41 iNode98524
  98527 -rw-r--r--     2 root     wheel  -    276 Jun 24 03:41 iNode98527
  98534 -rw-r--r--     2 root     wheel  -    130 Jun 24 03:41 iNode98534
  98537 -rw-r--r--     3 root     wheel  -    243 Jun 24 03:41 iNode98537
  98543 -rw-r--r--     3 root     wheel  -    381 Jun 24 03:41 iNode98543
  98549 -rw-r--r--     2 root     wheel  -    911 Jun 24 03:41 iNode98549
  98551 -rw-r--r--     2 root     wheel  -    721 Jun 24 03:41 iNode98551
  98556 -rw-r--r--     2 root     wheel  -   1311 Jun 24 03:41 iNode98556
  98559 -rw-r--r--     2 root     wheel  -     73 Jun 24 03:41 iNode98559
  98567 -rw-r--r--     2 root     wheel  -   1252 Jun 24 03:41 iNode98567
  98569 -rw-r--r--     2 root     wheel  -   1037 Jun 24 03:41 iNode98569
  98572 -rw-r--r--     2 root     wheel  -    759 Jun 24 03:41 iNode98572
  98573 -rw-r--r--     2 root     wheel  -   1038 Jun 24 03:41 iNode98573
  98581 -rw-r--r--     2 root     wheel  -    730 Jun 24 03:41 iNode98581
  98589 -rw-r--r--     3 root     wheel  -    806 Jun 24 03:41 iNode98589
  98597 -rw-r--r--     2 root     wheel  -    273 Jun 24 03:41 iNode98597
  98607 -rw-r--r--     2 root     wheel  -    109 Jun 24 03:41 iNode98607
  98609 -rw-r--r--     2 root     wheel  -    163 Jun 24 03:41 iNode98609
  98622 -rw-r--r--     2 root     wheel  -    108 Jun 24 03:41 iNode98622
  98623 -rw-r--r--     2 root     wheel  -    426 Jun 24 03:41 iNode98623
  98626 -rw-r--r--     3 root     wheel  -    993 Jun 24 03:41 iNode98626
  98629 -rw-r--r--     3 root     wheel  -    803 Jun 24 03:41 iNode98629
  98634 -rw-r--r--     2 root     wheel  -     90 Jun 24 03:41 iNode98634
  98643 -rw-r--r--     2 root     wheel  -    303 Jun 24 03:41 iNode98643
  98647 -rw-r--r--     2 root     wheel  -    112 Jun 24 03:41 iNode98647
  98650 -rw-r--r--     2 root     wheel  -    732 Jun 24 03:41 iNode98650
  98661 -rw-r--r--     2 root     wheel  -   3656 Jun 24 03:41 iNode98661
  98662 -rw-r--r--     2 root     wheel  -   3581 Jun 24 03:41 iNode98662
  98663 -rw-r--r--     2 root     wheel  -   3581 Jun 24 03:41 iNode98663
  98668 -rw-r--r--     2 root     wheel  -    152 Jun 24 03:41 iNode98668
  98669 -rw-r--r--     2 root     wheel  -    165 Jun 24 03:41 iNode98669
  98670 -rw-r--r--     2 root     wheel  -    171 Jun 24 03:41 iNode98670
  98671 -rw-r--r--     2 root     wheel  -    268 Jun 24 03:41 iNode98671
  98674 -rw-r--r--     2 root     wheel  -    610 Jun 24 03:41 iNode98674
  98677 -rw-r--r--     2 root     wheel  -     90 Jun 24 03:41 iNode98677
  98680 -rw-r--r--     2 root     wheel  -    125 Jun 24 03:41 iNode98680
  98683 -rw-r--r--     2 root     wheel  -    321 Jun 24 03:41 iNode98683
  98697 -rw-r--r--     2 root     wheel  -    664 Jun 24 03:41 iNode98697
  98703 -rw-r--r--     2 root     wheel  -    429 Jun 24 03:41 iNode98703
  98708 -rw-r--r--     4 root     wheel  -    785 Jun 24 03:41 iNode98708
  98709 -rw-r--r--     2 root     wheel  -    785 Jun 24 03:41 iNode98709
  98710 -rw-r--r--     2 root     wheel  -    160 Jun 24 03:41 iNode98710
  98711 -rw-r--r--     2 root     wheel  -    790 Jun 24 03:41 iNode98711
  98715 -rw-r--r--     2 root     wheel  -    104 Jun 24 03:41 iNode98715
  98717 -rw-r--r--     2 root     wheel  -    825 Jun 24 03:41 iNode98717
  98718 -rw-r--r--     2 root     wheel  -    655 Jun 24 03:41 iNode98718
  98722 -rw-r--r--     2 root     wheel  -    785 Jun 24 03:41 iNode98722
  98726 -rw-r--r--     2 root     wheel  -    170 Jun 24 03:41 iNode98726
  98771 -rw-r--r--     2 root     wheel  -    822 Jun 24 03:41 iNode98771
  98779 -rw-r--r--     2 root     wheel  -   1285 Jun 24 03:41 iNode98779
  98781 -rw-r--r--    10 root     wheel  -     56 Jun 24 03:41 iNode98781
  98813 -rw-r--r--     2 root     wheel  -     56 Jun 24 03:41 iNode98813
  98814 -rw-r--r--     6 root     wheel  -     56 Jun 24 03:41 iNode98814
  98822 -rw-r--r--     7 root     wheel  -   1323 Jun 24 03:41 iNode98822
  98823 -rw-r--r--     6 root     wheel  -    701 Jun 24 03:41 iNode98823
  98825 -rw-r--r--     2 root     wheel  -    806 Jun 24 03:41 iNode98825
  98829 -rw-r--r--     2 root     wheel  -    898 Jun 24 03:41 iNode98829
  98836 -rw-r--r--     2 root     wheel  -    682 Jun 24 03:41 iNode98836
  98843 -rw-r--r--     2 root     wheel  -   1264 Jun 24 03:41 iNode98843
  98854 -rw-r--r--     2 root     wheel  -    815 Jun 24 03:41 iNode98854
  98863 -rw-r--r--     3 root     wheel  -    951 Jun 24 03:41 iNode98863
  98882 -rw-r--r--     2 root     wheel  -    981 Jun 24 03:41 iNode98882
  98918 -rw-r--r--     2 root     wheel  -     87 Jun 24 03:41 iNode98918
  98937 -rw-r--r--     2 root     wheel  -    882 Jun 24 03:41 iNode98937
  98938 -rw-r--r--     2 root     wheel  -    732 Jun 24 03:41 iNode98938
  98960 -rw-r--r--     2 root     wheel  -    130 Jun 24 03:41 iNode98960
  98973 -rw-r--r--     3 root     wheel  -    125 Jun 24 03:41 iNode98973
  98985 -rw-r--r--     2 root     wheel  -     57 Jun 24 03:41 iNode98985
 999645 -r-xr-xr-x     2 root     wheel  -  55760 Oct 16 11:57 iNode999645
 999652 -r-xr-xr-x     2 root     wheel  -  85568 Nov  3 19:49 iNode999652
ls: temp1463812: No such file or directory
ls: temp1467677: No such file or directory
ls: temp1467739: No such file or directory
ls: temp1467758: No such file or directory

And some really weird stuff at the end again.

ls: temp1463812: No such file or directory
ls: temp1467677: No such file or directory
ls: temp1467739: No such file or directory
ls: temp1467758: No such file or directory

What's all that stuff? Those are your multi-linked files. Your hard links. That's where all those files go when they acquire additional links, never to return. The 'Inode' numbers generally correspond to the actual inode (CNID) values of the banished files. On previous incarnations of OS X you could go into /.vol and invoke the inodes directly to see what files they were.

You can also use lugubrious commands like the following to find where the files appear to reside in your ordinary file system.

find -x / -inum iNodeXXXXXXX

But that would take ages.

You can also use this cute shell script from Dali Rău to discover inodes for files in your current directory.

#!/bin/bash

while [[ $# != 1 || $* -eq 0 ]] ; do
    echo "EYENODE: an EYE on iNODEs";echo
    echo "  Usage:"
    echo "eyenode [integer greater than or equal to 1]"
    echo "  Lists the last [integer] files (greatest inode numbers) from";echo "  the current directory down.";echo
    echo "  Example:"
    echo "eyenode 5"
    echo "  Lists the last 5 files (greatest 5 inode numbers) in $PWD";echo " and all its subdirectories.";echo
    exit $?
done

echo $PWD;echo "---"
for inodeNumber in $(ls -1AiR | sort -nr | head -n $* | awk '{print $1}')
    do
        echo $inodeNumber : $(find "$PWD" -inum $inodeNumber -print)
    done
exit $?

Perhaps it's best now to restore permissions on this directory before going forward.

$ cd /; sudo chmod 000 '␀␀␀␀HFS+ Private Data'; sudo chflags 0100002 '␀␀␀␀HFS+ Private Data'
Password:
Password:
$ ls -@dilO '␀␀␀␀HFS+ Private Data'
18 d---------  1336 root  wheel  uchg,hidden 45424 Jan  1  1970 ␀␀␀␀HFS+ Private Data

For the record: you can go in directly with the following command - but that's not as much fun, is it?

$ sudo ls -@ailOR '/␀␀␀␀HFS+ Private Data'

Going to the /Library

Most people see what's in /Applications and /Applications/Utilities even if they don't have a good grasp of where these directories are. They get told all the time to put new applications in /Applications and they always find a link to it.

Some are even advanced enough to dig Terminal.app out of /Applications/Utilities.

But /Library is another thing. There aren't that many reasons to go in there all the time. And yet it's a huge - and potentially dangerous - repository. A lot of the exploits the platform's suffered have to do with confusion over ownership and permissions for files in here.

$ cd /Library; ls -@ailO
total 0
   364 drwxrwxr-t+  53 root  admin  - 1802 Oct 15 16:36 .
     2 drwxrwxr-t   31 root  admin  - 1122 Dec 18 07:33 ..
  2811 drwxrwxr-x   11 root  admin  -  374 Sep 18 03:45 Application Support
 28052 drwxrwxr-x    8 root  admin  -  272 Sep 14 18:15 Audio
 80492 drwxrwxrwt    7 root  admin  -  238 Dec 22 06:00 Caches
 80493 drwxr-xr-x    2 root  wheel  -   68 Jun 23 08:19 ColorPickers
 32503 drwxrwxr-x    4 root  admin  -  136 Sep 14 18:18 ColorSync
 31781 drwxrwxr-x    2 root  admin  -   68 Jul 16 08:06 Components
 45023 drwxrwxr-x    3 root  admin  -  102 May 19  2009 Compositions
 31782 drwxrwxr-x    2 root  admin  -   68 Jul 16 08:06 Contextual Menu Items
150069 drwxrwxr-x   33 root  admin  - 1122 Jul 28 07:18 Desktop Pictures
 34687 drwxr-xr-x    4 root  admin  -  136 Sep 14 18:46 Developer
 27419 drwxrwxr-x    8 root  admin  -  272 Sep 14 18:22 Dictionaries
  4431 drwxrwxr-x    9 root  admin  -  306 Nov 10 11:20 Documentation
 80494 drwxr-xr-x    2 root  wheel  -   68 Jun 23 08:19 Extensions
 80495 drwxr-xr-x    3 root  wheel  -  102 Jun 23 08:19 Filesystems
 28699 drwxrwxr-x  131 root  admin  - 4454 Nov 10 11:20 Fonts
 27417 drwxrwxr-x    3 root  admin  -  102 Sep 15 08:31 Frameworks
 17215 drwxrwxr-x    4 root  admin  -  136 Sep 14 18:15 Graphics
 28541 drwxrwxr-x    6 root  admin  -  204 Sep 14 18:16 Image Capture
 38641 drwxrwxr-x    2 root  admin  -   68 Jun 23 09:35 Input Methods
 27418 drwxrwxr-x    9 root  admin  -  306 Sep 14 18:22 Internet Plug-Ins
187777 drwxrwxr-x    4 root  admin  -  136 Sep 14 18:22 Java
 15480 drwxrwxr-x    2 root  admin  -   68 May 19  2009 Keyboard Layouts
195256 drwxr-xr-x    5 root  admin  -  170 Nov 16 21:14 Keychains
 24740 drwxr-xr-x    2 root  wheel  -   68 Jun 23 08:19 LaunchAgents
 73707 drwxr-xr-x    2 root  wheel  -   68 May 19  2009 LaunchDaemons
 35873 drwxrwxr-x    5 root  admin  -  170 Sep 16 11:12 Logs
 27964 drwxrwxr-x   46 root  admin  - 1564 Sep 14 18:18 Modem Scripts
 43792 drwxrwxr-x    6 root  admin  -  204 Jun 23 09:47 PDF Services
 31524 drwxrwxr-x    5 root  admin  -  170 Sep 14 18:17 Perl
 80497 drwxr-xr-x    2 root  wheel  -   68 Jun 23 08:19 PreferencePanes
   475 drwxrwxr-x   38 root  admin  - 1292 Dec 22 01:47 Preferences
 28540 drwxrwxr-x    4 root  admin  -  136 Nov 11 22:31 Printers
195679 drwxr-xr-t    2 root  wheel  -   68 Sep 14 18:28 PrivilegedHelperTools
125182 drwxrwxr-x    5 root  admin  -  170 Sep 14 18:19 Python
 45353 drwxrwxr-x    3 root  admin  -  102 Sep 14 18:17 QuickLook
 44601 drwxrwxr-x    2 root  admin  -   68 Jul 23 05:26 QuickTime
 13615 drwxrwxr-x    3 root  admin  -  102 Nov 10 11:22 Receipts
 27676 drwxrwxr-x    4 root  admin  -  136 Sep 14 18:16 Ruby
 80498 drwxr-xr-x    3 root  wheel  -  102 Jun 23 08:19 Sandbox
 73770 drwxrwxr-x    2 root  admin  -   68 Jun 24 05:20 Screen Savers
 32524 drwxrwxr-x   12 root  admin  -  408 Sep 14 18:17 Scripts
 74283 drwxr-xr-x    3 root  wheel  -  102 Jul 18 08:18 Security
195252 drwxr-xr-x    3 root  wheel  -  102 Sep 14 18:24 Speech
 80958 drwxrwxr-x    2 root  admin  -   68 May 18  2009 Spelling
 28016 drwxrwxr-x    5 root  admin  -  170 Sep 14 18:17 Spotlight
 24741 drwxr-xr-x    2 root  wheel  -   68 Jun 23 08:19 StartupItems
 80500 drwxrwxr-x    2 root  admin  -   68 Nov 11 23:09 Updates
 40684 drwxrwxr-x    8 root  admin  -  272 Jul 28 07:18 User Pictures
 77536 drwxrwxr-x    5 root  admin  -  170 Sep 14 18:17 WebServer
145405 drwxr-xr-x   23 root  wheel  -  782 Sep 14 18:48 Widgets
 45163 drwxrwxr-x    3 root  admin  -  102 May 19  2009 iTunes

The above is but a shallow search - recursing through all subdirectories results in nearly 1 MB of formatted output. /Library not only has the 'sticky bit' - it also has an ACE. Many directories here are today guarded by a 'sticky bit'. Whether this proves to be sufficient to thwart future exploits remains to be seen. It's never a good idea to mix system and user stuff like that.

So what's /Library? It's the system-wide stuff corresponding to what you find in ~/Library - in your own library. Download receipts, screen savers, Ruby stuff, widgets, launch agents, launch daemons, keyboard layouts - and preferences. And so forth.

There are over one thousand directories in here. So it's probably something you want to check out. They're all your files.

The Bins

Unix systems generally have four standard locations for program files.

/bin - the original repository used in Unix' infancy. Today has 37 files.
/sbin - a relative newcomer. (Came after /bin at any rate.) 62 files for 'system' use.
/usr/bin - an adjunct to /bin originally for files users themselves concoct. 1,061 items.
/usr/sbin - the 'system' counterpart to /usr/bin. 234 items.

Together these four directories have nearly 1,400 files; this is where a great deal of the commands from CLIX come from.

But of course it would be excruciating to use Terminal.app to populate CLIX with 2,000+ commands. So many things to coordinate, listings to make, man pages to look up, further Terminal.app windows to open for command testing, and so forth. So thank goodness one doesn't have to work at the command line all the time.

CLIX is cool because it functions as a 'rolodex' so you don't have to keep tying all the time. But you have to get to the commands too - get to them, read about them, test them. Finding one's way around a system with Terminal.app isn't much better than fumbling in the dark.

An Apple 'human interface engineer' - obviously with NFC about file systems - once described Xfile as 'Terminal with a graphical interface'. Terminal.app and Xfile only show you what's already in your file system, on your hard drive - they're agnostic. They report the information that's there - despite the 'HI engineers' always trying to keep it hidden from you.

/private Parts

The /private hive is huge.

$ sudo find /private | wc
Password:
     772     775   32715

YMMV on the exact number of files as there are significant caches in there at /private/var/folders.

/private/etc is a system maintenance area.

$ cd /etc; ls -@ailO
total 768
    366 drwxr-xr-x  95 root  wheel     -   3230 Dec 23 07:16 .
    170 drwxrwxrwx   6 root  wheel     -    204 Sep 14 18:24 ..
 121125 -rw-r--r--   1 root  wheel     -    753 Jul 15 07:27 6to4.conf
  80504 -rw-r--r--   1 root  wheel     -    515 Jun 23  2009 afpovertcp.cfg
 123838 lrwxr-xr-x   1 root  wheel     -     15 Sep 14 18:19 aliases -> postfix/aliases
 123839 -rw-r-----   1 root  wheel     -  16384 May 19  2009 aliases.db
 113415 -rw-r--r--   1 root  wheel     -  31925 May 18  2009 amavisd.conf
 109636 drwxr-xr-x   9 root  wheel     -    306 Sep 14 18:32 apache2
 117611 -rw-r--r--   1 root  wheel     -    860 Jun 23  2009 asl.conf
1479007 -rw-r--r--   1 root  wheel     -  28050 Dec 23 07:16 authorization
 202213 -rw-r--r--   1 root  wheel     -  23595 Sep 14 17:52 authorization~previous
 113856 -rw-r--r--   1 root  wheel     -     67 Aug  1 07:57 auto_home
 113857 -rw-r--r--   1 root  wheel     -    194 Aug  1 07:57 auto_master
 113858 -rw-r--r--   1 root  wheel     -   1759 Aug  1 07:57 autofs.conf
 113866 -r--r--r--   1 root  wheel     -    196 May  4  2009 bashrc
 136869 -rw-r--r--   1 root  wheel     -    189 May 18  2009 csh.cshrc
 136870 -rw-r--r--   1 root  wheel     -    121 May 18  2009 csh.login
 136871 -rw-r--r--   1 root  wheel     -     39 May 18  2009 csh.logout
  79744 drwxr-xr-x   8 root  _lp       -    272 Jul 20 22:43 cups
 113970 drwxr-xr-x   3 root  wheel     -    102 May 18  2009 defaults
 119947 -rw-r--r--   1 root  wheel     -   2378 Jul 25 07:34 dnsextd.conf
 201918 -rw-rw-r--   1 root  operator  -      0 Dec 10  2034 dumpdates
 114444 -rw-r--r--   1 root  wheel     -   1029 May 18  2009 efax.rc
 117612 -rw-r--r--   1 root  wheel     -      0 Jun 23  2009 find.codes
  24744 -rw-r--r--   1 root  wheel     -    150 Jun 23  2009 fstab.hd
 119941 -rw-r--r--   1 root  wheel     -     54 May 18  2009 ftpd.conf
  80505 -rw-r--r--   1 root  wheel     -    119 Jun 23  2009 ftpusers
 264398 -rw-r--r--   1 root  wheel     -    526 Jul  3 03:21 gdb.conf
  24745 -rw-r--r--   1 root  wheel     -   5678 Jun 23  2009 gettytab
  24746 -rw-r--r--   1 root  wheel     -   1674 Jun 23  2009 group
 202214 -rw-r--r--   1 root  wheel     -    186 Jan 17  2019 hostconfig
  24925 -rw-r--r--   1 root  wheel     -     87 Jul 25 07:18 hostconfig~orig
  24747 -rw-r--r--   1 root  wheel     -    236 Jun 23  2009 hosts
 117613 -rw-r--r--   1 root  wheel     -      0 Jun 23  2009 hosts.equiv
 135233 -r--r--r--   1 root  wheel     -   1299 May 18  2009 irbrc
  24748 -rw-r--r--   1 root  wheel     -      0 Jun 23  2009 kern_loader.conf
 202217 -rw-------   1 root  wheel     -   1319 Dec  9  2007 krb5.keytab
 195687 -rw-------   1 root  wheel     -   1391 Sep 14 18:28 krb5.keytab~orig
 709807 lrwxr-xr-x   1 root  wheel     -     33 Oct 11 15:02 localtime -> /usr/share/zoneinfo/Europe/Zurich
 135380 -r--r--r--   1 root  wheel     -    616 May 18  2009 locate.rc
 102560 drwxr-xr-x   5 root  wheel     -    170 Sep 14 18:46 mach_init.d
  24926 drwxr-xr-x   2 root  wheel     -     68 Jul 25 07:18 mach_init_per_login_session.d
  24927 drwxr-xr-x   2 root  wheel     -     68 Jul 25 07:18 mach_init_per_user.d
 119953 -rw-r--r--   1 root  wheel     -    106 May 18  2009 mail.rc
 119969 -rw-r--r--   1 root  wheel     -   4589 May 18  2009 man.conf
 117614 -rw-r--r--   1 root  wheel     -     36 Jun 23  2009 manpaths
 113171 drwxr-xr-x   3 root  wheel     -    102 Jul 11 08:29 manpaths.d
  24749 -rw-------   1 root  wheel     -   3927 Jun 23  2009 master.passwd
 195407 -rwxr-xr-x   1 root  wheel     -    168 Sep 14 18:28 memberd.conf
  41823 -rw-r--r--   1 root  wheel     - 125811 Jul 11 09:02 moduli
  79698 -rw-r--r--   1 root  wheel     -   1238 Jul 31 09:20 named.conf
 120059 -r--r--r--   1 root  wheel     -     11 May 18  2009 nanorc
 117615 -rw-r--r--   1 root  wheel     -     53 Jun 23  2009 networks
 113972 -r--r--r--   1 root  wheel     -   1590 May 18  2009 newsyslog.conf
  15150 drwxr-xr-x   4 root  wheel     -    136 Sep 14 18:18 newsyslog.d
  25260 -rw-r--r--   1 root  wheel     -    132 Jul 11 00:24 notify.conf
 121163 -rw-r--r--   1 root  wheel     -    366 May 18  2009 ntp-restrict.conf
 201907 -rw-r--r--   1 root  wheel     -     27 Sep 13 20:30 ntp.conf
 109017 drwxr-xr-x   7 root  wheel     -    238 Jul 17 07:44 openldap
  41814 drwxr-xr-x  14 root  wheel     -    476 Sep 14 18:18 pam.d
  24750 -rw-r--r--   1 root  wheel     -   3667 Jun 23  2009 passwd
 117617 -rw-r--r--   1 root  wheel     -     45 Jun 23  2009 paths
 113173 drwxr-xr-x   3 root  wheel     -    102 Jul 11 08:29 paths.d
 113832 -rw-r--r--   1 root  wheel     -   1208 Jul 19 09:35 pear.conf
 104313 drwxr-xr-x   5 root  wheel     -    170 May 18  2009 periodic
 113833 -r--r--r--   1 root  wheel     -  68692 Jul 19 09:35 php.ini.default
 202228 -r--r--r--   1 root  wheel     -  45106 May  8  2009 php.ini.default-5.2-previous
 123840 drwxr-xr-x  23 root  wheel     -    782 Sep 14 18:32 postfix
 124131 drwxr-xr-x   2 root  wheel     -     68 Aug  1 08:00 ppp
 113867 -r--r--r--   1 root  wheel     -    189 May  4  2009 profile
  24751 -rw-r--r--   1 root  wheel     -   5766 Jun 23  2009 protocols
  81898 drwxr-xr-x   4 root  wheel     -    136 Sep 14 18:18 racoon
  24928 -rw-r--r--   1 root  wheel     -   1660 Jul 25 07:18 rc.common
  81941 -rw-r--r--   1 root  wheel     -   5142 Jul 25 07:18 rc.netboot
  80506 lrwxr-xr-x   1 root  wheel     -     20 Sep 14 18:17 resolv.conf -> /var/run/resolv.conf
 117618 -rw-r--r--   1 root  wheel     -      0 Jun 23  2009 rmtab
  24752 -rw-r--r--   1 root  wheel     -    971 Jun 23  2009 rpc
 121126 -rw-r--r--   1 root  wheel     -    983 Jul 15 07:27 rtadvd.conf
  41703 drwxr-xr-x   7 root  wheel     -    238 Jun 16  2009 security
  24753 -rw-r--r--   1 root  wheel     - 677959 Jun 23  2009 services
  24754 -rw-r--r--   1 root  wheel     -    179 Jun 23  2009 shells
 202012 -rw-r--r--   1 root  wheel     -   2954 Sep 14 18:32 smb.conf
 202008 -rw-r--r--   1 root  wheel     -   3026 Feb 12  2008 smb.conf.old
  98073 -rw-r--r--   1 root  wheel     -   2955 May 22  2009 smb.conf.template
 135248 -rw-r--r--   1 root  wheel     -   2955 May 22  2009 smb.conf~orig
 120776 drwxr-xr-x   4 root  wheel     -    136 Jul 28 07:29 snmp
  41825 -rw-r--r--   1 root  wheel     -   1545 Jul 11 09:02 ssh_config
  41826 -rw-r--r--   1 root  wheel     -   3723 Jul 11 09:02 sshd_config
 202215 -r--r-----   1 root  wheel     -   1189 Feb  3  2009 sudoers
 135681 -r--r-----   1 root  wheel     -   1242 Jun 23  2009 sudoers~orig
  24755 -rw-r--r--   1 root  wheel     -    772 Jun 23  2009 syslog.conf
  24756 -rw-r--r--   1 root  wheel     -   1441 Jun 23  2009 ttys
 113177 drwxr-xr-x   4 root  wheel     -    136 Jul 29 03:41 xgrid
 117619 -rw-r--r--   1 root  wheel     -      0 Jun 23  2009 xtab
 141505 -r--r--r--   1 root  wheel     -    126 May 11  2009 zshenv

authorization is a big property list file that governs how privilege escalation can occur on your computer.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>comment</key>
    <string>The name of the requested right is matched against the keys. An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.

allow rule: this is always allowed
<key>com.apple.TestApp.benign</key>
<string>allow</string>

deny rule: this is always denied
<key>com.apple.TestApp.dangerous</key>
<string>deny</string>

user rule: successful authentication as a user in the specified group(5) allows the associated right.

The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.

The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.

The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0. This defaults to false if not specified.

See remaining rules for examples.
</string>
    <key>rights</key>
    <dict>
        <key></key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Matches otherwise unmatched rights (i.e., is a default).</string>
            <key>rule</key>
            <string>default</string>
        </dict>
        <key>com.alf</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-admin</string>
                <string>default</string>
            </array>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>com.apple.</key>
        <dict>
            <key>rule</key>
            <string>default</string>
        </dict>
        <key>com.apple.CoreRAID.admin</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used by CoreRAID to allow access to administration functions of RAID devices</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
        </dict>
        <key>com.apple.DiskManagement.</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Used by diskmanagementd to allow access to its privileged functions</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-root</string>
                <string>is-admin</string>
                <string>default</string>
            </array>
            <key>shared</key>
            <true/>
        </dict>
        <key>com.apple.Safari.parental-controls</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked when changing parental controls for Safari.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>0</integer>
        </dict>
        <key>com.apple.ServiceManagement.blesshelper</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Used by the ServiceManagement framework to add a privileged helper tool to the system launchd.</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-root</string>
                <string>authenticate-admin-30</string>
            </array>
        </dict>
        <key>com.apple.ServiceManagement.daemons.modify</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Used by the ServiceManagement framework to make changes to the system launchd's set of daemons.</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-root</string>
                <string>authenticate-admin-30</string>
            </array>
        </dict>
        <key>com.apple.Xcode.distcc.admin</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>This right is used by Xcode to invoke a setuid tool to run launchctl as root to change distcc sharing on this machine</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>com.apple.ZFSManager.</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Used by zfsmanager to allow access to destructive zfs functions</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-root</string>
                <string>is-admin</string>
                <string>default</string>
            </array>
            <key>shared</key>
            <true/>
        </dict>
        <key>com.apple.activitymonitor.kill</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used by Activity Monitor to authorize killing processes not owned by the user.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>0</integer>
        </dict>
        <key>com.apple.appserver.privilege.admin</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>For administrative access to the Application Server management tool.</string>
            <key>rule</key>
            <string>appserver-admin</string>
        </dict>
        <key>com.apple.appserver.privilege.user</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>For user access to the Application Server management tool.</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>appserver-admin</string>
                <string>appserver-user</string>
            </array>
        </dict>
        <key>com.apple.builtin.confirm-access</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:confirm-access</string>
            </array>
            <key>tries</key>
            <integer>1</integer>
        </dict>
        <key>com.apple.builtin.confirm-access-password</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:confirm-access-password</string>
            </array>
        </dict>
        <key>com.apple.builtin.generic-new-passphrase</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:generic-new-passphrase</string>
            </array>
        </dict>
        <key>com.apple.builtin.generic-unlock</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:generic-unlock</string>
            </array>
        </dict>
        <key>com.apple.chud.io.read</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used to allow admin reading of I/O space via the CHUD framework</string>
            <key>group</key>
            <string>admin</string>
            <key>timeout</key>
            <integer>3600</integer>
        </dict>
        <key>com.apple.chud.io.write</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used to allow admin writing of I/O space via the CHUD framework</string>
            <key>group</key>
            <string>admin</string>
            <key>timeout</key>
            <integer>3600</integer>
        </dict>
        <key>com.apple.chud.pci.read</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>allow</string>
            <key>comment</key>
            <string>Used to allow user reading of the PCI configuration space via the CHUD framework</string>
            <key>timeout</key>
            <integer>3600</integer>
        </dict>
        <key>com.apple.chud.pci.write</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used to allow admin writing of PCI configuration space via the CHUD framework</string>
            <key>group</key>
            <string>admin</string>
            <key>timeout</key>
            <integer>3600</integer>
        </dict>
        <key>com.apple.chud.physmem</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used to allow admin access to physical memory addresses via the CHUD framework</string>
            <key>group</key>
            <string>admin</string>
            <key>timeout</key>
            <integer>3600</integer>
        </dict>
        <key>com.apple.chud.spr.read</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>allow</string>
            <key>comment</key>
            <string>Used to allow user reading of CPU special purpose registers via the CHUD framework</string>
            <key>timeout</key>
            <integer>3600</integer>
        </dict>
        <key>com.apple.chud.spr.write</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used to allow admin writing of CPU special purpose registers via the CHUD framework</string>
            <key>group</key>
            <string>admin</string>
            <key>timeout</key>
            <integer>3600</integer>
        </dict>
        <key>com.apple.dashboard.advisory.allow</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>com.apple.desktopservices</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>For privileged file operations from within the Finder.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>0</integer>
        </dict>
        <key>com.apple.docset.install</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used by Xcode to restrict access to a daemon it uses to install and update documentation sets.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
        </dict>
        <key>com.apple.pcastagentconfigd.</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Wildcard for rights checked by Podcast Producer when making changes to your camera binding.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
        </dict>
        <key>com.apple.server.admin.streaming</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>For making administrative requests to the QuickTime Streaming Server.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>0</integer>
        </dict>
        <key>com.apple.trust-settings.admin</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>For modifying Trust Settings in the Local Admin domain.</string>
            <key>group</key>
            <string>admin</string>
        </dict>
        <key>com.apple.trust-settings.user</key>
        <dict>
            <key>comment</key>
            <string>For modifying per-user Trust Settings.</string>
            <key>rule</key>
            <string>authenticate-session-owner</string>
        </dict>
        <key>config.add.</key>
        <dict>
            <key>class</key>
            <string>allow</string>
            <key>comment</key>
            <string>Wildcard right for adding rights. Anyone is allowed to add any (non-wildcard) rights.</string>
        </dict>
        <key>config.config.</key>
        <dict>
            <key>class</key>
            <string>deny</string>
            <key>comment</key>
            <string>Wildcard right for any change to meta-rights for db modification. Not allowed programmatically (just edit this file).</string>
        </dict>
        <key>config.modify.</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Wildcard right for modifying rights. Admins are allowed to modify any (non-wildcard) rights. Root does not require authentication.</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-root</string>
                <string>authenticate-admin</string>
            </array>
        </dict>
        <key>config.remove.</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Wildcard right for deleting rights. Admins are allowed to delete any (non-wildcard) rights. Root does not require authentication.</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-root</string>
                <string>authenticate-admin</string>
            </array>
        </dict>
        <key>config.remove.system.</key>
        <dict>
            <key>class</key>
            <string>deny</string>
            <key>comment</key>
            <string>Wildcard right for deleting system rights.</string>
        </dict>
        <key>sys.openfile.</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>See authopen(1) for information on the use of this right.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>system.</key>
        <dict>
            <key>rule</key>
            <string>default</string>
        </dict>
        <key>system.burn</key>
        <dict>
            <key>class</key>
            <string>allow</string>
            <key>comment</key>
            <string>For burning media.</string>
        </dict>
        <key>system.device.dvd.setregion.initial</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used by the DVD player to set the region code the first time. Note that changing the region code after it has been set requires a different right (system.device.dvd.setregion.change).</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
        </dict>
        <key>system.global-login-items.</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-admin</string>
                <string>default</string>
            </array>
        </dict>
        <key>system.identity.write.</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>For creating, changing or deleting local user accounts and groups.</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-admin</string>
                <string>authenticate-admin</string>
            </array>
        </dict>
        <key>system.identity.write.credential</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>Checked when changing authentication credentials (password or certificate) for a local user account.</string>
            <key>rule</key>
            <string>default</string>
        </dict>
        <key>system.identity.write.self</key>
        <dict>
            <key>authenticate-user</key>
            <false/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked when changing authentication credentials (password or certificate) for the current user's account.</string>
            <key>session-owner</key>
            <true/>
        </dict>
        <key>system.install.admin.user</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked when user is installing in admin domain (/Applications).</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>system.install.root.admin</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked when admin is installing in root domain (/System).</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>system.install.root.user</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked when user is installing in root domain (/System).</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>system.keychain.create.loginkc</key>
        <dict>
            <key>allow-root</key>
            <false/>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>comment</key>
            <string>Used by the Security framework when you add an item to an unconfigured default keychain.</string>
            <key>mechanisms</key>
            <array>
                <string>loginKC:queryCreate</string>
                <string>loginKC:showPasswordUI</string>
                <string>authinternal</string>
            </array>
            <key>session-owner</key>
            <true/>
            <key>shared</key>
            <false/>
        </dict>
        <key>system.keychain.modify</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used by Keychain Access when editing a system keychain.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>30</integer>
        </dict>
        <key>system.login.console</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>comment</key>
            <string>Login mechanism based rule. Not for general use, yet.</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:smartcard-sniffer,privileged</string>
                <string>loginwindow:login</string>
                <string>builtin:reset-password,privileged</string>
                <string>builtin:auto-login,privileged</string>
                <string>builtin:authenticate,privileged</string>
                <string>loginwindow:success</string>
                <string>HomeDirMechanism:login,privileged</string>
                <string>HomeDirMechanism:status</string>
                <string>MCXMechanism:login</string>
                <string>loginwindow:done</string>
            </array>
        </dict>
        <key>system.login.done</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>mechanisms</key>
            <array/>
        </dict>
        <key>system.login.screensaver</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>The owner or any administrator can unlock the screensaver.</string>
            <key>rule</key>
            <string>authenticate-session-owner-or-admin</string>
        </dict>
        <key>system.login.tty</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>mechanisms</key>
            <array>
                <string>push_hints_to_context</string>
                <string>authinternal</string>
            </array>
            <key>tries</key>
            <integer>1</integer>
        </dict>
        <key>system.preferences</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked by the Admin framework when making changes to certain System Preferences.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
        </dict>
        <key>system.preferences.accessibility</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked by the Admin framework when enabling or disabling the Accessibility APIs.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>0</integer>
        </dict>
        <key>system.preferences.accounts</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked by the Admin framework when making changes to the Accounts preference pane.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
        </dict>
        <key>system.preferences.parental-controls</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked when making changes to the Parental Controls preference pane.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
        </dict>
        <key>system.preferences.security</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked by the Admin framework when making changes to the Security preference pane.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
        </dict>
        <key>system.print.admin</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>group</key>
            <string>lpadmin</string>
            <key>shared</key>
            <true/>
        </dict>
        <key>system.print.operator</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>group</key>
            <string>_lpoperator</string>
            <key>shared</key>
            <true/>
        </dict>
        <key>system.printingmanager</key>
        <dict>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>For printing to locked printers.</string>
            <key>rule</key>
            <string>authenticate-admin</string>
        </dict>
        <key>system.privilege.admin</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used by AuthorizationExecuteWithPrivileges(...).
        AuthorizationExecuteWithPrivileges() is used by programs requesting
        to run a tool as root (e.g., some installers).</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <false/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>system.privilege.taskport</key>
        <dict>
            <key>allow-root</key>
            <false/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Used by task_for_pid(...).
        Task_for_pid is called by programs requesting full control over another program
        for things like debugging or performance analysis. This authorization only applies
        if the requesting and target programs are run by the same user; it will never
        authorize access to the program of another user. WARNING: administrators are advised not to modify this right.</string>
            <key>group</key>
            <string>_developer</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>36000</integer>
        </dict>
        <key>system.privilege.taskport.debug</key>
        <dict>
            <key>allow-root</key>
            <false/>
            <key>class</key>
            <string>rule</string>
            <key>comment</key>
            <string>For use by Apple. WARNING: administrators are advised
not to modify this right.</string>
            <key>k-of-n</key>
            <integer>1</integer>
            <key>rule</key>
            <array>
                <string>is-admin</string>
                <string>is-developer</string>
                <string>authenticate-developer</string>
            </array>
            <key>shared</key>
            <true/>
        </dict>
        <key>system.privilege.taskport.safe</key>
        <dict>
            <key>class</key>
            <string>allow</string>
            <key>comment</key>
            <string>For use by Apple.</string>
        </dict>
        <key>system.restart</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>comment</key>
            <string>Checked if the foreground console user tries to restart the system while other users are logged in via fast-user switching.</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:smartcard-sniffer,privileged</string>
                <string>RestartAuthorization:restart</string>
                <string>builtin:authenticate,privileged</string>
                <string>RestartAuthorization:success</string>
            </array>
        </dict>
        <key>system.services.directory.configure</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>For making Directory Services changes.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>system.sharepoints.</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Checked when making changes to the Sharepoints.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
        </dict>
        <key>system.shutdown</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>comment</key>
            <string>Checked if the foreground console user tries to shut down the system while other users are logged in via fast-user switching.</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:smartcard-sniffer,privileged</string>
                <string>RestartAuthorization:shutdown</string>
                <string>builtin:authenticate,privileged</string>
                <string>RestartAuthorization:success</string>
            </array>
        </dict>
    </dict>
    <key>rules</key>
    <dict>
        <key>allow</key>
        <dict>
            <key>class</key>
            <string>allow</string>
            <key>comment</key>
            <string>Allow anyone.</string>
        </dict>
        <key>appserver-admin</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>group</key>
            <string>appserveradm</string>
        </dict>
        <key>appserver-user</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>group</key>
            <string>appserverusr</string>
        </dict>
        <key>authenticate</key>
        <dict>
            <key>class</key>
            <string>evaluate-mechanisms</string>
            <key>mechanisms</key>
            <array>
                <string>builtin:smartcard-sniffer,privileged</string>
                <string>builtin:authenticate</string>
                <string>builtin:authenticate,privileged</string>
            </array>
        </dict>
        <key>authenticate-admin</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Authenticate as an administrator.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>0</integer>
        </dict>
        <key>authenticate-admin-30</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Like the default rule, but
credentials remain valid for only 30 seconds after they've
been obtained. An acquired credential is shared by all clients.
            </string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>30</integer>
        </dict>
        <key>authenticate-developer</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Authenticate as a developer.</string>
            <key>group</key>
            <string>_developer</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>36000</integer>
        </dict>
        <key>authenticate-session-owner</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Authenticate as the session owner.</string>
            <key>session-owner</key>
            <true/>
        </dict>
        <key>authenticate-session-owner-or-admin</key>
        <dict>
            <key>allow-root</key>
            <false/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Authenticate either as the owner or as an administrator.</string>
            <key>group</key>
            <string>admin</string>
            <key>session-owner</key>
            <true/>
            <key>shared</key>
            <false/>
        </dict>
        <key>authenticate-session-user</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Same as authenticate-session-owner.</string>
            <key>session-owner</key>
            <true/>
        </dict>
        <key>default</key>
        <dict>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Default rule.
Credentials remain valid for 5 minutes after they've been obtained.
An acquired credential is shared by all clients.
            </string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <true/>
            <key>timeout</key>
            <integer>300</integer>
        </dict>
        <key>is-admin</key>
        <dict>
            <key>authenticate-user</key>
            <false/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Verify that the user asking for authorization is an administrator.</string>
            <key>group</key>
            <string>admin</string>
            <key>shared</key>
            <string>true</string>
        </dict>
        <key>is-developer</key>
        <dict>
            <key>authenticate-user</key>
            <false/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Verify that the user asking for authorization is a developer.</string>
            <key>group</key>
            <string>_developer</string>
        </dict>
        <key>is-root</key>
        <dict>
            <key>allow-root</key>
            <true/>
            <key>authenticate-user</key>
            <false/>
            <key>class</key>
            <string>user</string>
            <key>comment</key>
            <string>Verify that the process that created this AuthorizationRef is running as root.</string>
        </dict>
    </dict>
</dict>
</plist>

The first part - stored with the key 'comment' - is just that. The real configuration data begins with the key 'rights'. It's rather complex today but each field has a description field (also called 'comment') which explains how it's used.

The directory also has the all-important file 'sudoers' which governs how sudo works on your machine.

# sudoers file.
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the sudoers man page for the details on how to write a sudoers file.
#

# Host alias specification

# User alias specification

# Cmnd alias specification

# Defaults specification
Defaults	env_reset
Defaults	env_keep += "BLOCKSIZE"
Defaults	env_keep += "COLORFGBG COLORTERM"
Defaults	env_keep += "__CF_USER_TEXT_ENCODING"
Defaults	env_keep += "CHARSET LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE"
Defaults	env_keep += "LC_MESSAGES LC_MONETARY LC_NUMERIC LC_TIME"
Defaults	env_keep += "LINES COLUMNS"
Defaults	env_keep += "LSCOLORS"
Defaults	env_keep += "SSH_AUTH_SOCK"
Defaults	env_keep += "TZ"
Defaults	env_keep += "DISPLAY XAUTHORIZATION XAUTHORITY"
Defaults	env_keep += "EDITOR VISUAL"
Defaults tty_tickets
Defaults:ALL timestamp_timeout=0

# Runas alias specification

# User privilege specification
root	ALL=(ALL) ALL
%admin	ALL=(ALL) ALL

# Uncomment to allow people in group wheel to run all commands
# %wheel	ALL=(ALL)	ALL

# Same thing without a password
# %wheel	ALL=(ALL)	NOPASSWD: ALL

# Samples
# %users  ALL=/sbin/mount /cdrom,/sbin/umount /cdrom
# %users  localhost=/sbin/shutdown -h now

Rows beginning with '#' are of course comment fields. Your own sudoers may vary - this one's set to enable TTY tickets and remove the timestamp timeout completely. Several of the commented rows that can be 'uncommented' should not be - they're really dangerous. So don't play with fire.

/private also contains the directory 'tmp' which is basically used as its name implies. It's here applications often create their temporary files. (But it's not the only location anymore.) Today you'll find several directories and a socket used by launchd.

/private/var is another directory to reckon with, most of it accessble only through privilege escalation. There's a login configuration file in here complete with the icon your account uses. This is heady stuff - you could easily get lost in there.

/private/var/audit - contains an ever-growing number of audit trail files. Take a look.

/private/var/vm - where your 'virtual memory' (swap files) is located. A boot starts with the file 'swapfile0' and a size of 0x4000000 bytes; 'swapfile1' is added as needed and has the same size; 'swapfile2' will have twice the size; and so forth. The directory also has 'sleepimage' - a gigabyte file that helps your box wake up fast.

There are a lot of log files here as well.

$ cd /private/var/log; ls -@ailO *.log
 195498 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 alf.log
 201967 -rw-r--r--  1 root     wheel  -  484 Dec 23 07:57 appfirewall.log
 201971 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 asl.log
 201973 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 crashreporter.log
 195382 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 fsck_hfs.log
 201977 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 hdiejectd.log
    176 -rw-r--r--  1 macuser  staff  -    0 Dec 23 07:25 install.log
  24765 -rw-r-----  1 root     admin  -    0 Dec 23 07:25 ipfw.log
  24766 -rw-r-----  1 root     admin  - 8554 Dec 23 08:18 kernel.log
1478956 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 launchd-shutdown.log
 201983 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 lookupd.log
 195802 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 mb.log
 201987 -rw-r--r--  1 root     wheel  -    0 Dec 23 07:25 netinfo.log
  24767 -rw-r-----  1 root     admin  -  133 Dec 23 07:27 secure.log
1466874 -rw-r-----  1 root     admin  - 7784 Dec 23 08:19 system.log
 195738 -rw-r-----  1 root     admin  -    0 Dec 23 07:25 windowserver.log

Sharing is Caring

/usr/share is another significant area, one that resulted in a lot of interesting CLIX commands. /usr/share/cracklib has password cracking files (but not the whole ball of wax - you'll have to go online to get the rest).

/usr/share/calendar has a cool file called 'calendar.music'.

/*
 * Music
 *
 * $FreeBSD: src/usr.bin/calendar/calendars/calendar.music,v 1.19 2007/01/24 21:21:38 dougb Exp $
 */

#ifndef _calendar_music_
#define _calendar_music_

01/01	Country Joe McDonald is born in El Monte, California, 1942
01/03	Steven Stills is born in Dallas, 1945
01/04	Jazz great Charlie Mingus dies at 57 in Cuernavaca, Mexico, 1979
01/08	David Bowie (then David Robert Jones) is born in London, 1947
01/08	Elvis Presley born, 1935
01/09	James Patrick Page (Led Zeppelin) is born in Middlesex, England, 1945
01/10	Blues guitarist Howlin' Wolf dies in Chicago, 1976
01/10	Jim Croce is born in Philadelphia, 1943
01/10	Pat Benatar is born in Long Island, 1952
01/10	Rod Stewart is born in Glasgow, Scotland, 1945
01/13	Eric Clapton plays the "Rainbow Concert" in London, 1973
01/17	Led Zeppelin's first album is released, 1969
01/19	Janis Joplin is born in Port Arthur, Texas, 1943
01/22	Sam Cooke is born in Chicago, 1935
01/24	Warren Zevon is born in Chicago, 1947
01/25	Bob Dylan plays the second "Hurricane" benefit, in the Astrodome, 1978
01/27	Bobby "Blue" Bland (Robert Calvin Bland) is born in Tennessee, 1930
01/27	Wolfgang Amadeus Mozart is born in Salzburg, Austria, 1756
01/28	Jimi Hendrix headlines Madison Square Garden, 1970
01/30	Lightnin' Hopkins, the most-recorded blues artist ever, dies, 1982
01/31	Franz Schubert is born in Lichtenthal, Vienna, Austria, 1797
01/31	The Grateful Dead are busted in New Orleans, 1970
02/01	RCA Victor unveils the 45 rpm record playing system, 1949
02/02	Graham Nash is born in Lancashire, England, 1942
02/03	Felix Mendelssohn Bartholdy is born in Hamburg, Germany, 1809
02/03	The Day The Music Died; Buddy Holly, Richie Valens, and the Big
	Bopper are killed in a plane crash outside Mason City, Iowa, 1959
02/07	Beatles land at JFK airport to begin first U.S. tour, 1964
02/07	Steven Stills makes the first digitally recorded rock album, 1979
02/09	Carole King (Carole Klein) is born in Brooklyn, 1941
02/12	The Beatles play Carnegie Hall in New York City, 1964
02/13	Richard Wagner dies in Venice, Italy, 1883
02/17	Jazz great Thelonius Monk dies in Englewood, New Jersey, 1982
02/18	Yoko Ono Lennon is born in Tokyo, 1933
02/19	Paul McCartney's "Give Ireland Back to the Irish" is banned in
	Britain, 1972
02/19	William "Smokey" Robinson is born in Detroit, 1940
02/20	J. Geils (J. Geils Band) is born, 1946
02/20	Yes sells out Madison Square Garden...without advertising, 1974
02/23	George Friedrich Handel is born in Halle on the Saale, Germany, 1685
02/23	Johnny Winter is born in Leland, Mississippi, 1944
02/25	George Harrison born in Liverpool, England, 1943
02/29	Jimmy Dorsey born, 1904
03/01	Frederic Chopin is born in Zelazowa Wola, Warsaw, Poland, 1810
03/01	Jim Morrison is busted for obscenity in Miami, 1969
03/02	Blues guitarist Rory Gallagher is born in Ballyshannon, Ireland, 1949
03/03	Buffalo Springfield is formed in Los Angeles, 1966
03/04	Antonio Vivaldi born in Venice, Italy, 1678
03/07	Last Gilbert & Sullivan opera produced, 1896
03/08	Ron "Pigpen" McKernan (Grateful Dead) dies in California, 1973
03/08	(Louis) Hector Berlioz dies in Paris, 1869
03/09	Robin Trower is born in London, 1945
03/13	The Allman Brothers record their live album at the Fillmore East, 1971
03/15	Sly Stone born, 1944
03/17	Paul Kantner (Jefferson Airplane) is born in San Francisco, 1942
03/21	Johann Sebastian Bach is born in Eisenach, Germany, 1685
03/22	Ten Years After plays their last concert, 1974
03/25	Aretha Franklin is born in Detroit, 1943
03/25	Bela Bartok is born in Nagyszentmiklos, Hungary, 1881
03/26	Emerson, Lake, and Palmer record "Pictures at an Exhibition" live, 1971
03/26	Ludwig van Beethoven dies in Vienna, Austria, 1827
03/28	Sergej Rachmaninow dies in Beverley Hills, 1943
03/29	Carl Orff dies in Munich, Germany, 1982
03/29	Dr. Hook gets a group picture on the cover of "Rolling Stone", 1973
03/30	Eric Clapton is born in Surrey, England, 1945
03/31	Joseph Haydn is born in Rohrau, Austria, 1732
04/01	Sergej Rachmaninow is born in Oneg, Russia, 1873
04/02	Marvin Gaye is born in Washington, D.C., 1939
04/04	Muddy Waters (McKinley Morganfield) is born in Rolling Fork,
	Mississippi, 1915
04/09	Paul Robeson born, 1898
04/10	Paul McCartney announces that he's quitting the Beatles, 1970
04/14	George Friedrich Handel dies in London, England, 1759
04/14	Ritchie Blackmore (Deep Purple, Rainbow) is born, 1945
04/18	Yes breaks up after 13 years, 1981
04/25	Blues guitarist Albert King is born, 1925
04/25	Ella Fitzgerald born, 1918
04/26	Carol Burnett born in San Antonio, Texas, 1933
04/29	"Hair" premiers on Broadway, 1968
05/01	Kate Smith born, 1909
05/01	Antonin Dvorak dies in Prague, 1904
05/03	Bob Seger is born in Ann Arbor, Michigan, 1945
05/07	Johannes Brahms is born in Hamburg, Germany, 1833
05/07	Tchaikowsky born, 1840
05/10	Dave Mason is born in Worcester, England, 1945
05/11	Bob Marley dies in his sleep in Miami, 1981
05/12	Pink Floyd performs the first quadrophonic concert, 1977
05/18	Gustav Mahler dies in Vienna, Austria, 1911
05/18	Rick Wakeman is born in West London, England, 1949
05/19	Pete Townshend is born in London, 1945
05/20	The Jimi Hendrix Experience is signed by Reprise Records, 1967
05/22	Richard Wagner is born in Leipzig, Germany, 1813
05/23	Blues great Elmore James dies, 1963
05/24	Bob Dylan (Robert Zimmerman) is born in Duluth, 1941
05/26	Al Jolson born, 1886
05/31	Joseph Haydn dies in Vienna, Austria, 1809
05/31	The Who perform the loudest concert ever -- 76,000 watts of PA, 1976
06/01	The Beatles release "Sgt. Pepper", 1967
06/03	Georges Bizet dies in Bougival, Paris, France, 1875
06/05	Carl Maria von Weber dies in London, England, 1826
06/06	"Rock Around The Clock" makes Billboard's #1 slot, 1955
06/06	Dee Dee Ramone dies, 2002
06/07	Blind Faith debuts in concert at London's Hyde Park, 1969
06/08	Robert Schumann is born in Zwickau, Germany, 1810
06/09	Les Paul (Lester Polfus) is born in Waukesha, Wisconsin, 1923
06/10	Howlin' Wolf (Chester Burnett) is born in West Point, Mississippi, 1910
06/10	Judy Garland born, 1922
06/11	Richard Strauss is born in Munich, Germany, 1864
06/15	Edvard Grieg is born in Bergen, Norway, 1843
06/15	Harry Nilsson is born in Brooklyn, 1941
06/16	The Monterey Pop festival opens, 1967
06/18	Paul McCartney born in Liverpool, England, 1942
06/21	Columbia records announces the first mass production of LP's, 1948
06/22	Todd Rundgren is born in Upper Darby, Pennsylvania, 1948
06/24	Jeff Beck is born in Surrey, England, 1944
06/27	John Entwistle dies in Las Vegas, 2002
07/02	Felix Pappalardi and Leslie West form Mountain, 1969
07/03	Jim Morrison dies in Paris, 1971
07/06	The Jefferson Airplane is formed in San Francisco, 1965
07/07	Gustav Mahler is born in Kalischt, Bohemia, 1860
07/07	Ringo Starr (Richard Starkey) born in Liverpool, England, 1940
07/10	Carl Orff is born in Munich, Germany, 1895
07/12	Chicago DJ Steve Dahl holds "Disco Demolition" at Kamisky Park, 1979
07/14	Woodie Guthrie born, 1912
07/16	Cream forms in the U.K., 1966
07/16	Harry Chapin dies on Long Island Expressway, 1981
07/17	"Yellow Submarine" premieres at the London Pavilion, 1968
07/20	Carlos Santana is born in Autlan, Mexico, 1947
07/25	Bob Dylan goes electric at the Newport Folk Festival, 1965
07/25	Crosby, Stills, Nash & Young debut at the Fillmore East, 1969
07/26	Mick Jagger is born in Kent, England, 1943
07/28	Antonio Vivaldi dies in Vienna, 1741
07/28	Johann Sebastian Bach dies in Leipzig, 1750
07/28	The Watkins Glen "Summer Jam" opens, 1973
07/29	Robert Schumann dies in Endenich, Bonn, Germany, 1856
08/01	The Concert for Bangla Desh takes place at Madison Square Garden, 1971
08/04	John Lennon points out that "the Beatles are more popular than Jesus", 1966
08/10	Ian Anderson (Jethro Tull) is born in Edinburgh, Scotland, 1947
08/13	Dan Fogelberg is born in Peoria, Illinois, 1951
08/15	Beatles replace drummer Pete Best with Richard Starkey, 1962
08/15	The Beatles play Shea Stadium in New York, 1965
08/15	Woodstock Festival, Max Yasgur's farm, 1969
08/16	Elvis Presley dies, 1977
08/16	Madonna Louise Ciccone born in Bay City, Michigan, 1958
08/21	Joe Strummer (The Clash), born John Mellor in Ankara, Turkey, 1952
08/23	Keith Moon is born in London, England, 1946
08/26	Jimi Hendrix gives his last performance at the Isle of Wight, 1970
08/26	Jimi Hendrix's Electric Ladyland Studios opens in New York, 1970
09/04	Edvard Grieg dies in Bergen, Norway, 1907
09/07	Keith Moon (The Who) dies in London of a drug overdose, 1978
09/07	Warren Zevon dies in Los Angeles of lung cancer (mesothelioma), 2003
09/08	Antonin Dvorak born in Nelahozeves, Bohemia, 1841
09/08	Richard Strauss dies in Garmisch-Partenkirchen, Germany, 1949
09/08	Ron "Pigpen" McKernan (Grateful Dead) is born in San Bruno, California, 1945
09/14	Francis Scott Key writes words to "Star Spangled Banner", 1814
09/16	B.B. King is born in Itta Bena, Mississippi, 1925
09/18	Dee Dee Ramone (Douglas Colvin) born in Fort Lee, Virginia, 1952
09/19	Simon & Garfunkel reunite to play New York's Central Park, 1981
09/20	Jim Croce dies in a plane crash, 1973
09/23	"Paul is dead" rumors sweep the country, 1969
09/23	Bruce "The Boss" Springsteen is born in Freehold, New Jersey, 1949
09/25	John Bonham (Led Zeppelin) dies of alcohol poisoning, 1980
09/26	Bela Bartok dies in New York, 1945
09/26	George Gershwin is born in Brooklyn, NY, 1898
10/04	Janis Joplin dies of a heroin overdose in Hollywood, 1970
10/05	Steve Miller is born in Dallas, 1943
10/07	First Bandstand (later, American Bandstand) broadcast, 1957
10/09	John Entwistle is born in London, England, 1944
10/09	John Lennon born in Liverpool, England, 1940
10/10	John Prine is born in Maywood, Illinois, 1946
10/12	Ray Conniff dies after falling down and hitting his head, 2002
10/12	The Jimi Hendrix Experience is formed in London, 1966
10/16	Bob Weir (Grateful Dead) is born in San Francisco, 1947
10/17	"Hair" opens at New York's Public Theater, 1967
10/17	Frederic Chopin dies in Paris, France, 1849
10/18	Chuck Berry is born in San Jose, California, 1926
10/20	Three members of Lynyrd Skynyrd die in a plane crash, 1977
10/21	Jesus Christ Super Star debuted on Broadway, 1971
10/22	Franz Liszt born, 1811
10/22	Pablo Casals dies in Puerto Rico, 1973
10/25	Georges Bizet is born in Paris, France, 1838
10/25	Jon Anderson (Yes) is born in Lancashire, England, 1944
10/25	The Rolling Stones appear on The Ed Sullivan Show, 1964
10/29	Duane Allman dies in motorcycle crash near Macon, Georgia, 1971
10/30	Grace Slick is born in Chicago, 1939
11/02	Jimi Hendrix's "Electric Ladyland" enters US charts at #1, 1968
11/02	Keith Emerson is born, 1944
11/03	James Taylor and Carly Simon are married in Manhattan, 1972
11/04	Felix Mendelssohn Bartholdy dies in Leipzig, Germany, 1847
11/06	Ray Conniff born in Attleboro, Massachusetts, 1916
11/07	Joni Mitchell (Roberta Joan Anderson) is born in Alberta, Canada, 1943
11/08	Patti Page born, 1927
11/09	The first issue of "Rolling Stone" is published, 1967
11/10	Greg Lake is born in Bournemouth, England, 1948
11/12	Neil Young is born in Toronto, 1945
11/13	Paul Simon born, 1942
11/16	Bill Ham first demonstrates his psychedelic "Light Show", 1965
11/18	Carl Maria von Weber is born in Eutin, Germany, 1786
11/19	Franz Schubert dies in Vienna, Austria, 1828
11/20	Duane Allman is born in Nashville, Tennessee, 1946
11/20	Joe Walsh is born in Cleveland, 1947
11/22	Saint Cecilia's day (patron saint of music)
11/24	Scott Joplin born, 1868
11/25	"The Last Waltz" concert is played by The Band at Winterland, 1976
11/25	Johann Strauss, Jr., writes `On the Beautiful Blue Danube', 1867
11/26	Cream performs their farewell concert at Royal Albert Hall, 1968
11/26	Paul Hindemith is born in Hanau, Germany, 1895
11/27	Jimi Hendrix (Johnny Allen Hendrix) is born in Seattle, 1942
11/29	Pau Casals born in Vendrell, 1876
11/30	George Harrison dies at 13:30 in L.A., 2001
12/04	Frank Zappa dies in his Laurel Canyon home shortly before 18:00, 1993
12/05	Wolfgang Amadeus Mozart dies in Vienna, Austria, 1791
12/06	First sound recording made by Thomas Edison, 1877
12/06	The Rolling Stones play Altamont Speedway near San Francisco, 1969
12/07	Harry Chapin is born in New York City, 1942
12/08	Jim Morrison is born in Melbourne, Florida, 1943
12/08	John Lennon is shot and killed in New York City, 1980
12/09	The Who's "Tommy" premieres in London, 1973
12/11	(Louis) Hector Berlioz born in La-Côte-Saint-André, 1803
12/13	Ted Nugent, the motor city madman, born in Detroit, 1949
12/15	Thomas Edison receives patent on the phonograph, 1877
12/16	Don McLean's "American Pie" is released, 1971
12/17	Ludwig van Beethoven is christened in Bonn, 1770
12/21	Frank Zappa is born in Baltimore, 1940
12/23	First G&S collaboration, Thespis, 1871
12/23	Joe Strummer (born John Mellor) dies in Broomfield, England, 2002
12/28	Edgar Winter is born in Beaumont, Texas, 1946
12/28	Paul Hindemith dies in Frankfurt/Main, Germany, 1963
12/31	Jimi Hendrix introduces the Band of Gypsies at the Fillmore East, 1969

#endif /* !_calendar_music_ */

And it has another called 'calendar.computer'.

/*
 * Computer
 *
 * $FreeBSD: src/usr.bin/calendar/calendars/calendar.computer,v 1.11 2007/09/07 03:23:06 edwin Exp $
 */

#ifndef _calendar_computer_
#define _calendar_computer_

01/01	AT&T officially divests its local Bell companies, 1984
01/01	The Epoch (Time 0 for UNIX systems, Midnight GMT, 1970)
01/03	Apple Computer founded, 1977
01/08	American Telephone and Telegraph loses antitrust case, 1982
01/08	Herman Hollerith patents first data processing computer, 1889
01/08	Justice Dept. drops IBM suit, 1982
01/10	First CDC 1604 delivered to Navy, 1960
01/16	Set uid bit patent issued, to Dennis Ritchie, 1979
01/17	Justice Dept. begins IBM anti-trust suit, 1969 (drops it, January 8, 1982)
01/24	DG Nova introduced, 1969
01/25	First U.S. meeting of ALGOL definition committee, 1958
01/26	EDVAC demonstrated, 1952
01/31	Hewlett-Packard founded, 1939
02/11	Last day of JOSS service at RAND Corp., 1966
02/14	First micro-on-a-chip patented (TI), 1978
02/15	ENIAC demonstrated, 1946
03/01	First NPL (later PL/I) report published, 1964
03/04	First Cray-1 shipped to Los Alamos
03/09	"GOTO considered harmful" (E.J. Dijkstra) published in CACM, 1968
03/14	LISP introduced, 1960
03/28	DEC announces PDP-11, 1970
03/31	Eckert-Mauchly Computer Corp. founded, Phila, 1946
04/01	Yourdon, Inc. founded, 1974 (It figures.)
04/03	IBM 701 introduced, 1953
04/04	Tandy Corp. acquires Radio Shack, 1963 (9 stores)
04/07	IBM announces System/360, 1964
04/09	ENIAC Project begun, 1943
04/28	Zilog Z-80 introduced, 1976
05/06	EDSAC demonstrated, 1949
05/01	First BASIC program run at Dartmouth, 1964
05/16	First report on SNOBOL distributed (within BTL), 1963
05/19	UNIX is 10000 days old, 1997
05/21	DEC announces PDP-8, 1965
05/22	Ethernet first described, 1973
05/27	First joint meeting of U.S. and European ALGOL definition cte., 1958
05/28	First meeting of COBOL definition cte. (eventually CODASYL), 1959
05/30	Colossus Mark II, 1944
06/02	First issue of Computerworld, 1967
06/07	Alan Mathison Turing died, 1954
06/10	First Apple II shipped, 1977
06/15	UNIVAC I delivered to the Census Bureau, 1951
06/16	First publicized programming error at Census Bureau, 1951
06/23	IBM unbundles software, 1969
06/23	Alan Mathison Turing born, 1912
06/30	First advanced degree on computer related topic: to H. Karamanian,
	Temple Univ., Phila, 1948, for symbolic differentiation on the ENIAC
07/08	Bell Telephone Co. formed (predecessor of AT&T), 1877
07/08	CDC incorporated, 1957
07/FriLast	System Administrator Appreciation Day
08/14	First Unix-based mallet created, 1954
08/14	IBM PC announced, 1981
08/22	CDC 6600 introduced, 1963
08/23	DEC founded, 1957
09/15	ACM founded, 1947
09/20	Harlan Herrick runs first FORTRAN program, 1954
10/02	First robotics-based CAM, 1939
10/06	First GPSS manual published, 1961
10/08	First VisiCalc prototype, 1978
10/12	Univac gives contract for SIMULA compiler to Nygaard and Dahl, 1962
10/14	British Computer Society founded, 1957
10/15	First FORTRAN Programmer's Reference Manual published, 1956
10/20	Zurich ALGOL report published, 1958
10/25	DEC announces VAX-11/780
11/04	UNIVAC I program predicts Eisenhower victory based on 7% of votes, 1952
12/08	First Ph.D. awarded by Computer Science Dept, Univ. of Penna, 1965

#endif /* !_calendar_computer_ */

FreeBSD have their own file in here; there are birthday files, national files, Lord of the Rings files, history files, holiday files...

The 'magic' files used by file are located /usr/share/file and /usr/share/file/magic - worth taking a look. There are Apache files, Help Indexer files, libtool files, Java files, podcast server files, tcsh files, texi2html files, vim files, zsh files...

There's a lot to get to know in there - and in all the myriad locations you've never heard about before.

Getting to Know All About You

The easiest way to get to know more about all these hundreds of thousands of files you've never seen before is to use CLIX. The easiest way to branch out on your own is with the excellent ACP which covers just about everything imaginable; without the ACP, the CLIX command set would have been impossible to assemble.

You're going to be fully occupied either way - and at a fraction of what a new Mac would cost you. But keep saving for that new Mac anyway.



You've obviously heard of us, otherwise you wouldn't be here.
We're known for telling the truth even if it's not in our interest.
We're now telling you to beware Apple's walled garden. Don't get locked in.
What you've seen so far may be only the beginning of something far far worse.
Download our Test Drive and at least check out our free Keymaster Solo.
That's the first step to regaining your freedom. See here.

CONTACT INFO:
John Cattelin
Media Contact
contact@rixstep.com
PURCHASE INFO:
ACP/Xfile licences
User/Family/Business
http://rixstep.com/buy
About | ACP | Buy | Industry Watch | Learning Curve | News | Products | Search | Substack
Copyright © Rixstep. All rights reserved.