Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
# $NetBSD: mi,v 1.215 2019/07/26 13:29:36 roy Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
./etc/mtree/set.misc				misc-sys-root
./usr/share/dict/README				misc-reference-share	share
./usr/share/dict/american			misc-reference-share	share
./usr/share/dict/british			misc-reference-share	share
./usr/share/dict/eign				misc-reference-share	share,groff
./usr/share/dict/propernames			misc-reference-share	share
./usr/share/dict/special/math			misc-reference-share	share
./usr/share/dict/special/netbsd			misc-reference-share	share
./usr/share/dict/stop				misc-reference-share	share
./usr/share/dict/web2				misc-reference-share	share
./usr/share/dict/web2a				misc-reference-share	share
./usr/share/dict/words				misc-reference-share	share
./usr/share/doc/atf				misc-obsolete		obsolete
./usr/share/doc/atf/AUTHORS			misc-obsolete		obsolete
./usr/share/doc/atf/COPYING			misc-obsolete		obsolete
./usr/share/doc/atf/NEWS			misc-obsolete		obsolete
./usr/share/doc/atf/README			misc-obsolete		obsolete
./usr/share/doc/atf/ROADMAP			misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch01.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch02.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch03.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch04.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch05.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch06.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch07.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch08.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch09.html	misc-obsolete		obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.html	misc-obsolete		obsolete
./usr/share/doc/html/bzip2/manual.html		misc-obsolete		obsolete
./usr/share/doc/html/bzip2/manual_1.html	misc-obsolete		obsolete
./usr/share/doc/html/bzip2/manual_2.html	misc-obsolete		obsolete
./usr/share/doc/html/bzip2/manual_3.html	misc-obsolete		obsolete
./usr/share/doc/html/bzip2/manual_4.html	misc-obsolete		obsolete
./usr/share/doc/html/bzip2/manual_toc.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp			misc-obsolete		obsolete
./usr/share/doc/html/ntp/Oncore-SHMEM.htm	misc-obsolete		obsolete
./usr/share/doc/html/ntp/accopt.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/accopt.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/assoc.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/assoc.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/audio.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/audio.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/authopt.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/authopt.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/biblio.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/bugs.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/build			misc-obsolete		obsolete
./usr/share/doc/html/ntp/build.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/build.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/build.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/config.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/hints.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/patches.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/porting.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/quick.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts		misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/footer.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/links10.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/links11.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/links12.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/links7.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/links8.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/links9.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/build/scripts/style.css	misc-obsolete		obsolete
./usr/share/doc/html/ntp/clockopt.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/clockopt.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/comdex.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/config.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/config.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/confopt.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/confopt.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/copyright.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/copyright.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/debug.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/debug.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/decode.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver1.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver10.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver11.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver12.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver16.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver18.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver19.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver2.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver20.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver22.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver23.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver24.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver26.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver27.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver28.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver29.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver3.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver30.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver32.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver33.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver34.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver35.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver36.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver37.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver4.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver5.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver6.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver7.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver8.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/driver9.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers			misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver1.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver10.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver11.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver12.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver16.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver18.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver19.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver2.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver20.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver22.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver26.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver27.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver28.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver29.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver3.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver30.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver31.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver32.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver33.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver34.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver35.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver36.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver37.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver38.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver39.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver4.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver40.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver42.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver43.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver44.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver5.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver6.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver7.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver8.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/driver9.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/icons			misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/icons/home.gif		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/icons/mail2.gif	misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/mx4200data.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/oncore-shmem.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/scripts		misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/scripts/footer.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/scripts/style.css	misc-obsolete		obsolete
./usr/share/doc/html/ntp/drivers/tf582_4.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/exec.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/extern.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/extern.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/gadget.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/gadget.html			misc-obsolete	obsolete
./usr/share/doc/html/ntp/groups.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/a-ux		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/aix		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/bsdi		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/changes		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/decosf1		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/decosf2		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/hpux		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/linux		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/notes-xntp-v3	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/parse		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/refclocks	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/rs6000		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/sco.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/sgi		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/solaris-dosynctodr.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/solaris.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.4023118	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.4095849	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.S99ntpd	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.patchfreq	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/sun4		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/svr4-dell	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/svr4_package	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/todo		misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/vxworks.html	misc-obsolete		obsolete
./usr/share/doc/html/ntp/hints/winnt.htm	misc-obsolete		obsolete
./usr/share/doc/html/ntp/howto.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/howto.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/htmlprimer.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/icons			misc-obsolete		obsolete
./usr/share/doc/html/ntp/icons/home.gif			misc-obsolete		obsolete
./usr/share/doc/html/ntp/icons/mail2.gif		misc-obsolete		obsolete
./usr/share/doc/html/ntp/index.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/index.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/kern.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/kern.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/kernpps.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/kernpps.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/keygen.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ldisc.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ldisc.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/manyopt.html			misc-obsolete	obsolete
./usr/share/doc/html/ntp/measure.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/measure.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/miscopt.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/miscopt.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/monopt.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/monopt.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/msyslog.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/mx4200data.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/mx4200data.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/notes.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/notes.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntp_conf.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpd.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpd.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpdate.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpdate.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpdc.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpdc.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpdsim.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpdsim_new.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpq.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntpq.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntptime.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntptime.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntptrace.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/ntptrace.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/parsedata.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/parsedata.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/parsenew.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/parsenew.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/patches.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/porting.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/pps.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/pps.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/prefer.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/prefer.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/qth.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/quick.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/quick.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/rate.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/rdebug.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/rdebug.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/refclock.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/refclock.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/release.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/release.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts			misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/accopt.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/audio.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/authopt.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/clockopt.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/command.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/config.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/confopt.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/external.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/footer.txt		misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/install.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/links10.txt		misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/links11.txt		misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/links12.txt		misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/links7.txt		misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/links8.txt		misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/links9.txt		misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/manual.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/misc.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/miscopt.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/monopt.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/refclock.txt	misc-obsolete		obsolete
./usr/share/doc/html/ntp/scripts/style.css		misc-obsolete		obsolete
./usr/share/doc/html/ntp/sitemap.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/sntp.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/tickadj.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/tickadj.html			misc-obsolete		obsolete
./usr/share/doc/html/ntp/vxworks.htm		misc-obsolete		obsolete
./usr/share/doc/html/ntp/xleave.html		misc-obsolete		obsolete
./usr/share/doc/html/ntp/y2k.htm		misc-obsolete		obsolete
./usr/share/doc/html/postfix/ADDRESS_CLASS_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/ADDRESS_REWRITING_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/ADDRESS_VERIFICATION_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/BACKSCATTER_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/BASIC_CONFIGURATION_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/BUILTIN_FILTER_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/CDB_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/CONNECTION_CACHE_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/CONTENT_INSPECTION_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/CYRUS_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/DATABASE_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/DB_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/DEBUG_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/DSN_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/ETRN_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/FILTER_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/IPV6_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/LDAP_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/LINUX_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/LMTP_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/LOCAL_RECIPIENT_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/MAILDROP_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/MILTER_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/MULTI_INSTANCE_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/MYSQL_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/NFS_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/OVERVIEW.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/PACKAGE_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/PCRE_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/PGSQL_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/POSTSCREEN_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/QMQP_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/QSHAPE_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/RESTRICTION_CLASS_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/SASL_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/SCHEDULER_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/SMTPD_ACCESS_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/SMTPD_POLICY_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/SMTPD_PROXY_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/SOHO_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/SQLITE_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/STANDARD_CONFIGURATION_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/TLS_LEGACY_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/TLS_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/TUNING_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/ULTRIX_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/UUCP_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/VERP_README.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/VIRTUAL_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/XCLIENT_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/XFORWARD_README.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/access.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/aliases.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/anvil.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/architecture.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/backstage.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/basic.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/big-picture.gif	misc-obsolete	obsolete
./usr/share/doc/html/postfix/big-picture.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/bounce.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/canonical.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/cidr_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/cleanup.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/commands.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/defer.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/delivering.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/discard.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/dnsblog.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/error.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/faq.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/flush.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/generic.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/goals.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/header_checks.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/inbound.gif	misc-obsolete	obsolete
./usr/share/doc/html/postfix/index.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/ldap_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/lmtp.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/local.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/mailq.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/master.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/master.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/memcache_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/motivation.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/mysql_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/newaliases.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/nisplus_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/nqmgr.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/oqmgr.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/outbound.gif	misc-obsolete	obsolete
./usr/share/doc/html/postfix/pcre_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/pgsql_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/pickup.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/pipe.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postalias.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postcat.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postconf.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postconf.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postdrop.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postfix-logo.jpg	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postfix-manuals.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postfix-wrapper.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postfix.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postkick.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postlock.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postlog.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postmap.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postmulti.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postqueue.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postscreen.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/postsuper.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/posttls-finger.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/proxymap.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/qmgr.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/qmqpd.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/qshape.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/queuing.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/rate.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/receiving.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/regexp_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/relocated.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/resource.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/rewrite.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/scache.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/security.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/sendmail.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/showq.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/small-picture.gif	misc-obsolete	obsolete
./usr/share/doc/html/postfix/smtp-sink.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/smtp-source.1.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/smtp.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/smtpd.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/spawn.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/sqlite_table.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/tlsmgr.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/tlsproxy.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/trace.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/transport.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/trivial-rewrite.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/uce.html		misc-obsolete	obsolete
./usr/share/doc/html/postfix/verify.8.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/virtual.5.html	misc-obsolete	obsolete
./usr/share/doc/html/postfix/virtual.8.html	misc-obsolete	obsolete
./usr/share/doc/kyua-atf-compat			misc-obsolete	obsolete
./usr/share/doc/kyua-atf-compat/AUTHORS		misc-obsolete	obsolete
./usr/share/doc/kyua-atf-compat/COPYING		misc-obsolete	obsolete
./usr/share/doc/kyua-atf-compat/NEWS		misc-obsolete	obsolete
./usr/share/doc/kyua-atf-compat/README		misc-obsolete	obsolete
./usr/share/doc/kyua-cli			misc-obsolete	obsolete
./usr/share/doc/kyua-cli/AUTHORS		misc-obsolete	obsolete
./usr/share/doc/kyua-cli/COPYING		misc-obsolete	obsolete
./usr/share/doc/kyua-cli/NEWS			misc-obsolete	obsolete
./usr/share/doc/kyua-cli/README			misc-obsolete	obsolete
./usr/share/doc/kyua-testers			misc-obsolete	obsolete
./usr/share/doc/kyua-testers/AUTHORS		misc-obsolete	obsolete
./usr/share/doc/kyua-testers/COPYING		misc-obsolete	obsolete
./usr/share/doc/kyua-testers/NEWS		misc-obsolete	obsolete
./usr/share/doc/kyua-testers/README		misc-obsolete	obsolete
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs-9.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs.html	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs.ps.gz	misc-smm-doc		doc,groff
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs.txt	misc-smm-doc		doc,groff
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs1.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs10.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs11.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs12.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs13.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs14.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs15.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs16.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs2.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs3.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs4.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs5.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs6.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs7.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs8.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick84-ffs/mckusick84-ffs9.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick85-fsck/mckusick85-fsck.html	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick85-fsck/mckusick85-fsck.ps.gz	misc-smm-doc		doc,groff
./usr/share/doc/papers/mckusick85-fsck/mckusick85-fsck.txt	misc-smm-doc		doc,groff
./usr/share/doc/papers/mckusick85-fsck/mckusick85-fsck1.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick85-fsck/mckusick85-fsck2.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick85-fsck/mckusick85-fsck3.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/mckusick85-fsck/mckusick85-fsck4.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/morris78-password/morris78-password.html	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/papers/morris78-password/morris78-password.ps.gz	misc-smm-doc		doc,groff
./usr/share/doc/papers/morris78-password/morris78-password.txt	misc-smm-doc		doc,groff
./usr/share/doc/papers/morris78-password/morris78-password1.png	misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/psd/00.contents			misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/0.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.0.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.1.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.2.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.3.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.4.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.5.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.6.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/1.7.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/2.0.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/2.1.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/2.2.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/2.3.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/2.4.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/2.5.t		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/Makefile		misc-obsolete		obsolete
./usr/share/doc/psd/05.sysman/a.t		misc-obsolete		obsolete
./usr/share/doc/psd/12.make/Makefile		misc-obsolete		obsolete
./usr/share/doc/psd/12.make/tutorial.ms		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/Makefile		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/abstract.me	misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/gathering.me	misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/header.me		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/intro.me		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/postp.me		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/postp1.pic		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/postp2.pic		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/postp3.pic		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/pres1.pic		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/pres2.pic		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/present.me		misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/profiling.me	misc-obsolete		obsolete
./usr/share/doc/psd/18.gprof/refs.me		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/Makefile		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/Master		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/appen.A		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/appen.B		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/appen.C		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/c_macros		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/doc.I		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/doc.II		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/doc.III		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/doc.IV		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/ex1.c		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/ex2.c		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/fns.doc		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/intro.0		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/intro.1		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/intro.2		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/intro.3		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/intro.4		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/intro.5		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/intro.6		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/life.c		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/macros		misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/twinkle1.c	misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/twinkle2.c	misc-obsolete		obsolete
./usr/share/doc/psd/19.curses/win_st.c		misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/Makefile		misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/dgramread.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/dgramsend.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/fig2.pic		misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/fig3.pic		misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/fig8.pic		misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/pipe.c		misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/socketpair.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/strchkread.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/streamread.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/streamwrite.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/tutor.me		misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/udgramread.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/udgramsend.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/ustreamread.c	misc-obsolete		obsolete
./usr/share/doc/psd/20.ipctut/ustreamwrite.c	misc-obsolete		obsolete
./usr/share/doc/psd/21.ipc/0.t			misc-obsolete		obsolete
./usr/share/doc/psd/21.ipc/1.t			misc-obsolete		obsolete
./usr/share/doc/psd/21.ipc/2.t			misc-obsolete		obsolete
./usr/share/doc/psd/21.ipc/3.t			misc-obsolete		obsolete
./usr/share/doc/psd/21.ipc/4.t			misc-obsolete		obsolete
./usr/share/doc/psd/21.ipc/5.t			misc-obsolete		obsolete
./usr/share/doc/psd/21.ipc/Makefile		misc-obsolete		obsolete
./usr/share/doc/psd/Makefile			misc-obsolete		obsolete
./usr/share/doc/psd/Title			misc-obsolete		obsolete
./usr/share/doc/psd/contents.html				misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/psd/contents.ps.gz				misc-psd-doc		doc,groff
./usr/share/doc/psd/contents.txt				misc-psd-doc		doc,groff
./usr/share/doc/psd/title.html					misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/psd/title.ps.gz					misc-psd-doc		doc,groff
./usr/share/doc/psd/title.txt					misc-psd-doc		doc,groff
./usr/share/doc/reference/ref1/atf				misc-atf-doc
./usr/share/doc/reference/ref1/atf/AUTHORS			misc-atf-doc		doc,atf
./usr/share/doc/reference/ref1/atf/COPYING			misc-atf-doc		doc,atf
./usr/share/doc/reference/ref1/atf/NEWS				misc-atf-doc		doc,atf
./usr/share/doc/reference/ref1/atf/README			misc-atf-doc		doc,atf
./usr/share/doc/reference/ref1/bzip2/manual.html		misc-util-htmldoc	share
./usr/share/doc/reference/ref1/config/config.html		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/config/config.ps.gz		misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/config/config.txt		misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/config/config1.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/config/config2.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/config/config3.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/config/config4.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/config/config5.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh.html			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh.ps.gz			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/csh/csh.txt			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/csh/csh1.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh2.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh3.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh4.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh5.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh6.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh7.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh8.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/csh/csh9.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/dc				misc-usd-doc
./usr/share/doc/reference/ref1/dc/dc.ps.gz			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/dc/dc.txt			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/ex/reference.html		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference.ps.gz		misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/ex/reference.txt			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/ex/reference1.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference10.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference11.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference12.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference13.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference14.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference15.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference16.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference17.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference18.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference19.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference2.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference20.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference21.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference22.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference23.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference24.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference25.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference26.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference27.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference3.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference4.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference5.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference6.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference7.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference8.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/reference9.png		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary.html			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary.ps.gz			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/ex/summary.txt			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/ex/summary1.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary2.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary3.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary4.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary5.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary6.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary7.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary8.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/ex/summary9.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-1.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-10.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-11.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-12.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-13.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-14.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-2.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-3.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-4.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-5.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-6.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-7.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-8.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof-9.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof.html			misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/gprof/gprof.ps.gz		misc-psd-doc		doc,groff
./usr/share/doc/reference/ref1/gprof/gprof.txt			misc-psd-doc		doc,groff
./usr/share/doc/reference/ref1/kyua				misc-kyua-doc
./usr/share/doc/reference/ref1/kyua/kyua-atf-compat		misc-kyua-doc
./usr/share/doc/reference/ref1/kyua/kyua-atf-compat/AUTHORS	misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-atf-compat/COPYING	misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-atf-compat/NEWS	misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-atf-compat/README	misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-cli			misc-kyua-doc
./usr/share/doc/reference/ref1/kyua/kyua-cli/AUTHORS		misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-cli/COPYING		misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-cli/NEWS		misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-cli/README		misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-testers		misc-kyua-doc
./usr/share/doc/reference/ref1/kyua/kyua-testers/AUTHORS	misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-testers/COPYING	misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-testers/NEWS		misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/kyua/kyua-testers/README		misc-kyua-doc		doc,kyua
./usr/share/doc/reference/ref1/mail/mail.html			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/mail/mail.ps.gz			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/mail/mail.txt			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/make/make.html			misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/make/make.ps.gz			misc-psd-doc		doc,groff
./usr/share/doc/reference/ref1/make/make.txt			misc-psd-doc		doc,groff
./usr/share/doc/reference/ref1/make/make1.png			misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/make/make2.png			misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/memacros/memacros.html	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/memacros/memacros.ps.gz	misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/memacros/memacros.txt	misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/meref/meref.html		misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/meref/meref.ps.gz		misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/meref/meref.txt		misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/msdiffs/msdiffs.html	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msdiffs/msdiffs.ps.gz	misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/msdiffs/msdiffs.txt		misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/msdiffs/msdiffs1.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msdiffs/msdiffs2.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros.html	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros.ps.gz	misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/msmacros/msmacros.txt	misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/roff/msmacros/msmacros1.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros2.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros3.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros4.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros5.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros6.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros7.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros8.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/roff/msmacros/msmacros9.png	misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/sh/sh.html			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/sh/sh.ps.gz			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/sh/sh.txt			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/sh/sh1.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/sh/sh2.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/sh/sh3.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/sh/sh4.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/sh/sh5.png			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/vi/vi.html			misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref1/vi/vi.ps.gz			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref1/vi/vi.txt			misc-usd-doc		doc,groff
./usr/share/doc/reference/ref3/curses/curses.html		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/curses/curses.ps.gz		misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/curses/curses.txt		misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/sockets-advanced/sockets-advanced.html	misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sockets-advanced/sockets-advanced.ps.gz	misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/sockets-advanced/sockets-advanced.txt	misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/sockets/sockets.html		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sockets/sockets.ps.gz		misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/sockets/sockets.txt		misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/sysman/sysman.html		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman.ps.gz		misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/sysman/sysman.txt		misc-psd-doc		doc,groff
./usr/share/doc/reference/ref3/sysman/sysman1.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman10.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman11.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman12.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman13.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman14.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman15.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman16.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman17.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman18.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman19.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman2.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman20.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman21.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman22.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman23.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman24.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman25.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman26.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman27.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman28.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman29.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman3.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman30.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman31.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman32.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman33.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman4.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman5.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman6.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman7.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman8.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref3/sysman/sysman9.png		misc-psd-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed.html			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed.ps.gz		misc-smm-doc		doc,groff
./usr/share/doc/reference/ref5/timed/timed.txt			misc-smm-doc		doc,groff
./usr/share/doc/reference/ref5/timed/timed1.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed10.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed11.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed12.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed13.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed14.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed15.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed16.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed17.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed18.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed19.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed2.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed20.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed21.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed22.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed23.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed24.png		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed3.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed4.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed5.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed6.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed7.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed8.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref5/timed/timed9.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref7/quotas/quotas.html		misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref7/quotas/quotas.ps.gz		misc-smm-doc		doc,groff
./usr/share/doc/reference/ref7/quotas/quotas.txt		misc-smm-doc		doc,groff
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch01.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch02.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch03.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch04.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch05.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch06.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch07.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch08.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.ch09.html	misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/bind9/arm/Bv9ARM.html		misc-bind-htmldoc	doc
./usr/share/doc/reference/ref8/lpd/lpd.html			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref8/lpd/lpd.ps.gz			misc-smm-doc		doc,groff
./usr/share/doc/reference/ref8/lpd/lpd.txt			misc-smm-doc		doc,groff
./usr/share/doc/reference/ref8/lpd/lpd1.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref8/lpd/lpd2.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref8/lpd/lpd3.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref8/ntp				misc-ntp-htmldoc
./usr/share/doc/reference/ref8/ntp/accopt.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/assoc.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/audio.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/authopt.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/bugs.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/build.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/clockopt.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/comdex.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/config.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/confopt.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/copyright.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/debug.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/decode.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers			misc-ntp-htmldoc
./usr/share/doc/reference/ref8/ntp/drivers/driver1.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver10.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver11.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver12.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver16.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver18.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver19.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver20.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver22.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver26.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver27.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver28.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver29.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver3.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver30.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver31.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver32.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver33.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver34.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver35.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver36.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver37.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver38.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver39.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver4.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver40.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver42.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver43.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver44.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver5.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver6.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver7.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver8.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/driver9.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/mx4200data.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/oncore-shmem.html	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/scripts		misc-ntp-htmldoc
./usr/share/doc/reference/ref8/ntp/drivers/scripts/footer.txt	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/scripts/style.css	misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/drivers/tf582_4.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/extern.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/hints.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/howto.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/index.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/kern.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/kernpps.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/keygen.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/miscopt.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/monopt.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/msyslog.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntp_conf.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntpd.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntpdate.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntpdc.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntpdsim.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntpdsim_new.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntpq.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntptime.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/ntptrace.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/parsedata.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/parsenew.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/pps.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/prefer.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/quick.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/rate.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/rdebug.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/refclock.html		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/release.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts			misc-ntp-htmldoc
./usr/share/doc/reference/ref8/ntp/scripts/accopt.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/audio.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/authopt.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/clockopt.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/command.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/config.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/confopt.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/external.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/footer.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/install.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/manual.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/misc.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/miscopt.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/monopt.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/refclock.txt		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/scripts/style.css		misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/sitemap.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/sntp.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/tickadj.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/ntp/xleave.html			misc-ntp-htmldoc	doc
./usr/share/doc/reference/ref8/postfix/ADDRESS_CLASS_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/ADDRESS_REWRITING_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/ADDRESS_VERIFICATION_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/BACKSCATTER_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/BASIC_CONFIGURATION_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/BUILTIN_FILTER_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/CONNECTION_CACHE_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/CONTENT_INSPECTION_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/DATABASE_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/DB_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/DEBUG_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/DSN_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/ETRN_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/FILTER_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/FORWARD_SECRECY_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/IPV6_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/LDAP_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/LMDB_README.html			misc-obsolete		obsolete
./usr/share/doc/reference/ref8/postfix/LOCAL_RECIPIENT_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/MAILDROP_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/MEMCACHE_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/MILTER_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/MULTI_INSTANCE_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/MYSQL_README.html		misc-obsolete		obsolete
./usr/share/doc/reference/ref8/postfix/NFS_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/OVERVIEW.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/PCRE_README.html			misc-obsolete		obsolete
./usr/share/doc/reference/ref8/postfix/PGSQL_README.html		misc-obsolete		obsolete
./usr/share/doc/reference/ref8/postfix/POSTSCREEN_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/QSHAPE_README.html		misc-obsolete		obsolete
./usr/share/doc/reference/ref8/postfix/RESTRICTION_CLASS_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/SASL_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/SCHEDULER_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/SMTPD_ACCESS_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/SMTPD_POLICY_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/SMTPD_PROXY_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/SOHO_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/SQLITE_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/STANDARD_CONFIGURATION_README.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/STRESS_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/TLS_LEGACY_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/TLS_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/TUNING_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/UUCP_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/VERP_README.html			misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/VIRTUAL_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/XCLIENT_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/XFORWARD_README.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/access.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/aliases.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/anvil.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/bounce.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/canonical.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/cidr_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/cleanup.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/defer.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/discard.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/dnsblog.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/error.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/flush.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/generic.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/header_checks.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/index.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/ldap_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/lmtp.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/local.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/mailq.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/master.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/master.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/memcache_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/mysql_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/newaliases.1.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/nisplus_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/oqmgr.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/pcre_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/pgsql_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/pickup.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/pipe.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postalias.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postcat.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postconf.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postconf.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postdrop.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postfix-logo.jpg		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postfix-manuals.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postfix-wrapper.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postfix.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postkick.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postlock.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postlog.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postmap.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postmulti.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postqueue.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postscreen.8.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/postsuper.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/posttls-finger.1.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/proxymap.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/qmgr.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/qshape.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/regexp_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/relocated.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/scache.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/sendmail.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/showq.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/smtp-sink.1.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/smtp-source.1.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/smtp.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/smtpd.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/spawn.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/sqlite_table.5.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/tlsmgr.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/tlsproxy.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/trace.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/transport.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/trivial-rewrite.8.html	misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/verify.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/virtual.5.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/postfix/virtual.8.html		misc-postfix-htmldoc	postfix,doc
./usr/share/doc/reference/ref8/timed/timed.html			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref8/timed/timed.ps.gz		misc-smm-doc		doc,groff
./usr/share/doc/reference/ref8/timed/timed.txt			misc-smm-doc		doc,groff
./usr/share/doc/reference/ref8/timed/timed1.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref8/timed/timed2.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref9/net/net.html			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref9/net/net.ps.gz			misc-smm-doc		doc,groff
./usr/share/doc/reference/ref9/net/net.txt			misc-smm-doc		doc,groff
./usr/share/doc/reference/ref9/net/net1.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref9/net/net2.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref9/net/net3.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref9/net/net4.png			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref9/nfs/nfs.html			misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/reference/ref9/nfs/nfs.ps.gz			misc-smm-doc		doc,groff
./usr/share/doc/reference/ref9/nfs/nfs.txt			misc-smm-doc		doc,groff
./usr/share/doc/smm/00.contents			misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/0.t		misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/1.t		misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/2.t		misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/3.t		misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/4.t		misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/5.t		misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/6.t		misc-obsolete		obsolete
./usr/share/doc/smm/01.setup/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck			misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck/0.t			misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck/1.t			misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck/2.t			misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck/3.t			misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck/4.t			misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck_ffs/0.t		misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck_ffs/1.t		misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck_ffs/2.t		misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck_ffs/3.t		misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck_ffs/4.t		misc-obsolete		obsolete
./usr/share/doc/smm/03.fsck_ffs/Makefile	misc-obsolete		obsolete
./usr/share/doc/smm/04.quotas/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/04.quotas/quotas.ms		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/0.t		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/1.t		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/2.t		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/3.t		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/4.t		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/5.t		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/6.t		misc-obsolete		obsolete
./usr/share/doc/smm/05.fastfs/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/06.nfs/0.t			misc-obsolete		obsolete
./usr/share/doc/smm/06.nfs/1.t			misc-obsolete		obsolete
./usr/share/doc/smm/06.nfs/2.t			misc-obsolete		obsolete
./usr/share/doc/smm/06.nfs/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/06.nfs/ref.t		misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/0.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/1.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/2.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/3.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/4.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/5.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/6.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/7.t			misc-obsolete		obsolete
./usr/share/doc/smm/07.lpd/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/08.sendmailop/Makefile	misc-obsolete		obsolete
./usr/share/doc/smm/08.sendmailop/op.me		misc-obsolete		obsolete
./usr/share/doc/smm/09.sendmail/Makefile	misc-obsolete		obsolete
./usr/share/doc/smm/09.sendmail/intro.me	misc-obsolete		obsolete
./usr/share/doc/smm/10.named/00macs.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/00title.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/ack.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/build.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/files.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/intro.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/manage.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/named.boot.cache	misc-obsolete		obsolete
./usr/share/doc/smm/10.named/named.boot.primary	misc-obsolete		obsolete
./usr/share/doc/smm/10.named/named.boot.secondary	misc-obsolete		obsolete
./usr/share/doc/smm/10.named/named.local	misc-obsolete		obsolete
./usr/share/doc/smm/10.named/ns.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/resolv.conf	misc-obsolete		obsolete
./usr/share/doc/smm/10.named/root.cache		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/setup.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/types.me		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/ucbhosts		misc-obsolete		obsolete
./usr/share/doc/smm/10.named/ucbhosts.rev	misc-obsolete		obsolete
./usr/share/doc/smm/11.timedop/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/11.timedop/timed.ms		misc-obsolete		obsolete
./usr/share/doc/smm/12.timed/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/12.timed/timed.ms		misc-obsolete		obsolete
./usr/share/doc/smm/17.password/Makefile	misc-obsolete		obsolete
./usr/share/doc/smm/17.password/password.ms	misc-obsolete		obsolete
./usr/share/doc/smm/18.net/0.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/1.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/2.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/3.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/4.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/5.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/6.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/7.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/8.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/9.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/Makefile		misc-obsolete		obsolete
./usr/share/doc/smm/18.net/a.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/b.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/c.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/d.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/e.t			misc-obsolete		obsolete
./usr/share/doc/smm/18.net/f.t			misc-obsolete		obsolete
./usr/share/doc/smm/Makefile			misc-obsolete		obsolete
./usr/share/doc/smm/Title			misc-obsolete		obsolete
./usr/share/doc/smm/contents.html				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/contents.ps.gz				misc-smm-doc		doc,groff
./usr/share/doc/smm/contents.txt				misc-smm-doc		doc,groff
./usr/share/doc/smm/setup/setup.html				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup.ps.gz				misc-smm-doc		doc,groff
./usr/share/doc/smm/setup/setup.txt				misc-smm-doc		doc,groff
./usr/share/doc/smm/setup/setup1.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup10.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup11.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup12.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup13.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup14.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup15.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup16.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup17.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup18.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup19.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup2.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup20.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup21.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup22.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup23.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup24.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup25.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup26.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup27.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup28.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup29.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup3.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup30.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup31.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup32.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup33.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup34.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup35.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup36.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup37.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup38.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup39.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup4.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup40.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup41.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup42.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup43.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup44.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup45.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup5.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup6.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup7.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup8.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/setup/setup9.png				misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/title.html					misc-smm-doc		doc,html,groffhtmldoc
./usr/share/doc/smm/title.ps.gz					misc-smm-doc		doc,groff
./usr/share/doc/smm/title.txt			misc-smm-doc		doc,groff
./usr/share/doc/usd/00.contents			misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/u.mac		misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/u0			misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/u1			misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/u2			misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/u3			misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/u4			misc-obsolete		obsolete
./usr/share/doc/usd/01.begin/u5			misc-obsolete		obsolete
./usr/share/doc/usd/03.shell/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/03.shell/Rv7man		misc-obsolete		obsolete
./usr/share/doc/usd/03.shell/t.mac		misc-obsolete		obsolete
./usr/share/doc/usd/03.shell/t1			misc-obsolete		obsolete
./usr/share/doc/usd/03.shell/t2			misc-obsolete		obsolete
./usr/share/doc/usd/03.shell/t3			misc-obsolete		obsolete
./usr/share/doc/usd/03.shell/t4			misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/csh.1		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/csh.2		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/csh.3		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/csh.4		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/csh.a		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/csh.ap		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/csh.g		misc-obsolete		obsolete
./usr/share/doc/usd/04.csh/tabs			misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail0.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail1.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail2.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail3.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail4.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail5.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail6.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail7.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail8.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/mail9.nr		misc-obsolete		obsolete
./usr/share/doc/usd/07.mail/maila.nr		misc-obsolete		obsolete
./usr/share/doc/usd/11.edit/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/11.edit/edit.vindex		misc-obsolete		obsolete
./usr/share/doc/usd/11.edit/edittut.ms		misc-obsolete		obsolete
./usr/share/doc/usd/12.ex/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/12.ex/ex.rm			misc-obsolete		obsolete
./usr/share/doc/usd/12.ex/ex.summary		misc-obsolete		obsolete
./usr/share/doc/usd/12.vi/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/12.vi/vi.apwh.ms		misc-obsolete		obsolete
./usr/share/doc/usd/12.vi/vi.chars		misc-obsolete		obsolete
./usr/share/doc/usd/12.vi/vi.in			misc-obsolete		obsolete
./usr/share/doc/usd/12.vi/vi.summary		misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/ex.cmd.roff	misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/merge.awk		misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/ref.so		misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/set.opt.roff	misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/spell.ok		misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/vi.cmd.roff	misc-obsolete		obsolete
./usr/share/doc/usd/13.viref/vi.ref		misc-obsolete		obsolete
./usr/share/doc/usd/17.msmacros/Makefile	misc-obsolete		obsolete
./usr/share/doc/usd/17.msmacros/fig1.pic	misc-obsolete		obsolete
./usr/share/doc/usd/17.msmacros/ms		misc-obsolete		obsolete
./usr/share/doc/usd/18.msdiffs/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/18.msdiffs/ms.diffs		misc-obsolete		obsolete
./usr/share/doc/usd/19.memacros/Makefile	misc-obsolete		obsolete
./usr/share/doc/usd/19.memacros/intro.me	misc-obsolete		obsolete
./usr/share/doc/usd/20.meref/Makefile		misc-obsolete		obsolete
./usr/share/doc/usd/20.meref/ref.me		misc-obsolete		obsolete
./usr/share/doc/usd/Makefile			misc-obsolete		obsolete
./usr/share/doc/usd/Title			misc-obsolete		obsolete
./usr/share/doc/usd/begin/begin.html				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin.ps.gz				misc-usd-doc		doc,groff
./usr/share/doc/usd/begin/begin.txt				misc-usd-doc		doc,groff
./usr/share/doc/usd/begin/begin1.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin10.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin11.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin12.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin13.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin14.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin2.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin3.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin4.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin5.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin6.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin7.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin8.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/begin/begin9.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/contents.html				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/contents.ps.gz				misc-usd-doc		doc,groff
./usr/share/doc/usd/contents.txt				misc-usd-doc		doc,groff
./usr/share/doc/usd/edit/edit.html				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/edit/edit.ps.gz				misc-usd-doc		doc,groff
./usr/share/doc/usd/edit/edit.txt				misc-usd-doc		doc,groff
./usr/share/doc/usd/edit/edit1.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/edit/edit2.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/edit/edit3.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/title.html					misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/title.ps.gz					misc-usd-doc		doc,groff
./usr/share/doc/usd/title.txt					misc-usd-doc		doc,groff
./usr/share/doc/usd/vi						misc-usd-doc		doc
./usr/share/doc/usd/vi/summary.html				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary.ps.gz				misc-usd-doc		doc,groff
./usr/share/doc/usd/vi/summary.txt				misc-usd-doc		doc,groff
./usr/share/doc/usd/vi/summary1.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary10.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary11.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary12.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary13.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary14.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary15.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary16.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary17.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary18.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary19.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary2.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary20.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary21.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary22.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary23.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary24.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary25.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary26.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary27.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary28.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary29.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary3.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary4.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary5.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary6.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary7.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary8.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/summary9.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut.html				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut.ps.gz				misc-usd-doc		doc,groff
./usr/share/doc/usd/vi/vitut.txt				misc-usd-doc		doc,groff
./usr/share/doc/usd/vi/vitut1.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut10.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut11.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut12.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut13.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut14.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut15.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut16.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut17.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut18.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut19.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut2.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut20.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut21.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut22.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut23.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut24.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut25.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut26.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut27.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut28.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut29.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut3.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut30.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut31.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut32.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut33.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut4.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut5.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut6.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut7.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut8.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/usd/vi/vitut9.png				misc-usd-doc		doc,html,groffhtmldoc
./usr/share/doc/xntp				misc-obsolete		obsolete
./usr/share/examples/amd/amd.conf		misc-amd-examples	share
./usr/share/examples/amd/cd			misc-amd-examples	share
./usr/share/examples/amd/master			misc-obsolete		obsolete
./usr/share/examples/amd/net			misc-amd-examples	share
./usr/share/examples/apm/script			misc-amd-examples	share
./usr/share/examples/asm			misc-asm-examples
./usr/share/examples/asm/Makefile.inc		misc-asm-examples	share
./usr/share/examples/asm/README			misc-asm-examples	share
./usr/share/examples/asm/hello			misc-asm-examples
./usr/share/examples/asm/hello/Makefile		misc-asm-examples	share
./usr/share/examples/asm/hello/powerpc.s	misc-asm-examples	share
./usr/share/examples/atf			misc-atf-examples
./usr/share/examples/atf/atf-run.hooks		misc-atf-examples	share,atf,!kyua
./usr/share/examples/atf/atf-run.hooks		misc-obsolete		share,kyua,obsolete
./usr/share/examples/atf/tests-results.css	misc-atf-examples	share,atf,!kyua
./usr/share/examples/atf/tests-results.css	misc-obsolete		share,kyua,obsolete
./usr/share/examples/dhcp/dhcpd.conf		misc-dhcpd-examples	share
./usr/share/examples/dhcpcd/hooks/10-wpa_supplicant	misc-dhcpcd-examples	share
./usr/share/examples/dhcpcd/hooks/15-timezone	misc-dhcpcd-examples	share
./usr/share/examples/dhcpcd/hooks/29-lookup-hostname	misc-dhcpcd-examples	share
./usr/share/examples/dhcpcd/hooks/50-ypbind	misc-dhcpcd-examples	share,yp
./usr/share/examples/disktab/disktab		misc-sys-examples	share
./usr/share/examples/emul/linux/etc/LINUX_MAKEDEV	misc-sys-examples	share
./usr/share/examples/emul/svr4/etc/SVR4_MAKEDEV	misc-obsolete		obsolete
./usr/share/examples/emul/svr4/etc/netconfig	misc-obsolete		obsolete
./usr/share/examples/emul/svr4/etc/nsswitch.conf	misc-obsolete		obsolete
./usr/share/examples/emul/ultrix/etc/svc.conf	misc-sys-examples	share
./usr/share/examples/fstab/fstab.cdrom		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.md		misc-obsolete		obsolete
./usr/share/examples/fstab/fstab.nfs.1		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.nfs.2		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.nfs.3		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.pseudo		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.ra		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.ramdisk	misc-fstab-examples	share
./usr/share/examples/fstab/fstab.rd		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.sd0.1		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.sd0.2		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.sd0.amiga	misc-fstab-examples	share
./usr/share/examples/fstab/fstab.sd0.atari	misc-fstab-examples	share
./usr/share/examples/fstab/fstab.tmpfs		misc-obsolete		obsolete
./usr/share/examples/fstab/fstab.wd0.1		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.wd0.2		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.wd0.3		misc-fstab-examples	share
./usr/share/examples/fstab/fstab.wd0.cobalt	misc-fstab-examples	share
./usr/share/examples/ftpd/ftpd.conf		misc-netutil-examples	share
./usr/share/examples/ftpd/ftpusers		misc-netutil-examples	share
./usr/share/examples/getdate/datemsk.template	misc-sys-examples	share
./usr/share/examples/getdate/posixmsk.example3	misc-sys-examples	share
./usr/share/examples/getdate/posixmsk.example4	misc-sys-examples	share
./usr/share/examples/hostapd/hostapd.conf	misc-netutil-examples	share
./usr/share/examples/ipf/BASIC.NAT		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/BASIC_1.FW		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/BASIC_2.FW		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.1		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.10		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.11		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.12		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.13		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.2		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.3		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.4		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.5		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.6		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.7		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.8		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.9		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/example.sr		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/firewall		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/ftp-proxy		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/ftppxy			misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/mediaone		misc-obsolete		obsolete
./usr/share/examples/ipf/mkfilters		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/nat-setup		misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/nat.eg			misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/server			misc-ipf-examples	ipfilter,share
./usr/share/examples/ipf/tcpstate		misc-ipf-examples	ipfilter,share
./usr/share/examples/isdn/holidays.D.SH		misc-obsolete		obsolete
./usr/share/examples/isdn/isdnd.rates.A		misc-obsolete		obsolete
./usr/share/examples/isdn/isdnd.rates.D		misc-obsolete		obsolete
./usr/share/examples/isdn/isdnd.rates.F		misc-obsolete		obsolete
./usr/share/examples/isdn/isdnd.rates.L		misc-obsolete		obsolete
./usr/share/examples/isdn/isdnd.rates.UK.BT	misc-obsolete		obsolete
./usr/share/examples/isdn/isdnd.rc.sample	misc-obsolete		obsolete
./usr/share/examples/kerberos/krb5.conf		misc-krb5-examples	kerberos,share
./usr/share/examples/kyua-cli			misc-kyua-examples
./usr/share/examples/kyua-cli/Kyuafile.top	misc-kyua-examples	share,kyua
./usr/share/examples/kyua-cli/kyua.conf		misc-kyua-examples	share,kyua
./usr/share/examples/libsaslc			misc-libsaslc-examples
./usr/share/examples/libsaslc/README		misc-libsaslc-examples	share
./usr/share/examples/libsaslc/mech		misc-libsaslc-examples
./usr/share/examples/libsaslc/mech/ANONYMOUS.conf	misc-libsaslc-examples	share
./usr/share/examples/libsaslc/mech/CRAM-MD5.conf	misc-libsaslc-examples	share
./usr/share/examples/libsaslc/mech/DIGEST-MD5.conf	misc-libsaslc-examples	share
./usr/share/examples/libsaslc/mech/EXTERNAL.conf	misc-libsaslc-examples	share
./usr/share/examples/libsaslc/mech/GSSAPI.conf	misc-libsaslc-examples	share
./usr/share/examples/libsaslc/mech/LOGIN.conf	misc-libsaslc-examples	share
./usr/share/examples/libsaslc/mech/PLAIN.conf	misc-libsaslc-examples	share
./usr/share/examples/libsaslc/saslc.conf	misc-libsaslc-examples	share
./usr/share/examples/lutok			misc-lutok-examples
./usr/share/examples/lutok/bindings.cpp		misc-lutok-examples	share,kyua
./usr/share/examples/lutok/hello.cpp		misc-lutok-examples	share,kyua
./usr/share/examples/lutok/interpreter.cpp	misc-lutok-examples	share,kyua
./usr/share/examples/lutok/raii.cpp		misc-lutok-examples	share,kyua
./usr/share/examples/mount_portal/advanced.1	misc-sys-examples	share
./usr/share/examples/mount_portal/advanced.1.conf	misc-sys-examples	share
./usr/share/examples/mount_portal/cvs.1		misc-sys-examples	share
./usr/share/examples/mount_portal/cvs.conf	misc-sys-examples	share
./usr/share/examples/mount_portal/cvs.sh	misc-sys-examples	share
./usr/share/examples/mount_portal/fing.c	misc-sys-examples	share
./usr/share/examples/mount_portal/fs.1		misc-sys-examples	share
./usr/share/examples/mount_portal/fs.1.conf	misc-sys-examples	share
./usr/share/examples/mount_portal/overview	misc-sys-examples	share
./usr/share/examples/mount_portal/rfilter.1	misc-sys-examples	share
./usr/share/examples/mount_portal/rfilter.2	misc-sys-examples	share
./usr/share/examples/mount_portal/rfilter.2.conf	misc-sys-examples	share
./usr/share/examples/mount_portal/sysctlfs.sh	misc-sys-examples	share
./usr/share/examples/mount_portal/tcp.1		misc-sys-examples	share
./usr/share/examples/mount_portal/tcp.1.conf	misc-sys-examples	share
./usr/share/examples/named/named.conf		misc-obsolete		obsolete
./usr/share/examples/nsd/nsd.conf		misc-netutil-examples	share,nsd
./usr/share/examples/openssl/CA.pl		misc-crypto-examples	share
./usr/share/examples/openssl/CA.sh		misc-crypto-examples	share,openssl=10
./usr/share/examples/openssl/der_chop		misc-obsolete		obsolete
./usr/share/examples/openssl/openssl.cnf	misc-crypto-examples	share
./usr/share/examples/pf/ackpri			misc-pf-examples	pf,share
./usr/share/examples/pf/faq-example1		misc-pf-examples	pf,share
./usr/share/examples/pf/faq-example2		misc-pf-examples	pf,share
./usr/share/examples/pf/faq-example3		misc-pf-examples	pf,share
./usr/share/examples/pf/queue1			misc-pf-examples	pf,share
./usr/share/examples/pf/queue2			misc-pf-examples	pf,share
./usr/share/examples/pf/queue3			misc-pf-examples	pf,share
./usr/share/examples/pf/queue4			misc-pf-examples	pf,share
./usr/share/examples/pf/spamd			misc-obsolete		obsolete
./usr/share/examples/postfix/AAAREADME		misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/ADDRESS_CLASS_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/ADDRESS_REWRITING_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/ADDRESS_VERIFICATION_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/BACKSCATTER_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/BASIC_CONFIGURATION_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/BUILTIN_FILTER_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/CONNECTION_CACHE_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/CONTENT_INSPECTION_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/DATABASE_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/DB_README		misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/DEBUG_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/DSN_README		misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/ETRN_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/FILTER_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/FORWARD_SECRECY_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/IPV6_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/LDAP_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/LICENSE		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/LMDB_README	misc-obsolete	obsolete
./usr/share/examples/postfix/LMTP_README	misc-obsolete	obsolete
./usr/share/examples/postfix/LOCAL_RECIPIENT_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/MAILDROP_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/MEMCACHE_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/MILTER_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/MULTI_INSTANCE_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/MYSQL_README	misc-obsolete	obsolete
./usr/share/examples/postfix/NFS_README		misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/OVERVIEW		misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/PCRE_README	misc-obsolete	obsolete
./usr/share/examples/postfix/PGSQL_README	misc-obsolete	obsolete
./usr/share/examples/postfix/POSTSCREEN_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/QMQP_README	misc-obsolete	obsolete
./usr/share/examples/postfix/QSHAPE_README	misc-obsolete	obsolete
./usr/share/examples/postfix/RELEASE_NOTES	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/RESTRICTION_CLASS_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/SASL_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/SCHEDULER_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/SMTPD_ACCESS_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/SMTPD_POLICY_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/SMTPD_PROXY_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/SOHO_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/SQLITE_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/STANDARD_CONFIGURATION_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/STRESS_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/TLS_LEGACY_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/TLS_LICENSE	misc-postfix-examples	postfix,share
./usr/share/examples/postfix/TLS_README		misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/TUNING_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/UUCP_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/VERP_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/VIRTUAL_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/XCLIENT_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/XFORWARD_README	misc-postfix-examples	postfix,doc
./usr/share/examples/postfix/access		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/aliases		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/canonical		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/generic		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/header_checks	misc-postfix-examples	postfix,share
./usr/share/examples/postfix/main.cf		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/master.cf		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/pcre_table		misc-obsolete		obsolete
./usr/share/examples/postfix/post-install	misc-obsolete		obsolete
./usr/share/examples/postfix/postfix-files	misc-obsolete		obsolete
./usr/share/examples/postfix/postfix-script	misc-obsolete		obsolete
./usr/share/examples/postfix/regexp_table	misc-obsolete		obsolete
./usr/share/examples/postfix/relocated		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/sample-aliases.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-auth.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-canonical.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-compatibility.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-debug.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-filter.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-flush.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-ldap.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-lmtp.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-local.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-mime.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-misc.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-pcre-access.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-pcre-body.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-pcre-header.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-pcre.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-qmqpd.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-rate.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-regexp-access.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-regexp-body.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-regexp-header.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-regexp.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-relocated.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-resource.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-rewrite.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-smtp.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-smtpd.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-transport.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/sample-virtual.cf	misc-obsolete		obsolete
./usr/share/examples/postfix/transport		misc-postfix-examples	postfix,share
./usr/share/examples/postfix/virtual		misc-postfix-examples	postfix,share
./usr/share/examples/pppd			misc-pppd-examples
./usr/share/examples/pppd/cingular3G		misc-pppd-examples	share
./usr/share/examples/pppd/cingular3G.chat	misc-pppd-examples	share
./usr/share/examples/pppd/cosmote3G		misc-pppd-examples	share
./usr/share/examples/pppd/cosmote3G.chat	misc-pppd-examples	share
./usr/share/examples/pppd/telus			misc-pppd-examples	share
./usr/share/examples/pppd/telus.chat		misc-pppd-examples	share
./usr/share/examples/racoon/FAQ			misc-netutil-examples	share
./usr/share/examples/racoon/README.certificate	misc-netutil-examples	share
./usr/share/examples/racoon/README.gssapi	misc-netutil-examples	share
./usr/share/examples/racoon/README.plainrsa	misc-netutil-examples	share
./usr/share/examples/racoon/psk.txt.sample	misc-netutil-examples	share
./usr/share/examples/racoon/racoon.conf.sample	misc-netutil-examples	share
./usr/share/examples/racoon/racoon.conf.sample-gssapi	misc-netutil-examples	share
./usr/share/examples/racoon/racoon.conf.sample-inherit	misc-netutil-examples	share
./usr/share/examples/racoon/racoon.conf.sample-natt	misc-netutil-examples	share
./usr/share/examples/racoon/racoon.conf.sample-plainrsa	misc-netutil-examples	share
./usr/share/examples/racoon/roadwarrior/README		misc-netutil-examples	share
./usr/share/examples/racoon/roadwarrior/client/phase1-down.sh		misc-netutil-examples	share
./usr/share/examples/racoon/roadwarrior/client/phase1-up.sh		misc-netutil-examples	share
./usr/share/examples/racoon/roadwarrior/client/racoon.conf		misc-netutil-examples	share
./usr/share/examples/racoon/roadwarrior/server/phase1-down.sh	misc-obsolete		obsolete
./usr/share/examples/racoon/roadwarrior/server/racoon.conf		misc-netutil-examples	share
./usr/share/examples/racoon/roadwarrior/server/racoon.conf-radius	misc-netutil-examples	share
./usr/share/examples/rtadvd/rtadvd.conf		misc-router-examples	use_inet6,share
./usr/share/examples/slip/slip.login		misc-slip-examples	share
./usr/share/examples/smbfs/dot.nsmbrc		misc-sysutil-examples	share
./usr/share/examples/supfiles/ftp.cs.umn.edu	misc-obsolete		obsolete
./usr/share/examples/supfiles/skarven.itea.unit.no	misc-obsolete		obsolete
./usr/share/examples/supfiles/sup.au.netbsd.org	misc-obsolete		obsolete
./usr/share/examples/supfiles/sup.de.netbsd.org	misc-obsolete		obsolete
./usr/share/examples/supfiles/sup.jp.netbsd.org	misc-sup-examples	share
./usr/share/examples/supfiles/sup.netbsd.org	misc-obsolete		obsolete
./usr/share/examples/supfiles/sup.no.netbsd.org	misc-obsolete		obsolete
./usr/share/examples/supfiles/sup.uk.netbsd.org	misc-obsolete		obsolete
./usr/share/examples/supfiles/sup2.fr.netbsd.org	misc-sup-examples	share
./usr/share/examples/syslogd/all.debug		misc-sysutil-examples	share
./usr/share/examples/syslogd/all.newsyslog.conf	misc-sysutil-examples	share
./usr/share/examples/tmux			misc-tmux-examples
./usr/share/examples/tmux/example_tmux.conf	misc-tmux-examples	share
./usr/share/examples/tmux/screen-keys.conf	misc-obsolete		obsolete
./usr/share/examples/unbound/unbound.conf	misc-netutil-examples	share,unbound
./usr/share/examples/usermgmt			misc-obsolete		obsolete
./usr/share/examples/usermgmt/.cshrc		misc-obsolete		obsolete
./usr/share/examples/usermgmt/.login		misc-obsolete		obsolete
./usr/share/examples/usermgmt/.profile		misc-obsolete		obsolete
./usr/share/misc/NetBSD.el			misc-reference-share	share
./usr/share/misc/airport			misc-reference-share	share
./usr/share/misc/birthtoken			misc-reference-share	share
./usr/share/misc/country			misc-reference-share	share
./usr/share/misc/domains			misc-reference-share	share
./usr/share/misc/flowers			misc-reference-share	share
./usr/share/misc/inter.phone			misc-reference-share	share
./usr/share/misc/language			misc-reference-share	share
./usr/share/misc/na.phone			misc-reference-share	share
./usr/share/misc/na.postal			misc-reference-share	share
./usr/share/misc/zipcodes			misc-reference-share	share
./usr/share/postfix				misc-obsolete		obsolete
./usr/share/xml					misc-xml-share
./usr/share/xml/atf				misc-atf-share
./usr/share/xml/atf/tests-results.dtd		misc-atf-share		share,atf,!kyua
./usr/share/xml/atf/tests-results.dtd		misc-obsolete		share,kyua,obsolete
./usr/share/xml/catalog				misc-obsolete		share,kyua,obsolete
./usr/share/xml/catalog				misc-xml-share		share,!kyua
./usr/share/xsl					misc-xml-share
./usr/share/xsl/atf				misc-atf-share
./usr/share/xsl/atf/tests-results.xsl		misc-atf-share		share,atf,!kyua
./usr/share/xsl/atf/tests-results.xsl		misc-obsolete		share,kyua,obsolete
./var/db/obsolete/misc				base-sys-root