summaryrefslogtreecommitdiff
path: root/sys/lib/man/permind/permindex
blob: dfbdbe3a1580e07aa427d348ae000ee0d9f134f3 (plain)
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
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
.xx "" "exec, exit, flag, rfork, shift, wait, whatis, .," "~ \- command language" "rc, cd, eval," "rc(1)" 181
.xx "assemblers" "" "0a, 1a, 2a, 5a, 6a, 7a, 8a, ka, qa, va \-" "" "2a(1)" 4
.xx "compilers" "" "0c, 1c, 2c, 5c, 6c, 7c, 8c, kc, qc, vc \- C" "" "2c(1)" 5
.xx "" "" "0l, 1l, 2l, 5l, 6l, 7l, 8l, kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "" "mp3dec \- decode audio MPEG files (layers" "1, 2 and 3)" "" "mp3dec(1)" 138
.xx "" "vt \- emulate a" "100 or VT-220 terminal" "" "vt(1)" 260
.xx "" "172.31.204.64/27," "10.12.0.0/24 \- Antwerp Plan 9 Networks" "" 
.xx "" "apm \- Advanced Power Management" "1.2 BIOS interface" "" "apm(3)" 583
.xx "" "apm \- Advanced Power Management" "1.2 BIOS interface" "" "apm(8)" 830
.xx "Plan 9 Networks" "" "172.31.204.64/27, 10.12.0.0/24 \- Antwerp" "" 
.xx "" "0a," "1a, 2a, 5a, 6a, 7a, 8a, ka, qa, va \- assemblers" "" "2a(1)" 4
.xx "" "0c," "1c, 2c, 5c, 6c, 7c, 8c, kc, qc, vc \- C compilers" "" "2c(1)" 5
.xx "" "0l," "1l, 2l, 5l, 6l, 7l, 8l, kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "" "mp3dec \- decode audio MPEG files (layers 1," "2 and 3)" "" "mp3dec(1)" 138
.xx "" "pushssl \- attach SSL version" "2 encryption to a communication channel" "" "pushssl(2)" 493
.xx "" "vt \- emulate a VT-100 or" "220 terminal" "" "vt(1)" 260
.xx "" "" "27, 10.12.0.0/24 \- Antwerp Plan 9 Networks" "" 
.xx "" "0a, 1a," "2a, 5a, 6a, 7a, 8a, ka, qa, va \- assemblers" "" "2a(1)" 4
.xx "" "0c, 1c," "2c, 5c, 6c, 7c, 8c, kc, qc, vc \- C compilers" "" "2c(1)" 5
.xx "" "0l, 1l," "2l, 5l, 6l, 7l, 8l, kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "" "\- decode audio MPEG files (layers 1, 2 and" "3)" "mp3dec" "mp3dec(1)" 138
.xx "zipfs \- mount archival file systems" "" "32vfs, cpiofs, tapfs, tarfs, tpfs, v6fs, v10fs," "" "tapefs(4)" 715
.xx "" "fff2p3, pdiv4, add4, sub4 \- operations on" "3-d points and planes" "/pn2f3, ppp2f3," "arith3(2)" 294
.xx "" "qball \-" "3-d rotation controller" "" "qball(2)" 497
.xx "memo, sokoban, sudoku \- time wasters" "" "4s, 5s, festoon, juggle, life, mahjongg," "" "games(1)" 92
.xx "" "0a, 1a, 2a," "5a, 6a, 7a, 8a, ka, qa, va \- assemblers" "" "2a(1)" 4
.xx "" "0c, 1c, 2c," "5c, 6c, 7c, 8c, kc, qc, vc \- C compilers" "" "2c(1)" 5
.xx "" "" "5i, ki, vi, qi \- instruction simulators" "" "vi(1)" 256
.xx "" "0l, 1l, 2l," "5l, 6l, 7l, 8l, kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "sokoban, sudoku \- time wasters" "4s," "5s, festoon, juggle, life, mahjongg, memo," "" "games(1)" 92
.xx "" "0a, 1a, 2a, 5a," "6a, 7a, 8a, ka, qa, va \- assemblers" "" "2a(1)" 4
.xx "" "0c, 1c, 2c, 5c," "6c, 7c, 8c, kc, qc, vc \- C compilers" "" "2c(1)" 5
.xx "6to4 tunnel of IPv6 through IPv4" "" "6in4 - configure and run automatic or manual" "" "6in4(8)" 822
.xx "" "0l, 1l, 2l, 5l," "6l, 7l, 8l, kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "" "0a, 1a, 2a, 5a, 6a," "7a, 8a, ka, qa, va \- assemblers" "" "2a(1)" 4
.xx "" "0c, 1c, 2c, 5c, 6c," "7c, 8c, kc, qc, vc \- C compilers" "" "2c(1)" 5
.xx "" "0l, 1l, 2l, 5l, 6l," "7l, 8l, kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "" "0a, 1a, 2a, 5a, 6a, 7a," "8a, ka, qa, va \- assemblers" "" "2a(1)" 4
.xx "" "0c, 1c, 2c, 5c, 6c, 7c," "8c, kc, qc, vc \- C compilers" "" "2c(1)" 5
.xx "" "0l, 1l, 2l, 5l, 6l, 7l," "8l, kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "" "dump9660, mk9660 \- create an" "9660 CD image" "" "mk9660(8)" 885
.xx "systems" "dossrv, 9660srv, a:, b:, c:, d:," "9fat:, dosmnt, eject \- DOS and ISO9660 file" "" "dossrv(4)" 667
.xx "" "srv, srvold9p," "9fs, srvssh \- start network file service" "" "srv(4)" 713
.xx "" "9load, 9pxeload, 9loadusb," "9loadask, ld \- PC bootstrap program" "" "9load(8)" 823
.xx "" "intro \- introduction to the Plan 9 File Protocol," "9P" "" "intro(5)" 735
.xx "" "fversion \- initialize" "9P connection and negotiate version" "" "fversion(2)" 403
.xx "" "allocreq, closereq, lookupreq, removereq \-" "9P fid, request tracking" "/freereqpool," "9pfid(2)" 279
.xx "" "threadlistensrv, threadpostmountsrv, srv \-" "9P file service" "/respond, responderror," "9p(2)" 273
.xx "" "u9fs \- serve" "9P from Unix" "" "u9fs(4)" 718
.xx "" "mnt \- attach to" "9P servers" "" "mnt(3)" 619
.xx "" "" "9pcon \- 9P to text translator" "" "9pcon(8)" 826
.xx "bootstrap program" "9load," "9pxeload, 9loadusb, 9loadask, ld \- PC" "" "9load(8)" 823
.xx "" "" "aan \- always available network" "" "aan(8)" 827
.xx "Web" "" "abaco, readweb \- browse the World-Wide" "" "abaco(1)" 10
.xx "" "" "abort \- generate a fault" "" "abort(2)" 283
.xx "" "flush \-" "abort a message" "" "flush(5)" 742
.xx "" "" "abs, labs \- integer absolute values" "" "abs(2)" 284
.xx "functions" "fabs, fmod, floor, ceil \-" "absolute value, remainder, floor, ceiling" "" "floor(2)" 384
.xx "" "consolefs, C, clog \- file system for console" "access" "" "consolefs(4)" 661
.xx "" "" "access \- determine accessibility of file" "" "access(2)" 285
.xx "" "rlogind, rexexec, ftpd \- Internet remote" "access daemons" "telnetd," "ipserv(8)" 878
.xx "" "RGB, readcolmap, writecolmap \-" "access display color map" "" "readcolmap(2)" 506
.xx "" "getenv, putenv \-" "access environment variables" "" "getenv(2)" 405
.xx "" "filesym, fileline, fnbound \- symbol table" "access functions" "/textsym, file2pc, fileelem," "symbol(2)" 542
.xx "" "screenlock \- disable" "access to a terminal" "" "screenlock(8)" 935
.xx "" "leswab, leswal, leswav \- machine-independent" "access to executable files" "/beswal, beswav," "mach(2)" 445
.xx "" "access \- determine" "accessibility of file" "" "access(2)" 285
.xx "" "test \- set status" "according to condition" "" "test(1)" 237
.xx "" "prof -" "accumulate histogram of process execution" "" "prof(2)" 491
.xx "" "aux/mouse," "accupoint \- configure a mouse to a port" "" "mouse(8)" 891
.xx "" "" "acid, truss, trump \- debugger" "" "acid(1)" 11
.xx "" "" "acme \- control files for text windows" "" "acme(4)" 652
.xx "" "" "acme, win, awd \- interactive text windows" "" "acme(1)" 15
.xx "" "sin, cos, tan, asin," "acos, atan, atan2 \- trigonometric functions" "" "sin(2)" 530
.xx "controlcalled,/" "Control, Controlset," "activate, closecontrol, closecontrolset," "" "control(2)" 321
.xx "closept3, dot3, cross3, len3, dist3, unit3,/" "" "add3, sub3, neg3, div3, mul3, eqpt3," "" "arith3(2)" 294
.xx "" "/vdiv3, vrem3, pn2f3, ppp2f3, fff2p3, pdiv4," "add4, sub4 \- operations on 3-d points and/" "" "arith3(2)" 294
.xx "" "newuser \-" "adding a new user" "" "newuser(8)" 898
.xx "fauth_proxy, auth_allocrpc,/" "amount, newns," "addns, login, noworld, auth_proxy," "" "auth(2)" 299
.xx "rectsubpt, insetrect, canonrect, eqpt, eqrect,/" "" "addpt, subpt, mulpt, divpt, rectaddpt," "" "addpt(2)" 286
.xx "" "trampoline \- forward incoming calls to another" "address" "" "trampoline(8)" 953
.xx "the US government" "ipok \- verify that an IP" "address belongs to a country approved of by" "" "ipok(8)" 877
.xx "" "ipokfs \- terrorist IP" "address file system" "" "ipokfs(4)" 691
.xx "" "ratfs \- mail" "address ratification file system" "" "ratfs(4)" 706
.xx "" "hnputs, ptclbsum, readipifc \- Internet Protocol" "addressing" "/nhgetl, nhgets, hnputv, hnputl," "ip(2)" 437
.xx "_tas \- atomic RMW operations" "ainc," "adec, cas, casv, casp, loadlink, storecond," "" "atom(2)" 298
.xx "" "ident, matmul, matmulr, determinant," "adjoint, invertmat, xformpoint, xformpointd,/" "" "matrix(2)" 450
.xx "" "inflatezlibblock, flateerr, mkcrctab, blockcrc," "adler32 \- deflate compression" "/inflateblock," "flate(2)" 382
.xx "" "intro \- introduction to system" "administration" "" "intro(8)" 821
.xx "" "intro \- introduction to local hardware" "administration" "" 
.xx "" "kfscmd, ksync \- kfs" "administration" "" "kfscmd(8)" 880
.xx "" "/setup.9fat, setup.disk, setup.kfs, update \-" "administration for local file systems" "" "update(8)" 955
.xx "" "/setupAESXCBCstate, aesXCBCmac -" "advanced encryption standard (rijndael)" "" "aes(2)" 288
.xx "(Serial AT) storage device/" "sdahci \- AHCI" "Advanced Host Controller Interface) SATA" "" "sdahci(3)" 633
.xx "interface" "apm \-" "Advanced Power Management 1.2 BIOS" "" "apm(3)" 583
.xx "interface" "apm \-" "Advanced Power Management 1.2 BIOS" "" "apm(8)" 830
.xx "" "sha2_224, sha2_256, sha2_384, sha2_512," "aes, hmac_x, hmac_md5, hmac_sha1,/" "/sha1," "sechash(2)" 521
.xx "" "" "aescbc, ipso, secstore \- secstore commands" "" "secstore(1)" 203
.xx "aesCTRencrypt,/" "setupAESstate," "aesCBCencrypt, aesCBCdecrypt," "" "aes(2)" 288
.xx "aesXCBCmac/" "/aesCBCdecrypt, aesCTRencrypt," "aesCTRdecrypt, setupAESXCBCstate," "" "aes(2)" 288
.xx "kapellen \- Antwerp/" "delirium, duvel, leffe," "affligem, arend, koninck, kijkuit, doom," "" 
.xx "font utilities" "cachechars," "agefont, loadchar, Subfont, Fontchar, Font \-" "" "cachechars(2)" 314
.xx "" "factotum, fgui \- authentication" "agent" "" "factotum(4)" 673
.xx "SATA (Serial AT) storage device/" "sdahci \-" "AHCI (Advanced Host Controller Interface)" "" "sdahci(3)" 633
.xx "storecond, _tas \- atomic RMW operations" "" "ainc, adec, cas, casv, casp, loadlink," "" "atom(2)" 298
.xx "language interpreter)" "gs \-" "Aladdin Ghostscript (PostScript and PDF" "" "gs(1)" 98
.xx "" "sleep," "alarm \- delay, ask for delayed note" "" "sleep(2)" 532
.xx "" "dsasigfree, dsaprivtopub - digital signature" "algorithm" "/dsaprivfree, dsasigalloc," "dsa(2)" 356
.xx "" "X509gen, X509verify \- RSA encryption" "algorithm" "/rsapubfree, X509toRSApub," "rsa(2)" 512
.xx "" "" "aliasmail \- expand system wide mail aliases" "" "aliasmail(8)" 828
.xx "" "col \- column" "alignment" "" "col(1)" 45
.xx "" "setupRC4state, rc4, rc4skip, rc4back -" "alleged rc4 encryption" "" "rc4(2)" 504
.xx "" "/writeimage, bytesperline, wordsperline \-" "allocating, freeing, reading, writing images" "" "allocimage(2)" 289
.xx "" "binalloc, bingrow, binfree \- grouped memory" "allocation" "" "bin(2)" 306
.xx "" "brk, sbrk \- change memory" "allocation" "" "brk(2)" 313
.xx "" "segbrk \- change memory" "allocation" "" "segbrk(2)" 526
.xx "" "getrealloctag, malloctopoolblock \- memory" "allocator" "/setrealloctag, getmalloctag," "malloc(2)" 448
.xx "" "vtstrdup, vtfree \- error-checking memory" "allocators" "/vtmalloc, vtmallocz, vtrealloc," "venti-mem(2)" 570
.xx "lookupfid, removefid, Req,/" "Fid, Fidpool," "allocfidpool, freefidpool, allocfid, closefid," "" "9pfid(2)" 279
.xx "namedimage, setalpha,/" "allocimage," "allocimagemix, freeimage, nameimage," "" "allocimage(2)" 289
.xx "lookupkey, deletekey \- integer to/" "Intmap," "allocmap, freemap, insertkey, caninsertkey," "" "intmap(2)" 433
.xx "" "/wordaddr, byteaddr, memimagemove," "allocmemimage, allocmemimaged,/" "" "memdraw(2)" 452
.xx "" "/byteaddr, memimagemove, allocmemimage," "allocmemimaged, readmemimage,/" "" "memdraw(2)" 452
.xx "" "/drawclip, memlinebbox, memlineendsize," "allocmemsubfont, openmemsubfont,/" "" "memdraw(2)" 452
.xx "" "/closefid, lookupfid, removefid, Req, Reqpool," "allocreqpool, freereqpool, allocreq, closereq,/" "" "9pfid(2)" 279
.xx "allocwindow, bottomwindow,/" "Screen," "allocscreen, publicscreen, freescreen," "" "window(2)" 576
.xx "lookupsubfont, uninstallsubfont,/" "" "allocsubfont, freesubfont, installsubfont," "" "subfont(2)" 540
.xx "removefile, walkfile, opendirfile,/" "Tree," "alloctree, freetree, File, createfile, closefile," "" "9pfile(2)" 281
.xx "" "Screen, allocscreen, publicscreen, freescreen," "allocwindow, bottomwindow,/" "" "window(2)" 576
.xx "chanclosing, chanprint, mainstacksize,/" "" "alt, chanclose, chancreate, chanfree, chaninit," "" "thread(2)" 545
.xx "" "aan \-" "always available network" "" "aan(8)" 827
.xx "" "/auth_freerpc, auth_rpc, auth_getkey," "amount_getkey, auth_freeAI, auth_chuid,/" "" "auth(2)" 299
.xx "" "lex \- generator of lexical" "analysis programs" "" "lex(1)" 119
.xx "setnetmtpt, getnetconninfo,/" "dial, hangup," "announce, listen, accept, reject, netmkaddr," "" "dial(2)" 345
.xx "" "" "ansitize \- translate Plan 9 C to ANSI C" "" "ansitize(1)" 20
.xx "" "172.31.204.64/27, 10.12.0.0/24 \-" "Antwerp Plan 9 Networks" "" 
.xx "" "arend, koninck, kijkuit, doom, kapellen \-" "Antwerp Plan 9 servers" "/leffe, affligem," 
.xx "the system" "fshalt, reboot \- halt" "any local file systems and optionally reboot" "" "fshalt(8)" 866
.xx "" "aoesrv - serve data via ATA-over-Ethernet" "Ao)" "" "aoesrv(8)" 829
.xx "" "sdaoe \- ATA-over-Ethernet" "Ao) storage device interface" "" "sdaoe(3)" 635
.xx "" "" "aoe \- ATA-over-Ethernet (Ao) interface" "" "aoe(3)" 580
.xx "(Ao)" "" "aoesrv - serve data via ATA-over-Ethernet" "" "aoesrv(8)" 829
.xx "" "" "a.out \- object file format" "" "a.out(6)" 752
.xx "" "" "ap \- fetch Associated Press news articles" "" "ap(1)" 23
.xx "" "pcc \-" "APE C compiler driver" "" "pcc(1)" 162
.xx "interface" "" "apm \- Advanced Power Management 1.2 BIOS" "" "apm(3)" 583
.xx "interface" "" "apm \- Advanced Power Management 1.2 BIOS" "" "apm(8)" 830
.xx "client-server replica/" "applychanges," "applylog, compactdb, updatedb \- simple" "" "replica(8)" 927
.xx "" "\- verify that an IP address belongs to a country" "approved of by the US government" "ipok" "ipok(8)" 877
.xx "" "" "aquarela \- CIFS server" "" "aquarela(8)" 831
.xx "" "" "ar \- archive and library maintainer" "" "ar(1)" 24
.xx "" "" "ar \- archive (library) file format" "" "ar(6)" 754
.xx "" "/fillbezier, fillbezspline, ellipse, fillellipse," "arc, fillarc, icossin, icossin2, border, string,/" "" "draw(2)" 350
.xx "control" "" "arch \- architecture-specific information and" "" "arch(3)" 584
.xx "\-/" "/mail2fs, M, Mg, mspool, mailplumb, msgs," "Arch, Spam, Reply, Send, Post, Delmesg, Save" "" "msgs(1)" 142
.xx "" "" "archfs \- mount mkfs-style archive" "" "archfs(4)" 655
.xx "" "arch \-" "architecture-specific information and control" "" "arch(3)" 584
.xx "" "fossil, flchk, flfmt \-" "archival file server" "" "fossil(4)" 679
.xx "" "tapfs, tarfs, tpfs, v6fs, v10fs, zipfs \- mount" "archival file systems" "32vfs, cpiofs," "tapefs(4)" 715
.xx "" "venti \-" "archival storage server" "" "venti(2)" 558
.xx "" "venti \-" "archival storage server" "" "venti(6)" 798
.xx "" "venti \-" "archival storage server" "" "venti(8)" 956
.xx "" "archfs \- mount mkfs-style" "archive" "" "archfs(4)" 655
.xx "" "ar \-" "archive and library maintainer" "" "ar(1)" 24
.xx "" "ar \-" "archive (library) file format" "" "ar(6)" 754
.xx "" "vac, unvac \- create, extract a vac" "archive on Venti" "" "vac(1)" 253
.xx "" "mkfs, mkext \-" "archive or update a file system" "" "mkfs(8)" 888
.xx "" "tar, dircp \-" "archiver" "" "tar(1)" 229
.xx "" "rdarena, wrarena \- copy" "arenas between venti servers" "" "venti-backup(8)" 960
.xx "" "/tobackup, dumparenas, restore \- backup venti" "arenas to blu-ray discs or restore from them" "" "backup(8)" 835
.xx "Antwerp Plan/" "delirium, duvel, leffe, affligem," "arend, koninck, kijkuit, doom, kapellen \-" "" 
.xx "from argv" "ARGBEGIN, ARGEND," "ARGC, ARGF, EARGF \- process option letters" "" "arg(2)" 292
.xx "" "echo \- print" "arguments" "" "echo(1)" 72
.xx "" "crtprefree, crtresfree \- extended precision" "arithmetic" "/mpmagsub, crtpre, crtin, crtout," "mp(2)" 463
.xx "" "qinv, qlen, slerp, qmid, qsqrt \- Quaternion" "arithmetic" "/qsub, qneg, qmul, qdiv, qunit," "quaternion(2)" 499
.xx "" "bc \- arbitrary-precision" "arithmetic language" "" "bc(1)" 31
.xx "" "/rectclip, combinerect, Dx, Dy, Pt, Rect, Rpt \-" "arithmetic on points and rectangles" "" "addpt(2)" 286
.xx "" "dec16, enc16, encodefmt \- encoding byte" "arrays as strings" "/enc64, dec32, enc32," "encode(2)" 363
.xx "PB L" "/runestringbg, runestringnbg, _string," "ARROW, drawsetdebug \- graphics functions" "" "draw(2)" 350
.xx "" "ap \- fetch Associated Press news" "articles" "" "ap(1)" 23
.xx "" "uudecode \- encode/decode a file as printable" "ASCII" "uuencode," "uuencode(1)" 252
.xx "" "toascii, _toupper, _tolower, toupper, tolower \-" "ASCII character classification" "/iscntrl, isascii," "ctype(2)" 339
.xx "" "xd \- hex, octal, decimal, or" "ASCII dump" "" "xd(1)" 265
.xx "" "UTF, Unicode," "ASCII, rune \- character set and format" "" "utf(6)" 797
.xx "" "ascii, unicode \- interpret" "ASCII, Unicode characters" "" "ascii(1)" 25
.xx "time" "ctime, localtime, gmtime," "asctime, tm2sec, timezone \- convert date and" "" "ctime(2)" 337
.xx "" "/convA2M, convM2A, convPR2M, convM2PR," "_asgetticket, _asrdresp \- routines for/" "" "authsrv(2)" 302
.xx "functions" "sin, cos, tan," "asin, acos, atan, atan2 \- trigonometric" "" "sin(2)" 530
.xx "generate and format rsa keys" "rsagen, rsafill," "asn12rsa, rsa2pub, rsa2ssh, rsa2x509 \-" "" "rsa(8)" 929
.xx "rsaencrypt, rsagen, rsaprivalloc,/" "asn1dump," "asn1toRSApriv, decodePEM, rsadecrypt," "" "rsa(2)" 512
.xx "" "/convM2A, convPR2M, convM2PR, _asgetticket," "_asrdresp \- routines for communicating with/" "" "authsrv(2)" 302
.xx "Processors" "na \-" "assembler for the Symbios Logic PCI-SCSI I/O" "" "na(8)" 892
.xx "" "0a, 1a, 2a, 5a, 6a, 7a, 8a, ka, qa, va \-" "assemblers" "" "2a(1)" 4
.xx "" "" "assert \- check program invariants" "" "assert(2)" 296
.xx "" "ap \- fetch" "Associated Press news articles" "" "ap(1)" 23
.xx "" "fd2path \- return file name" "associated with file descriptor" "" "fd2path(2)" 379
.xx "" "\- Personal Computer Memory Card Interface" "Association (PCMCI) device" "i82365" "i82365(3)" 605
.xx "" "" "astro \- print astronomical information" "" "astro(7)" 806
.xx "" "notify, noted, atnotify \- handle" "asynchronous process notification" "" "notify(2)" 473
.xx "" "pump \- copy" "asynchronously via a large circular buffer" "" "pump(1)" 178
.xx "" "" "at, drain, expect, pass \- dialer scripting tools" "" "expect(1)" 81
.xx "" "Host Controller Interface) SATA (Serial" "AT) storage device drivers" "/\- AHCI (Advanced" "sdahci(3)" 633
.xx "" "sin, cos, tan, asin, acos, atan," "atan2 \- trigonometric functions" "" "sin(2)" 530
.xx "" "aoesrv - serve data via" "ATA-over-Ethernet (Ao)" "" "aoesrv(8)" 829
.xx "" "aoe \-" "ATA-over-Ethernet (Ao) interface" "" "aoe(3)" 580
.xx "interface" "sdaoe \-" "ATA-over-Ethernet (Ao) storage device" "" "sdaoe(3)" 635
.xx "process cleanup" "exits, _exits, atexit," "atexitdont, terminate \- terminate process," "" "exits(2)" 373
.xx "notification" "notify, noted," "atnotify \- handle asynchronous process" "" "notify(2)" 473
.xx "strtoll, strtoul, strtoull \- convert text to/" "atof," "atoi, atol, atoll, charstod, strtod, strtol," "" "atof(2)" 297
.xx "" "iounit \- return size of" "atomic I/O unit for file descriptor" "" "iounit(2)" 436
.xx "" "cas, casv, casp, loadlink, storecond, _tas \-" "atomic RMW operations" "ainc, adec," "atom(2)" 298
.xx "connection" "" "attach, auth \- messages to establish a" "" "attach(5)" 739
.xx "" "pipefile \-" "attach filter to file in name space" "" "pipefile(1)" 167
.xx "communication channel" "pushssl \-" "attach SSL version 2 encryption to a" "" "pushssl(2)" 493
.xx "" "/okThumbprint, readcert, readcertchain \-" "attach TLS1 or SSL3 encryption to a/" "" "pushtls(2)" 494
.xx "" "mnt \-" "attach to 9P servers" "" "mnt(3)" 619
.xx "put2,/" "/setmap, findseg, unusemap, loadmap," "attachproc, get1, get2, get4, get8, put1," "" "mach(2)" 445
.xx "" "stat, wstat \- inquire or change file" "attributes" "" "stat(5)" 747
.xx "" "" "audio \- digital audio jukebox" "" "audio(7)" 807
.xx "controller" "" "audio \- SoundBlaster or ESS1688 audio" "" "audio(3)" 586
.xx "serial, usbeject, usbfat: \- Universal Serial Bus/" "" "audio, ccid, disk, ether, kb, print, probe," "" "usb(4)" 722
.xx "" "mp3enc \- create mp3" "audio files" "" "mp3enc(1)" 139
.xx "" "audio \- digital" "audio jukebox" "" "audio(7)" 807
.xx "" "mp3dec \- decode" "audio MPEG files (layers 1, 2 and 3)" "" "mp3dec(1)" 138
.xx "" "attach," "auth \- messages to establish a connection" "" "attach(5)" 739
.xx "" "/login, noworld, auth_proxy, fauth_proxy," "auth_allocrpc, auth_freerpc, auth_rpc,/" "" "auth(2)" 299
.xx "" "/amount_getkey, auth_freeAI, auth_chuid," "auth_challenge, auth_response,/" "" "auth(2)" 299
.xx "convT2M, convM2T, convTR2M, convM2TR,/" "" "authdial, passtokey, nvcsum, readnvram," "" "authsrv(2)" 302
.xx "" "factotum, fgui \-" "authentication agent" "" "factotum(4)" 673
.xx "" "\- Digital Pathways SecureNet Key remote" "authentication box" "securenet" "securenet(8)" 940
.xx "" "keyfs, warning \-" "authentication database files" "" "keyfs(4)" 692
.xx "" "login, newns, none, as \- maintain or query" "authentication databases" "/debug, wrkey," "auth(8)" 833
.xx "server" "fauth \- set up" "authentication on a file descriptor to a file" "" "fauth(2)" 375
.xx "" "authsrv, p9any, p9sk1, p9sk2 \-" "authentication protocols" "" "authsrv(6)" 755
.xx "" "_asrdresp \- routines for communicating with" "authentication servers" "/_asgetticket," "authsrv(2)" 302
.xx "" "/auth_rpc, auth_getkey, amount_getkey," "auth_freeAI, auth_chuid, auth_challenge,/" "" "auth(2)" 299
.xx "" "auth_chuid, auth_challenge, auth_response," "auth_freechal, auth_respond,/" "/auth_freeAI," "auth(2)" 299
.xx "" "/auth_proxy, fauth_proxy, auth_allocrpc," "auth_freerpc, auth_rpc, auth_getkey,/" "" "auth(2)" 299
.xx "" "/auth_userpasswd, auth_getuserpasswd," "auth_getinfo \- routines for authenticating/" "" "auth(2)" 299
.xx "" "/auth_allocrpc, auth_freerpc, auth_rpc," "auth_getkey, amount_getkey, auth_freeAI,/" "" "auth(2)" 299
.xx "for/" "/auth_respond, auth_userpasswd," "auth_getuserpasswd, auth_getinfo \- routines" "" "auth(2)" 299
.xx "" "amount, newns, addns, login, noworld," "auth_proxy, fauth_proxy, auth_allocrpc,/" "" "auth(2)" 299
.xx "" "/auth_challenge, auth_response, auth_freechal," "auth_respond, auth_userpasswd,/" "" "auth(2)" 299
.xx "" "/fauth_proxy, auth_allocrpc, auth_freerpc," "auth_rpc, auth_getkey, amount_getkey,/" "" "auth(2)" 299
.xx "newns,/" "/printnetkey, status, enable, disable," "authsrv, guard.srv, debug, wrkey, login," "" "auth(8)" 833
.xx "authentication protocols" "" "authsrv, p9any, p9sk1, p9sk2 \-" "" "authsrv(6)" 755
.xx "" "/auth_response, auth_freechal, auth_respond," "auth_userpasswd, auth_getuserpasswd,/" "" "auth(2)" 299
.xx "through IPv4" "6in4 - configure and run" "automatic or manual 6to4 tunnel of IPv6" "" "6in4(8)" 822
.xx "systems" "mntgen \-" "automatically generate mount points for file" "" "mntgen(4)" 696
.xx "mouse to a port" "" "aux/mouse, aux/accupoint \- configure a" "" "mouse(8)" 891
.xx "them." "kbmap \- show a list of" "available keyboard maps and switch between" "" "kbmap(1)" 113
.xx "" "aan \- always" "available network" "" "aan(8)" 827
.xx "" "/insertavl, lookupavl, deleteavl, avlwalk," "avlnext, avlprev, endwalk - AVL tree routines" "" "avl(2)" 304
.xx "exit" "" "await, wait, waitpid \- wait for a process to" "" "wait(2)" 575
.xx "" "acme, win," "awd \- interactive text windows" "" "acme(1)" 15
.xx "processing language" "" "awk \- pattern-directed scanning and" "" "awk(1)" 26
.xx "ISO9660 file systems" "dossrv, 9660srv, a:," "b:, c:, d:, 9fat:, dosmnt, eject \- DOS and" "" "dossrv(4)" 667
.xx "structural regular expressions" "sam," "B, sam.save, samterm \- screen editor with" "" "sam(1)" 198
.xx "" "cdfs, cddb \- optical disc (CD, DVD," "B) track reader and writer file system" "" "cdfs(4)" 656
.xx "" "backup, tobackup, dumparenas, restore \-" "backup venti arenas to blu-ray discs or/" "" "backup(8)" 835
.xx "and server" "" "bandt2 \- Viaduct bridge-and-tunnel client" "" "bandt2(8)" 836
.xx "" "rtcp, stcp \- measure TCP" "bandwidth" "" "rtcp(8)" 931
.xx "" "statusbar \- display a" "bar graph status window" "" "statusbar(8)" 948
.xx "" "vacfs \- a" "based file system" "" "vacfs(4)" 727
.xx "" "Spam, Reply, Send, Post, Delmesg, Save \- file" "based mail reader" "/mailplumb, msgs, Arch," "msgs(1)" 142
.xx "" "" "basename \- strip file name affixes" "" "basename(1)" 30
.xx "" "/Bprint, Bvprint, Bwrite, Bflush, Bterm," "Bbuffered \- buffered input/output" "" "bio(2)" 309
.xx "" "" "bc \- arbitrary-precision arithmetic language" "" "bc(1)" 31
.xx "" "cb \- C program" "beautifier" "" "cb(1)" 40
.xx "" "uptime \- show how long the system has" "been running" "" "uptime(1)" 251
.xx "" "trace \- show (real-time) process" "behavior" "" "trace(1)" 243
.xx "" "/symoff, fpformat, beieee80ftos, beieeesftos," "beieeedftos, leieee80ftos, leieeesftos,/" "" "debugger(2)" 340
.xx "government" "ipok \- verify that an IP address" "belongs to a country approved of by the US" "" "ipok(8)" 877
.xx "" "/get4, get8, put1, put2, put4, put8, beswab," "beswal, beswav, leswab, leswal, leswav \-/" "" "mach(2)" 445
.xx "" "/mpassign, mprand, strtomp, mpfmt,mptoa," "betomp, mptobe, letomp, mptole, mptoui,/" "" "mp(2)" 463
.xx "" "/drawrepl, replclipr, line, poly, fillpoly, bezier," "bezspline, fillbezier, fillbezspline, ellipse,/" "" "draw(2)" 350
.xx "bfECBdecrypt - blowfish/" "setupBFstate," "bfCBCencrypt, bfCBCdecrypt, bfECBencrypt," "" "blowfish(2)" 312
.xx "" "/Bungetc, Bungetrune, Bread, Bseek, Boffset," "Bfildes, Blinelen, Bputc, Bputrune, Bprint,/" "" "bio(2)" 309
.xx "" "Bputc, Bputrune, Bprint, Bvprint, Bwrite," "Bflush, Bterm, Bbuffered \- buffered/" "/Blinelen," "bio(2)" 309
.xx "Bread,/" "Bopen, Binit, Binits, Brdline, Brdstr," "Bgetc, Bgetrune, Bgetd, Bungetc, Bungetrune," "" "bio(2)" 309
.xx "allocation" "" "binalloc, bingrow, binfree \- grouped memory" "" "bin(2)" 306
.xx "" "strip \- remove symbols from" "binary files" "" "strip(1)" 224
.xx "" "" "bind, mount, unmount \- change name space" "" "bind(1)" 33
.xx "" "" "bind, mount, unmount \- change name space" "" "bind(2)" 307
.xx "allocation" "binalloc," "bingrow, binfree \- grouped memory" "" "bin(2)" 306
.xx "Bungetc, Bungetrune, Bread,/" "Bopen, Binit," "Binits, Brdline, Brdstr, Bgetc, Bgetrune, Bgetd," "" "bio(2)" 309
.xx "" "keys.who \-" "biographic information for key holders" "" "keys.who(6)" 770
.xx "" "apm \- Advanced Power Management 1.2" "BIOS interface" "" "apm(3)" 583
.xx "" "apm \- Advanced Power Management 1.2" "BIOS interface" "" "apm(8)" 830
.xx "" "light, pencal, keyboard, params, prompter \-" "bitsy-specific utilities" "bitsyload," "bitsyload(1)" 35
.xx "" "/Bungetrune, Bread, Bseek, Boffset, Bfildes," "Blinelen, Bputc, Bputrune, Bprint, Bvprint,/" "" "bio(2)" 309
.xx "" "vtglobaltolocal, vtlocaltoglobal \- Venti" "block cache" "/vtcachelocal, vtcachesetwrite," "venti-cache(2)" 559
.xx "" "vtzeroextend, vtzeroscore \- Venti" "block truncation" "vtzerotruncate," "venti-zero(2)" 574
.xx "" "setupDESstate, des_key_setup," "block_cipher, desCBCencrypt, desCBCdecrypt,/" "" "des(2)" 343
.xx "" "/inflatezlibblock, flateerr, mkcrctab," "blockcrc, adler32 \- deflate compression" "" "flate(2)" 382
.xx "" "sum, md5sum, sha1sum \- sum and count" "blocks in a file" "" "sum(1)" 225
.xx "" "bfCBCdecrypt, bfECBencrypt, bfECBdecrypt -" "blowfish encryption" "/bfCBCencrypt," "blowfish(2)" 312
.xx "" "/dumparenas, restore \- backup venti arenas to" "blu-ray discs or restore from them" "" "backup(8)" 835
.xx "toico \- view and convert/" "jpg, gif, png, ppm," "bmp, v210, yuv, ico, togif, toppm, topng," "" "jpg(1)" 111
.xx "" "/Bgetd, Bungetc, Bungetrune, Bread, Bseek," "Boffset, Bfildes, Blinelen, Bputc, Bputrune,/" "" "bio(2)" 309
.xx "" "tel, iwhois \- look in phone" "book" "" "tel(1)" 236
.xx "" "" "boot \- connect to the root file server" "" "boot(8)" 837
.xx "" "cpurc, cpurc.local, termrc, termrc.local \-" "boot scripts" "" "cpurc(8)" 843
.xx "bootwinnt, personalize, setup.9fat,/" "" "bootfloppy, bootplan9, bootwin9x," "" "update(8)" 955
.xx "" "dhcpd, dhcpleases, rarpd, tftpd \- Internet" "booting" "" "dhcpd(8)" 845
.xx "" "init \- initialize machine upon" "booting" "" "init(8)" 873
.xx "" "" "booting \- bootstrapping procedures" "" "booting(8)" 840
.xx "personalize, setup.9fat,/" "bootfloppy," "bootplan9, bootwin9x, bootwinnt," "" "update(8)" 955
.xx "" "9load, 9pxeload, 9loadusb, 9loadask, ld \- PC" "bootstrap program" "" "9load(8)" 823
.xx "" "booting \-" "bootstrapping procedures" "" "booting(8)" 840
.xx "" "bootfloppy, bootplan9, bootwin9x," "bootwinnt, personalize, setup.9fat,/" "" "update(8)" 955
.xx "Bgetrune, Bgetd, Bungetc, Bungetrune,/" "" "Bopen, Binit, Binits, Brdline, Brdstr, Bgetc," "" "bio(2)" 309
.xx "" "/ellipse, fillellipse, arc, fillarc, icossin, icossin2," "border, string, stringn, runestring,/" "" "draw(2)" 350
.xx "" "/publicscreen, freescreen, allocwindow," "bottomwindow, bottomnwindows, topwindow,/" "" "window(2)" 576
.xx "" "Pathways SecureNet Key remote authentication" "box" "securenet \- Digital" "securenet(8)" 940
.xx "" "Boffset, Bfildes, Blinelen, Bputc, Bputrune," "Bprint, Bvprint, Bwrite, Bflush, Bterm,/" "/Bseek," "bio(2)" 309
.xx "" "/Bread, Bseek, Boffset, Bfildes, Blinelen," "Bputc, Bputrune, Bprint, Bvprint, Bwrite,/" "" "bio(2)" 309
.xx "Bungetc, Bungetrune,/" "Bopen, Binit, Binits," "Brdline, Brdstr, Bgetc, Bgetrune, Bgetd," "" "bio(2)" 309
.xx "" "/Bgetc, Bgetrune, Bgetd, Bungetc, Bungetrune," "Bread, Bseek, Boffset, Bfildes, Blinelen, Bputc,/" "" "bio(2)" 309
.xx "" "getfields, gettokens, tokenize \-" "break a string into fields" "" "getfields(2)" 407
.xx "" "getnetconninfo, freenetconninfo \- make and" "break network connections" "/setnetmtpt," "dial(2)" 345
.xx "" "" "bridge \- IPv4 Ethernet bridge" "" "bridge(3)" 587
.xx "" "bandt2 \- Viaduct" "bridge-and-tunnel client and server" "" "bandt2(8)" 836
.xx "" "findviaduct \- look up data about Viaduct" "bridging-and-tunnelling clients" "" "findviaduct(8)" 850
.xx "" "" "brk, sbrk \- change memory allocation" "" "brk(2)" 313
.xx "" "kill, slay," "broke \- print commands to kill processes" "" "kill(1)" 114
.xx "" "abaco, readweb \-" "browse the World-Wide Web" "" "abaco(1)" 10
.xx "" "dict \- dictionary" "browser" "" "dict(7)" 808
.xx "" "/Bgetrune, Bgetd, Bungetc, Bungetrune, Bread," "Bseek, Boffset, Bfildes, Blinelen, Bputc,/" "" "bio(2)" 309
.xx "" "/Bputc, Bputrune, Bprint, Bvprint, Bwrite, Bflush," "Bterm, Bbuffered \- buffered input/output" "" "bio(2)" 309
.xx "" "\- copy asynchronously via a large circular" "buffer" "pump" "pump(1)" 178
.xx "Computing (VN)" "vncs, vncv \- remote frame" "buffer server and viewer for Virtual Network" "" "vnc(1)" 258
.xx "" "Bvprint, Bwrite, Bflush, Bterm, Bbuffered \-" "buffered input/output" "/Bputrune, Bprint," "bio(2)" 309
.xx "" "fseek, rewind, feof, ferror, clearerr \- standard" "buffered input/output package" "/fsetpos," "fopen(2)" 388
.xx "" "packettrailer, packettrim \- zero-copy network" "buffers" "/packetsize, packetsplit, packetstats," "venti-packet(2)" 571
.xx "" "/getwindow, gengetwindow, flushimage," "bufimage, lockdisplay, unlockdisplay,/" "" "graphics(2)" 411
.xx "" "/lockdisplay, unlockdisplay, openfont," "buildfont, freefont, Pfmt, Rfmt, strtochan,/" "" "graphics(2)" 411
.xx "fmtarenas, fmtbloom, fmtindex, fmtisect,/" "" "buildindex, checkarenas, checkindex, conf," "" "venti-fmt(8)" 961
.xx "" "" "bundle \- collect files for distribution" "" "bundle(1)" 36
.xx "" "/Brdstr, Bgetc, Bgetrune, Bgetd, Bungetc," "Bungetrune, Bread, Bseek, Boffset, Bfildes,/" "" "bio(2)" 309
.xx "compress and expand/" "gzip, gunzip, bzip2," "bunzip2, compress, uncompress, zip, unzip \-" "" "gzip(1)" 103
.xx "" "pci \- print PCI" "bus configuration" "" "pci(8)" 903
.xx "" "usbd \- Universal Serial" "Bus daemon" "" "usbd(4)" 725
.xx "" "serial, usbeject, usbfat: \- Universal Serial" "Bus device drivers" "/ether, kb, print, probe," "usb(4)" 722
.xx "" "/Blinelen, Bputc, Bputrune, Bprint, Bvprint," "Bwrite, Bflush, Bterm, Bbuffered \- buffered/" "" "bio(2)" 309
.xx "" "enc32, dec16, enc16, encodefmt \- encoding" "byte arrays as strings" "dec64, enc64, dec32," "encode(2)" 363
.xx "" "/Memdrawparam, memimageinit, wordaddr," "byteaddr, memimagemove, allocmemimage,/" "" "memdraw(2)" 452
.xx "" "/unloadimage, readimage, writeimage," "bytesperline, wordsperline \- allocating,/" "" "allocimage(2)" 289
.xx "unzip \- compress and expand/" "gzip, gunzip," "bzip2, bunzip2, compress, uncompress, zip," "" "gzip(1)" 103
.xx "" "ansitize \- translate Plan 9 C to ANSI" "C" "" "ansitize(1)" 20
.xx "" "style \- Plan 9 coding conventions for" "C" "" "style(6)" 794
.xx "" "consolefs," "C, clog \- file system for console access" "" "consolefs(4)" 661
.xx "" "pcc \- APE" "C compiler driver" "" "pcc(1)" 162
.xx "" "0c, 1c, 2c, 5c, 6c, 7c, 8c, kc, qc, vc \-" "C compilers" "" "2c(1)" 5
.xx "file systems" "dossrv, 9660srv, a:, b:," "c:, d:, 9fat:, dosmnt, eject \- DOS and ISO9660" "" "dossrv(4)" 667
.xx "" "cpp \-" "C language preprocessor" "" "cpp(1)" 51
.xx "" "cb \-" "C program beautifier" "" "cb(1)" 40
.xx "" "ansitize \- translate Plan 9" "C to ANSI C" "" "ansitize(1)" 20
.xx "" "vtglobaltolocal, vtlocaltoglobal \- Venti block" "cache" "/vtcachelocal, vtcachesetwrite," "venti-cache(2)" 559
.xx "" "cfs \-" "cache file system" "" "cfs(4)" 658
.xx "Fontchar, Font \- font utilities" "" "cachechars, agefont, loadchar, Subfont," "" "cachechars(2)" 314
.xx "" "cwfs \-" "cached-worm file server, dump" "" "cwfs(4)" 665
.xx "" "segflush \- flush instruction and data" "caches" "" "segflush(2)" 527
.xx "" "" "cal \- print calendar" "" "cal(1)" 37
.xx "" "dc \- desk" "calculator" "" "dc(1)" 62
.xx "" "" "calendar \- print upcoming events" "" "calendar(1)" 38
.xx "" "malloc, mallocalign, mallocz, free, realloc," "calloc, msize, setmalloctag, setrealloctag,/" "" "malloc(2)" 448
.xx "" "ratrace \- trace process system" "calls" "" "ratrace(1)" 180
.xx "" "tcp17009, tcp17010, tcp17013 \- listen for" "calls on a network device" "/tcp17008," "listen(8)" 882
.xx "" "trampoline \- forward incoming" "calls to another address" "" "trampoline(8)" 953
.xx "to data/" "Intmap, allocmap, freemap, insertkey," "caninsertkey, lookupkey, deletekey \- integer" "" "intmap(2)" 433
.xx "rlock, canrlock, runlock, wlock,/" "lock," "canlock, unlock, qlock, canqlock, qunlock," "" "lock(2)" 442
.xx "" "/mulpt, divpt, rectaddpt, rectsubpt, insetrect," "canonrect, eqpt, eqrect, ptinrect, rectinrect,/" "" "addpt(2)" 286
.xx "wlock,/" "lock, canlock, unlock, qlock," "canqlock, qunlock, rlock, canrlock, runlock," "" "lock(2)" 442
.xx "" "/qunlock, rlock, canrlock, runlock, wlock," "canwlock, wunlock, rsleep, rwakeup,/" "" "lock(2)" 442
.xx "processes" "" "cap \- capabilities for setting the user id of" "" "cap(3)" 589
.xx "" "pcmcia \- identify a PCMCIA" "card" "" "pcmcia(8)" 904
.xx "" "vga \- configure a VGA" "card" "" "vga(8)" 964
.xx "" "i82365 \- Personal Computer Memory" "Card Interface Association (PCMCI) device" "" "i82365(3)" 605
.xx "" "toupperrune \- Unicode character classes and" "cases" "/isdigitrune, tolowerrune, totitlerune," "isalpharune(2)" 440
.xx "operations" "ainc, adec, cas, casv," "casp, loadlink, storecond, _tas \- atomic RMW" "" "atom(2)" 298
.xx "" "" "cat, read \- catenate files" "" "cat(1)" 39
.xx "" "scat \- sky" "catalogue and Digitized Sky Survey" "" "scat(7)" 818
.xx "" "" "cb \- C program beautifier" "" "cb(1)" 40
.xx "usbeject, usbfat: \- Universal Serial Bus/" "audio," "ccid, disk, ether, kb, print, probe, serial," "" "usb(4)" 722
.xx "system" "cdfs, cddb \- optical disc" "CD, DVD, B) track reader and writer file" "" "cdfs(4)" 656
.xx "whatis, ., ~ \- command language" "rc," "cd, eval, exec, exit, flag, rfork, shift, wait," "" "rc(1)" 181
.xx "" "dump9660, mk9660 \- create an ISO-9660" "CD image" "" "mk9660(8)" 885
.xx "reader and writer file system" "" "cdfs, cddb \- optical disc (CD, DVD, B) track" "" "cdfs(4)" 656
.xx "" "" "cec \- Coraid Ethernet Console" "" "cec(8)" 842
.xx "functions" "fabs, fmod, floor," "ceil \- absolute value, remainder, floor, ceiling" "" "floor(2)" 384
.xx "" "" "cfs \- cache file system" "" "cfs(4)" 658
.xx "" "alt, chanclose, chancreate, chanfree, chaninit," "chanclosing, chanprint, mainstacksize,/" "" "thread(2)" 545
.xx "" "stat, wstat \- inquire or" "change file attributes" "" "stat(5)" 747
.xx "" "chgrp \-" "change file group" "" "chgrp(1)" 41
.xx "" "seek \-" "change file offset" "" "seek(2)" 523
.xx "" "brk, sbrk \-" "change memory allocation" "" "brk(2)" 313
.xx "" "segbrk \-" "change memory allocation" "" "segbrk(2)" 526
.xx "" "chmod \-" "change mode" "" "chmod(1)" 42
.xx "" "bind, mount, unmount \-" "change name space" "" "bind(1)" 33
.xx "" "bind, mount, unmount \-" "change name space" "" "bind(2)" 307
.xx "" "passwd, netkey \-" "change or verify user password" "" "passwd(1)" 159
.xx "" "chdir \-" "change working directory" "" "chdir(2)" 317
.xx "replica management" "" "changes, pull, push, scan \- client-server" "" "replica(1)" 187
.xx "printnetkey, status, enable, disable, authsrv,/" "" "changeuser, convkeys, convkeys2," "" "auth(8)" 833
.xx "" "alt, chanclose, chancreate, chanfree," "chaninit, chanclosing, chanprint,/" "" "thread(2)" 545
.xx "" "pipe \- create an interprocess" "channel" "" "pipe(2)" 479
.xx "" "SSL version 2 encryption to a communication" "channel" "pushssl \- attach" "pushssl(2)" 493
.xx "" "TLS1 or SSL3 encryption to a communication" "channel" "/readcert, readcertchain \- attach" "pushtls(2)" 494
.xx "" "/chancreate, chanfree, chaninit, chanclosing," "chanprint, mainstacksize, proccreate,/" "" "thread(2)" 545
.xx "" "/buildfont, freefont, Pfmt, Rfmt, strtochan," "chantostr, chantodepth \- interactive graphics" "" "graphics(2)" 411
.xx "" "totitlerune, toupperrune \- Unicode" "character classes and cases" "/tolowerrune," "isalpharune(2)" 440
.xx "" "_toupper, _tolower, toupper, tolower \- ASCII" "character classification" "/isascii, toascii," "ctype(2)" 339
.xx "" "freq \- print histogram of" "character frequencies" "" "freq(1)" 91
.xx "" "scribblealloc, recognize \-" "character recognition" "" "scribble(2)" 517
.xx "" "UTF, Unicode, ASCII, rune \-" "character set and format" "" "utf(6)" 797
.xx "" "tcs \- translate" "character sets" "" "tcs(1)" 233
.xx "" "doquote, needsrcquote \- quoted" "character strings" "/quotefmtinstall," "quote(2)" 501
.xx "" "ascii, unicode \- interpret ASCII, Unicode" "characters" "" "ascii(1)" 25
.xx "" "keyboard \- how to type" "characters" "" "keyboard(6)" 768
.xx "" "tr \- translate" "characters" "" "tr(1)" 242
.xx "\- convert text to/" "atof, atoi, atol, atoll," "charstod, strtod, strtol, strtoll, strtoul, strtoull" "" "atof(2)" 297
.xx "utfecpy, utflen, utfnlen, utfrune,/" "runetochar," "chartorune, runelen, runenlen, fullrune," "" "rune(2)" 514
.xx "" "" "chdir \- change working directory" "" "chdir(2)" 317
.xx "" "assert \-" "check program invariants" "" "assert(2)" 296
.xx "fmtindex, fmtisect,/" "buildindex, checkarenas," "checkindex, conf, fmtarenas, fmtbloom," "" "venti-fmt(8)" 961
.xx "" "vtmallocz, vtrealloc, vtstrdup, vtfree \-" "checking memory allocators" "vtbrk, vtmalloc," "venti-mem(2)" 570
.xx "" "" "chgrp \- change file group" "" "chgrp(1)" 41
.xx "" "times, cycles \- cpu time in this process and" "children" "cputime," "cputime(2)" 336
.xx "" "" "chmod \- change mode" "" "chmod(1)" 42
.xx "client" "" "cifs - Microsoft™ Windows network filesystem" "" "cifs(4)" 659
.xx "" "aquarela \-" "CIFS server" "" "aquarela(8)" 831
.xx "" "serial interface (TWS) and inter-integrated" "circuit (I⁲C) interface" "twsi - two-wire" "twsi(3)" 643
.xx "" "pump \- copy asynchronously via a large" "circular buffer" "" "pump(1)" 178
.xx "localaddr, symoff, fpformat, beieee80ftos,/" "" "cisctrace, risctrace, ciscframe, riscframe," "" "debugger(2)" 340
.xx "strlen,/" "strcat, strncat, strcmp, strncmp," "cistrcmp, cistrncmp, strcpy, strncpy, strecpy," "" "strcat(2)" 535
.xx "" "strcat, strncat, strcmp, strncmp, cistrcmp," "cistrncmp, strcpy, strncpy, strecpy, strlen,/" "" "strcat(2)" 535
.xx "" "strpbrk, strspn, strcspn, strtok, strdup, strstr," "cistrstr \- string operations" "/strchr, strrchr," "strcat(2)" 535
.xx "" "/opendevdata, openep, startdevs, unstall," "class, subclass, proto, CSP \- USB device driver/" "" "usb(2)" 551
.xx "" "totitlerune, toupperrune \- Unicode character" "classes and cases" "/isdigitrune, tolowerrune," "isalpharune(2)" 440
.xx "" "_tolower, toupper, tolower \- ASCII character" "classification" "/isascii, toascii, _toupper," "ctype(2)" 339
.xx "finddevs, loaddevstr, matchdevcsp,/" "usbcmd," "classname, closedev, configdev, devctl," "" "usb(2)" 551
.xx "" "" "cleanname \- clean a path name" "" "cleanname(1)" 43
.xx "" "" "cleanname \- clean a path name" "" "cleanname(2)" 318
.xx "" "terminate \- terminate process, process" "cleanup" "exits, _exits, atexit, atexitdont," "exits(2)" 373
.xx "" "/ftell, fsetpos, fseek, rewind, feof, ferror," "clearerr \- standard buffered input/output/" "" "fopen(2)" 388
.xx "" "cifs - Microsoft™ Windows network filesystem" "client" "" "cifs(4)" 659
.xx "" "nfs \- Sun network file system" "client" "" "nfs(4)" 700
.xx "" "tlssrvtunnel, tlsclienttunnel \- TLS server and" "client" "tlssrv, tlsclient," "tlssrv(8)" 952
.xx "" "vtping, vtrpc, ventidoublechecksha1 \- Venti" "client" "/vtreadpacket, vtwritepacket, vtsync," "venti-client(2)" 561
.xx "" "bandt2 \- Viaduct bridge-and-tunnel" "client and server" "" "bandt2(8)" 836
.xx "" "up data about Viaduct bridging-and-tunnelling" "clients" "findviaduct \- look" "findviaduct(8)" 850
.xx "" "read, write, copy \- simple Venti" "clients" "" "venti(1)" 255
.xx "" "changes, pull, push, scan \-" "client-server replica management" "" "replica(1)" 187
.xx "" "/applylog, compactdb, updatedb \- simple" "client-server replica management" "" "replica(8)" 927
.xx "" "/namedimage, setalpha, loadimage," "cloadimage, unloadimage, readimage,/" "" "allocimage(2)" 289
.xx "" "/freememimage, memsetchan, loadmemimage," "cloadmemimage, unloadmemimage,/" "" "memdraw(2)" 452
.xx "" "date," "clock \- date and time" "" "date(1)" 55
.xx "" "rtc \- real-time" "clock and non-volatile RAM" "" "rtc(3)" 630
.xx "" "cron \-" "clock daemon" "" "cron(8)" 844
.xx "" "timesync \- synchronize the system" "clock to a time source" "" "timesync(8)" 951
.xx "reboot, etc." "cons \- console," "clocks, process/process group ids, user, null," "" "cons(3)" 590
.xx "" "consolefs, C," "clog \- file system for console access" "" "consolefs(4)" 661
.xx "create file" "open, create," "close \- open a file for reading or writing," "" "open(2)" 477
.xx "" "Control, Controlset, activate, closecontrol," "closecontrolset, controlcalled, controlwire,/" "" "control(2)" 321
.xx "loaddevstr,/" "usbcmd, classname," "closedev, configdev, devctl, finddevs," "" "usb(2)" 551
.xx "" "/removefile, walkfile, opendirfile, readdirfile," "closedirfile, hasperm \- in-memory file/" "" "9pfile(2)" 281
.xx "" "initdraw, geninitdraw, drawerror, initdisplay," "closedisplay, getdefont, getwindow,/" "/Cursor," "graphics(2)" 411
.xx "" "Fid, Fidpool, allocfidpool, freefidpool, allocfid," "closefid, lookupfid, removefid, Req, Reqpool,/" "" "9pfid(2)" 279
.xx "" "Tree, alloctree, freetree, File, createfile," "closefile, removefile, walkfile, opendirfile,/" "" "9pfile(2)" 281
.xx "ioopen, ioproc, ioread, ioreadn, iowrite \-/" "" "closeioproc, iocall, ioclose, iointerrupt, iodial," "" "ioproc(2)" 434
.xx "" "initkeyboard, ctlkeyboard," "closekeyboard \- keyboard control" "" "keyboard(2)" 441
.xx "menuhit, setcursor \-/" "initmouse, readmouse," "closemouse, moveto, getrect, drawgetrect," "" "mouse(2)" 461
.xx "" "add3, sub3, neg3, div3, mul3, eqpt3," "closept3, dot3, cross3, len3, dist3, unit3,/" "" "arith3(2)" 294
.xx "" "/Reqpool, allocreqpool, freereqpool, allocreq," "closereq, lookupreq, removereq \- 9P fid,/" "" "9pfid(2)" 279
.xx "SCSI device operations" "openscsi," "closescsi, scsiready, scsi, scsicmd, scsierror \-" "" "scsi(2)" 519
.xx "" "" "clunk \- forget about a fid" "" "clunk(5)" 740
.xx "maps" "cmap2rgb," "cmap2rgba, rgb2cmap \- colors and color" "" "color(2)" 319
.xx "lookupcmd \- control message parsing" "" "Cmdbuf, parsecmd, respondcmderror," "" "9pcmdbuf(2)" 278
.xx "" "" "cmp \- compare two files" "" "cmp(1)" 44
.xx "" "src \- find source" "code for executable" "" "src(1)" 218
.xx "" "style \- Plan 9" "coding conventions for C" "" "style(6)" 794
.xx "" "" "col \- column alignment" "" "col(1)" 45
.xx "" "bundle \-" "collect files for distribution" "" "bundle(1)" 36
.xx "" "" "color \- representation of pixels and colors" "" "color(6)" 759
.xx "" "getmap, colors \- display" "color map" "" "colors(1)" 46
.xx "" "RGB, readcolmap, writecolmap \- access display" "color map" "" "readcolmap(2)" 506
.xx "" "cmap2rgb, cmap2rgba, rgb2cmap \- colors and" "color maps" "" "color(2)" 319
.xx "" "color \- representation of pixels and" "colors" "" "color(6)" 759
.xx "" "getmap," "colors \- display color map" "" "colors(1)" 46
.xx "" "cmap2rgb, cmap2rgba, rgb2cmap \-" "colors and color maps" "" "color(2)" 319
.xx "" "col \-" "column alignment" "" "col(1)" 45
.xx "" "eqrect, ptinrect, rectinrect, rectXrect, rectclip," "combinerect, Dx, Dy, Pt, Rect, Rpt \-/" "/eqpt," "addpt(2)" 286
.xx "sorted files" "" "comm \- select or reject lines common to two" "" "comm(1)" 47
.xx "" "mailcmd \- mail the output of a failed" "command" "" "mailcmd(1)" 127
.xx "" "time \- time a" "command" "" "time(1)" 240
.xx "" "exec, exit, flag, rfork, shift, wait, whatis, ., ~ \-" "command language" "rc, cd, eval," "rc(1)" 181
.xx "" "doctype \- intuit" "command line for formatting a document" "" "doctype(1)" 70
.xx "" "lock \- run a" "command under lock" "" "lock(1)" 120
.xx "" "getflags, usage \-" "command-line parsing for shell scripts" "" "getflags(8)" 867
.xx "" "fossilcons \- fossil console" "commands" "" "fossilcons(8)" 851
.xx "" "aescbc, ipso, secstore \- secstore" "commands" "" "secstore(1)" 203
.xx "" "secstored, secuser \- secstore" "commands" "" "secstore(8)" 939
.xx "" "soelim \- preprocess so inclusion" "commands in troff input" "" "soelim(1)" 211
.xx "" "kill, slay, broke \- print" "commands to kill processes" "" "kill(1)" 114
.xx "" "stop, start \- print" "commands to stop and start processes" "" "stop(1)" 222
.xx "" "comm \- select or reject lines" "common to two sorted files" "" "comm(1)" 47
.xx "" "/_asgetticket, _asrdresp \- routines for" "communicating with authentication servers" "" "authsrv(2)" 302
.xx "" "pipe \- two-way interprocess" "communication" "" "pipe(3)" 622
.xx "" "pushssl \- attach SSL version 2 encryption to a" "communication channel" "" "pushssl(2)" 493
.xx "" "\- attach TLS1 or SSL3 encryption to a" "communication channel" "/readcertchain" "pushtls(2)" 494
.xx "" "uart, eia \- serial" "communication control" "" "uart(3)" 644
.xx "replica management" "applychanges, applylog," "compactdb, updatedb \- simple client-server" "" "replica(8)" 927
.xx "" "diff \- differential file" "comparator" "" "diff(1)" 68
.xx "" "cmp \-" "compare two files" "" "cmp(1)" 44
.xx "" "pcc \- APE C" "compiler driver" "" "pcc(1)" 162
.xx "" "yacc \- yet another" "compiler-compiler" "" "yacc(1)" 266
.xx "" "0c, 1c, 2c, 5c, 6c, 7c, 8c, kc, qc, vc \- C" "compilers" "" "2c(1)" 5
.xx "" "" "complete \- file name completion" "" "complete(2)" 320
.xx "compress and/" "gzip, gunzip, bzip2, bunzip2," "compress, uncompress, zip, unzip \-" "" "gzip(1)" 103
.xx "" "mksacfs \- make a" "compressed file system" "" "mksacfs(8)" 890
.xx "" "sacfs \-" "compressed file system" "" "sacfs(4)" 711
.xx "" "mkpaqfs \- make a" "compressed read-only file system" "" "mkpaqfs(8)" 889
.xx "" "paqfs \-" "compressed read-only file system" "" "paqfs(4)" 703
.xx "" "flateerr, mkcrctab, blockcrc, adler32 \- deflate" "compression" "/inflateblock, inflatezlibblock," "flate(2)" 382
.xx "(PCMCI) device" "i82365 \- Personal" "Computer Memory Card Interface Association" "" "i82365(3)" 605
.xx "" "buffer server and viewer for Virtual Network" "Computing (VN)" "vncs, vncv \- remote frame" "vnc(1)" 258
.xx "login, execution, and XMODEM file transfer" "" "con, telnet, rx, hayes, xms, xmr \- remote" "" "con(1)" 48
.xx "" "spin - verification tool for models of" "concurrent systems" "" "spin(1)" 215
.xx "" "buildindex, checkarenas, checkindex," "conf, fmtarenas, fmtbloom, fmtindex,/" "" "venti-fmt(8)" 961
.xx "matchdevcsp,/" "usbcmd, classname, closedev," "configdev, devctl, finddevs, loaddevstr," "" "usb(2)" 551
.xx "" "pci \- print PCI bus" "configuration" "" "pci(8)" 903
.xx "" "smtpd \- SMTP listener" "configuration" "" "smtpd(6)" 791
.xx "" "ipconfig, rip, linklocal, ipv6on \- Internet" "configuration and routing" "" "ipconfig(8)" 874
.xx "" "venti.conf \- a venti" "configuration file" "" "venti.conf(6)" 801
.xx "" "plan9.ini \-" "configuration file for PCs" "" "plan9.ini(8)" 908
.xx "" "aux/mouse, aux/accupoint \-" "configure a mouse to a port" "" "mouse(8)" 891
.xx "" "vga \-" "configure a VGA card" "" "vga(8)" 964
.xx "tunnel of IPv6 through IPv4" "6in4 -" "configure and run automatic or manual 6to4" "" "6in4(8)" 822
.xx "" "fsconfig \-" "configuring a file server" "" "fsconfig(8)" 862
.xx "operating systems" "drawterm \-" "connect to Plan 9 CPU servers from other" "" "drawterm(8)" 849
.xx "" "boot \-" "connect to the root file server" "" "boot(8)" 837
.xx "" "attach, auth \- messages to establish a" "connection" "" "attach(5)" 739
.xx "" "the system upon loss of remote file server" "connection" "reboot \- reboot" "reboot(8)" 926
.xx "" "fversion \- initialize 9P" "connection and negotiate version" "" "fversion(2)" 403
.xx "" "cpu \-" "connection to CPU server" "" "cpu(1)" 52
.xx "" "freenetconninfo \- make and break network" "connections" "/setnetmtpt, getnetconninfo," "dial(2)" 345
.xx "" "netstat \- summarize network" "connections" "" "netstat(1)" 152
.xx "" "vtversion, vtdebug, vthangup \- Venti network" "connections" "/vtfreeconn, vtsend, vtrecv," "venti-conn(2)" 563
.xx "group ids, user, null, reboot, etc." "" "cons \- console, clocks, process/process" "" "cons(3)" 590
.xx "" "cec \- Coraid Ethernet" "Console" "" "cec(8)" 842
.xx "" "consolefs, C, clog \- file system for" "console access" "" "consolefs(4)" 661
.xx "user, null, reboot, etc." "cons \-" "console, clocks, process/process group ids," "" "cons(3)" 590
.xx "" "fossilcons \- fossil" "console commands" "" "fossilcons(8)" 851
.xx "access" "" "consolefs, C, clog \- file system for console" "" "consolefs(4)" 661
.xx "" "rwd," "conswdir \- maintain remote working directory" "" "rwd(1)" 196
.xx "" "arch \- architecture-specific information and" "control" "" "arch(3)" 584
.xx "" "ctlkeyboard, closekeyboard \- keyboard" "control" "initkeyboard," "keyboard(2)" 441
.xx "" "drawgetrect, menuhit, setcursor \- mouse" "control" "/closemouse, moveto, getrect," "mouse(2)" 461
.xx "" "scuzz \- SCSI target" "control" "" "scuzz(8)" 936
.xx "" "uart, eia \- serial communication" "control" "" "uart(3)" 644
.xx "closecontrolset, controlcalled, controlwire,/" "" "Control, Controlset, activate, closecontrol," "" "control(2)" 321
.xx "" "acme \-" "control files for text windows" "" "acme(4)" 652
.xx "" "getfcr, setfcr, getfsr, setfsr \-" "control floating point" "" "getfcr(2)" 406
.xx "" "parsecmd, respondcmderror, lookupcmd \-" "control message parsing" "Cmdbuf," "9pcmdbuf(2)" 278
.xx "" "/activate, closecontrol, closecontrolset," "controlcalled, controlwire, createbox,/" "" "control(2)" 321
.xx "" "audio \- SoundBlaster or ESS1688 audio" "controller" "" "audio(3)" 586
.xx "" "qball \- 3-d rotation" "controller" "" "qball(2)" 497
.xx "" "vgadb \- VGA" "controller and monitor database" "" "vgadb(6)" 802
.xx "" "vga \- VGA" "controller device" "" "vga(3)" 649
.xx "" "usb \- USB Host" "Controller Interface" "" "usb(3)" 645
.xx "device drivers" "sdahci \- AHCI (Advanced Host" "Controller Interface) SATA (Serial AT) storage" "" "sdahci(3)" 633
.xx "closecontrolset, controlcalled,/" "Control," "Controlset, activate, closecontrol," "" "control(2)" 321
.xx "" "/closecontrol, closecontrolset, controlcalled," "controlwire, createbox, createboxbox,/" "" "control(2)" 321
.xx "" "/convT2M, convM2T, convTR2M, convM2TR," "convA2M, convM2A, convPR2M, convM2PR,/" "" "authsrv(2)" 302
.xx "dirfmt, dirmodefmt,/" "Fcall, convS2M," "convD2M, convM2S, convM2D, fcallfmt," "" "fcall(2)" 376
.xx "" "style \- Plan 9 coding" "conventions for C" "" "style(6)" 794
.xx "" "utfnlen, utfrune, utfrrune, utfutf \- rune/UTF" "conversion" "/fullrune, utfecpy, utflen," "rune(2)" 514
.xx "" "units \-" "conversion program" "" "units(1)" 250
.xx "" "mug -" "convert an image to a face icon" "" "mug(1)" 148
.xx "" "dd \-" "convert and copy a file" "" "dd(1)" 64
.xx "" "ps2pdf, pdf2ps \-" "convert between PostScript and PDF" "" "ps2pdf(1)" 177
.xx "" "ms2html, html2ms \-" "convert between troff's ms macros and html" "" "ms2html(1)" 141
.xx "" "gmtime, asctime, tm2sec, timezone \-" "convert date and time" "ctime, localtime," "ctime(2)" 337
.xx "" "crop, iconv \- frame, crop, and" "convert image" "" "crop(1)" 54
.xx "" "yuv, ico, togif, toppm, topng, toico \- view and" "convert pictures" "/gif, png, ppm, bmp, v210," "jpg(1)" 111
.xx "" "strtod, strtol, strtoll, strtoul, strtoull \-" "convert text to numbers" "/atoll, charstod," "atof(2)" 297
.xx "" "troff2html \-" "convert troff output into HTML" "" "troff2html(1)" 246
.xx "disable, authsrv,/" "changeuser, convkeys," "convkeys2, printnetkey, status, enable," "" "auth(8)" 833
.xx "" "/convM2TR, convA2M, convM2A, convPR2M," "convM2PR, _asgetticket, _asrdresp \- routines/" "" "authsrv(2)" 302
.xx "" "/readnvram, convT2M, convM2T, convTR2M," "convM2TR, convA2M, convM2A, convPR2M,/" "" "authsrv(2)" 302
.xx "fcallfmt, dirfmt, dirmodefmt,/" "Fcall," "convS2M, convD2M, convM2S, convM2D," "" "fcall(2)" 376
.xx "" "webcookies \- HTTP" "cookie manager" "" "webcookies(4)" 728
.xx "" "read, write," "copy \- simple Venti clients" "" "venti(1)" 255
.xx "" "dd \- convert and" "copy a file" "" "dd(1)" 64
.xx "" "rdarena, wrarena \-" "copy arenas between venti servers" "" "venti-backup(8)" 960
.xx "buffer" "pump \-" "copy asynchronously via a large circular" "" "pump(1)" 178
.xx "" "sshnet, scp, sshserve \- secure login and file" "copy from/to Unix or Plan 9" "ssh," "ssh(1)" 219
.xx "" "ecp \- fast" "copy, handling errors" "" "ecp(1)" 73
.xx "" "cp, fcp, mv \-" "copy, move files" "" "cp(1)" 50
.xx "" "packetstats, packettrailer, packettrim \-" "copy network buffers" "/packetsplit," "venti-packet(2)" 571
.xx "" "cec \-" "Coraid Ethernet Console" "" "cec(8)" 842
.xx "" "hget \- retrieve a web page" "corresponding to a url" "" "hget(1)" 105
.xx "trigonometric functions" "sin," "cos, tan, asin, acos, atan, atan2 \-" "" "sin(2)" 530
.xx "" "sinh," "cosh, tanh \- hyperbolic functions" "" "sinh(2)" 531
.xx "" "wc \- word" "count" "" "wc(1)" 261
.xx "" "sum, md5sum, sha1sum \- sum and" "count blocks in a file" "" "sum(1)" 225
.xx "" "ipok \- verify that an IP address belongs to a" "country approved of by the US government" "" "ipok(8)" 877
.xx "" "locks, rendezvous points, and reference" "counts" "/rendezvous locks, reader-writer" "lock(2)" 442
.xx "" "" "cp, fcp, mv \- copy, move files" "" "cp(1)" 50
.xx "mount archival file systems" "32vfs," "cpiofs, tapfs, tarfs, tpfs, v6fs, v10fs, zipfs \-" "" "tapefs(4)" 715
.xx "" "" "cpp \- C language preprocessor" "" "cpp(1)" 51
.xx "" "" "cpu \- connection to CPU server" "" "cpu(1)" 52
.xx "" "drawterm \- connect to Plan 9" "CPU servers from other operating systems" "" "drawterm(8)" 849
.xx "" "cpurc," "cpurc.local, termrc, termrc.local \- boot scripts" "" "cpurc(8)" 843
.xx "process and children" "" "cputime, times, cycles \- cpu time in this" "" "cputime(2)" 336
.xx "newmap, setmap, findseg, unusemap,/" "" "crackhdr, machbytype, machbyname," "" "mach(2)" 445
.xx "" "/allocmemimaged, readmemimage," "creadmemimage, writememimage,/" "" "memdraw(2)" 452
.xx "or new file" "open," "create \- prepare a fid for I/O on an existing" "" "open(5)" 743
.xx "" "pipe \-" "create an interprocess channel" "" "pipe(2)" 479
.xx "" "dump9660, mk9660 \-" "create an ISO-9660 CD image" "" "mk9660(8)" 885
.xx "" "snap, snapfs \-" "create and mount process snapshots" "" "snap(4)" 712
.xx "writing, create file" "open," "create, close \- open a file for reading or" "" "open(2)" 477
.xx "" "vac, unvac \-" "create, extract a vac archive on Venti" "" "vac(1)" 253
.xx "" "mp3enc \-" "create mp3 audio files" "" "mp3enc(1)" 139
.xx "" "/createboxbox, createbutton, createcolumn," "createentry, createkeyboard, createlabel,/" "" "control(2)" 321
.xx "opendirfile,/" "Tree, alloctree, freetree, File," "createfile, closefile, removefile, walkfile," "" "9pfile(2)" 281
.xx "" "/createentry, createkeyboard, createlabel," "createmenu, createradiobutton, createrow,/" "" "control(2)" 321
.xx "" "/createmenu, createradiobutton, createrow," "createscribble, createslider, createstack,/" "" "control(2)" 321
.xx "" "/createscribble, createslider, createstack," "createtab, createtext, createtextbutton,/" "" "control(2)" 321
.xx "" "hvprint, hwrite, hxferenc, \- routines for" "creating an http server" "/hurlfmt, hurlunesc," "httpd(2)" 427
.xx "" "patch \- simple patch" "creation and tracking system" "" "patch(1)" 160
.xx "" "" "cron \- clock daemon" "" "cron(8)" 844
.xx "" "" "crop, iconv \- frame, crop, and convert image" "" "crop(1)" 54
.xx "" "/sub3, neg3, div3, mul3, eqpt3, closept3, dot3," "cross3, len3, dist3, unit3, midpt3, lerp3,/" "" "arith3(2)" 294
.xx "" "/mpmagadd, mpmagsub, crtpre, crtin," "crtout, crtprefree, crtresfree \- extended/" "" "mp(2)" 463
.xx "" "md5unpickle, sha1pickle, sha1unpickle \-" "cryptographically secure hashes" "/md5pickle," "sechash(2)" 521
.xx "" "query, ipquery, mkhash, mkdb, mkhosts," "cs, csquery, dns, dnstcp, dnsquery,/" "" "ndb(8)" 893
.xx "" "/ndbipinfo, csipinfo, ndbhash, ndbparse," "csgetvalue, ndbfindattr, dnsquery,/" "" "ndb(2)" 469
.xx "" "startdevs, unstall, class, subclass, proto," "CSP \- USB device driver library" "/openep," "usb(2)" 551
.xx "" "query, ipquery, mkhash, mkdb, mkhosts, cs," "csquery, dns, dnstcp, dnsquery, dnsdebug,/" "" "ndb(8)" 893
.xx "timezone \- convert date and time" "" "ctime, localtime, gmtime, asctime, tm2sec," "" "ctime(2)" 337
.xx "control" "initkeyboard," "ctlkeyboard, closekeyboard \- keyboard" "" "keyboard(2)" 441
.xx "" "/createtext, createtextbutton, ctlerror," "ctlmalloc, ctlrealloc, ctlstrdup, ctlprint,/" "" "control(2)" 321
.xx "" "getwd \- get" "current directory" "" "getwd(2)" 410
.xx "" "getcallerpc \- fetch return PC of" "current function" "" "getcallerpc(2)" 404
.xx "" "mouse," "cursor \- kernel mouse interface" "" "mouse(3)" 620
.xx "initdisplay,/" "Display, Point, Rectangle," "Cursor, initdraw, geninitdraw, drawerror," "" "graphics(2)" 411
.xx "" "" "cvsfs \- cvs repository viewer" "" "cvsfs(4)" 663
.xx "" "" "cwfs \- cached-worm file server, dump" "" "cwfs(4)" 665
.xx "" "cputime, times," "cycles \- cpu time in this process and children" "" "cputime(2)" 336
.xx "" "cron \- clock" "daemon" "" "cron(8)" 844
.xx "" "usbd \- Universal Serial Bus" "daemon" "" "usbd(4)" 725
.xx "" "rlogind, rexexec, ftpd \- Internet remote access" "daemons" "telnetd," "ipserv(8)" 878
.xx "" "zip, unzip \- compress and expand" "data" "/bunzip2, compress, uncompress," "gzip(1)" 103
.xx "" "prof, tprof, kprof \- display profiling" "data" "" "prof(1)" 173
.xx "clients" "findviaduct \- look up" "data about Viaduct bridging-and-tunnelling" "" "findviaduct(8)" 850
.xx "" "segflush \- flush instruction and" "data caches" "" "segflush(2)" 527
.xx "" "vtrootunpack, vtparsescore, vtscorefmt \- venti" "data formats" "/vtputstring, vtrootpack," "venti-fcall(2)" 565
.xx "" "read, write \- transfer" "data from and to a file" "" "read(5)" 745
.xx "" "caninsertkey, lookupkey, deletekey \- integer to" "data structure maps" "/freemap, insertkey," "intmap(2)" 433
.xx "" "aoesrv - serve" "data via ATA-over-Ethernet (Ao)" "" "aoesrv(8)" 829
.xx "" "ndbgetval, csgetval, ndblookval \- network" "database" "/ndbreorder, ndbsubstitute," "ndb(2)" 469
.xx "" "ndb \- Network" "database" "" "ndb(6)" 780
.xx "" "dnstcp, dnsquery, dnsdebug, inform \- network" "database" "/mkdb, mkhosts, cs, csquery, dns," "ndb(8)" 893
.xx "" "pq, pqgen, pqsrv \- query POST" "database" "" "pq(1)" 170
.xx "" "vgadb \- VGA controller and monitor" "database" "" "vgadb(6)" 802
.xx "" "keyfs, warning \- authentication" "database files" "" "keyfs(4)" 692
.xx "" "join \- relational" "database operator" "" "join(1)" 110
.xx "" "none, as \- maintain or query authentication" "databases" "/debug, wrkey, login, newns," "auth(8)" 833
.xx "" "intro \- introduction to" "databases" "" "intro(7)" 805
.xx "" "sdp \- secure" "datagram protocol" "" "sdp(3)" 636
.xx "" "gmtime, asctime, tm2sec, timezone \- convert" "date and time" "ctime, localtime," "ctime(2)" 337
.xx "" "" "date, clock \- date and time" "" "date(1)" 55
.xx "" "touch \- set modification" "date of a file" "" "touch(1)" 241
.xx "" "" "db \- debugger" "" "db(1)" 56
.xx "" "" "dc \- desk calculator" "" "dc(1)" 62
.xx "" "" "dd \- convert and copy a file" "" "dd(1)" 64
.xx "" "/ctlmalloc, ctlrealloc, ctlstrdup, ctlprint," "deactivate, freectlfont, freectlimage,/" "" "control(2)" 321
.xx "" "/status, enable, disable, authsrv, guard.srv," "debug, wrkey, login, newns, none, as \-/" "" "auth(8)" 833
.xx "" "acid, truss, trump \-" "debugger" "" "acid(1)" 11
.xx "" "db \-" "debugger" "" "db(1)" 56
.xx "" "ieeesftos, ieeedftos \- machine-independent" "debugger functions" "/leieeesftos, leieeedftos," "debugger(2)" 340
.xx "" "rdbfs \- remote kernel" "debugging file system" "" "rdbfs(4)" 707
.xx "encoding byte arrays as/" "dec64, enc64," "dec32, enc32, dec16, enc16, encodefmt \-" "" "encode(2)" 363
.xx "" "xd \- hex, octal," "decimal, or ASCII dump" "" "xd(1)" 265
.xx "" "uuencode, uudecode \-" "decode a file as printable ASCII" "" "uuencode(1)" 252
.xx "" "mp3dec \-" "decode audio MPEG files (layers 1, 2 and 3)" "" "mp3dec(1)" 138
.xx "rsaprivalloc,/" "asn1dump, asn1toRSApriv," "decodePEM, rsadecrypt, rsaencrypt, rsagen," "" "rsa(2)" 512
.xx "" "/wunlock, rsleep, rwakeup, rwakeupall, incref," "decref \- spin locks, queueing rendezvous/" "" "lock(2)" 442
.xx "" "encrypt," "decrypt, netcrypt \- DES encryption" "" "encrypt(2)" 364
.xx "" "/runefmtstrflush, errfmt \- support for" "defined print formats and output routines" "" "fmtinstall(2)" 385
.xx "deflatezlibblock, inflateinit,/" "deflateinit," "deflate, deflatezlib, deflateblock," "" "flate(2)" 382
.xx "" "/myetheraddr, maskip, equivip4, equivip6," "defmask, isv4, v4tov6, v6tov4, nhgetv,/" "" "ip(2)" 437
.xx "" "deroff," "delatex \- remove formatting requests" "" "deroff(1)" 67
.xx "" "sleep, alarm \-" "delay, ask for delayed note" "" "sleep(2)" 532
.xx "" "delkey \-" "delete keys from factotum" "" "delkey(1)" 66
.xx "AVL tree/" "mkavltree, insertavl, lookupavl," "deleteavl, avlwalk, avlnext, avlprev, endwalk -" "" "avl(2)" 304
.xx "" "/freemap, insertkey, caninsertkey, lookupkey," "deletekey \- integer to data structure maps" "" "intmap(2)" 433
.xx "koninck, kijkuit, doom, kapellen \- Antwerp/" "" "delirium, duvel, leffe, affligem, arend," "" 
.xx "" "tail \-" "deliver the last part of a file" "" "tail(1)" 228
.xx "" "filter, list," "deliver, token, vf \- filtering mail" "" "filter(1)" 87
.xx "" "send \- mail routing and" "delivery" "" "send(8)" 941
.xx "" "" "delkey \- delete keys from factotum" "" "delkey(1)" 66
.xx "" "/msgs, Arch, Spam, Reply, Send, Post," "Delmesg, Save \- file based mail reader" "" "msgs(1)" 142
.xx "" "" "deroff, delatex \- remove formatting requests" "" "deroff(1)" 67
.xx "" "encrypt, decrypt, netcrypt \-" "DES encryption" "" "encrypt(2)" 364
.xx "" "/desECBdecrypt, des3CBCencrypt," "des3CBCdecrypt, des3ECBencrypt,/" "" "des(2)" 343
.xx "" "/desECBencrypt, desECBdecrypt," "des3CBCencrypt, des3CBCdecrypt,/" "" "des(2)" 343
.xx "" "/des3CBCdecrypt, des3ECBencrypt," "des3ECBdecrypt, key_setup, des56to64,/" "" "des(2)" 343
.xx "" "/des3ECBdecrypt, key_setup, des56to64," "des64to56, setupDES3state,/" "" "des(2)" 343
.xx "" "/des_key_setup, block_cipher, desCBCencrypt," "desCBCdecrypt, desECBencrypt,/" "" "des(2)" 343
.xx "" "walk \-" "descend a directory hierarchy" "" "walk(5)" 750
.xx "" "namespace \- name space" "description file" "" "namespace(6)" 779
.xx "" "errstr, rerrstr, werrstr \-" "description of last system call error" "" "errstr(2)" 367
.xx "" "dup \- duplicate an open file" "descriptor" "" "dup(2)" 358
.xx "" "fd2path \- return file name associated with file" "descriptor" "" "fd2path(2)" 379
.xx "" "iounit \- return size of atomic I/O unit for file" "descriptor" "" "iounit(2)" 436
.xx "" "fauth \- set up authentication on a file" "descriptor to a file server" "" "fauth(2)" 375
.xx "" "/block_cipher, desCBCencrypt, desCBCdecrypt," "desECBencrypt, desECBdecrypt,/" "" "des(2)" 343
.xx "" "dc \-" "desk calculator" "" "dc(1)" 62
.xx "desCBCdecrypt,/" "setupDESstate," "des_key_setup, block_cipher, desCBCencrypt," "" "des(2)" 343
.xx "xformpointd,/" "ident, matmul, matmulr," "determinant, adjoint, invertmat, xformpoint," "" "matrix(2)" 450
.xx "" "usbcmd, classname, closedev, configdev," "devctl, finddevs, loaddevstr, matchdevcsp,/" "" "usb(2)" 551
.xx "" "ether \- Ethernet" "device" "" "ether(3)" 599
.xx "" "Memory Card Interface Association (PCMCI)" "device" "i82365 \- Personal Computer" "i82365(3)" 605
.xx "" "tcp17013 \- listen for calls on a network" "device" "/tcp17008, tcp17009, tcp17010," "listen(8)" 882
.xx "" "vga \- VGA controller" "device" "" "vga(3)" 649
.xx "" "usbdirread, usbfsinit, usbdirfs, usbfs \- USB" "device driver file system library" "/usbfsdel," "usbfs(2)" 555
.xx "" "unstall, class, subclass, proto, CSP \- USB" "device driver library" "/openep, startdevs," "usb(2)" 551
.xx "" "Controller Interface) SATA (Serial AT) storage" "device drivers" "sdahci \- AHCI (Advanced Host" "sdahci(3)" 633
.xx "" "serial, usbeject, usbfat: \- Universal Serial Bus" "device drivers" "/disk, ether, kb, print, probe," "usb(4)" 722
.xx "" "opendisk, Disk \- generic disk" "device interface" "" "disk(2)" 349
.xx "" "sd \- storage" "device interface" "" "sd(3)" 631
.xx "" "sdaoe \- ATA-over-Ethernet (Ao) storage" "device interface" "" "sdaoe(3)" 635
.xx "" "scsiready, scsi, scsicmd, scsierror \- SCSI" "device operations" "openscsi, closescsi," "scsi(2)" 519
.xx "" "fs \- file system" "devices" "" "fs(3)" 603
.xx "" "intro \- introduction to the Plan 9" "devices" "" "intro(3)" 579
.xx "" "dhcpd," "dhcpleases, rarpd, tftpd \- Internet booting" "" "dhcpd(8)" 845
.xx "netmkaddr, setnetmtpt, getnetconninfo,/" "" "dial, hangup, announce, listen, accept, reject," "" "dial(2)" 345
.xx "" "faxsend, fax, telcofax, telcodata \- telephone" "dialer network" "telco, faxreceive," "telco(4)" 716
.xx "" "at, drain, expect, pass \-" "dialer scripting tools" "" "expect(1)" 81
.xx "" "" "dict \- dictionary browser" "" "dict(7)" 808
.xx "" "idiff \- interactive" "diff" "" "idiff(1)" 109
.xx "" "" "diff \- differential file comparator" "" "diff(1)" 68
.xx "" "yesterday," "diffy \- print file names from the dump" "" "yesterday(1)" 268
.xx "" "audio \-" "digital audio jukebox" "" "audio(7)" 807
.xx "" "triple_block_cipher - single and triple" "digital encryption standard" "/setupDES3state," "des(2)" 343
.xx "authentication box" "securenet \-" "Digital Pathways SecureNet Key remote" "" "securenet(8)" 940
.xx "" "dsasigalloc, dsasigfree, dsaprivtopub -" "digital signature algorithm" "/dsaprivfree," "dsa(2)" 356
.xx "" "map \-" "digitized map formats" "" "map(6)" 773
.xx "" "scat \- sky catalogue and" "Digitized Sky Survey" "" "scat(7)" 818
.xx "" "/validitems, freeitems, freedocinfo, dimenkind," "dimenspec, targetid, targetname, fromStr,/" "" "html(2)" 415
.xx "" "tar," "dircp \- archiver" "" "tar(1)" 229
.xx "" "awk \-" "directed scanning and processing language" "" "awk(1)" 26
.xx "" "chdir \- change working" "directory" "" "chdir(2)" 317
.xx "" "dirread, dirreadall \- read" "directory" "" "dirread(2)" 348
.xx "" "getwd \- get current" "directory" "" "getwd(2)" 410
.xx "" "ls, lc \- list contents of" "directory" "" "ls(1)" 124
.xx "" "mkdir \- make a" "directory" "" "mkdir(1)" 136
.xx "" "pwd, pbd \- working" "directory" "" "pwd(1)" 179
.xx "" "rwd, conswdir \- maintain remote working" "directory" "" "rwd(1)" 196
.xx "" "walk \- descend a" "directory hierarchy" "" "walk(5)" 750
.xx "" "/fstat, wstat, fwstat, dirstat, dirfstat, dirwstat," "dirfwstat, nulldir \- get and put file status" "" "stat(2)" 533
.xx "" "/convD2M, convM2S, convM2D, fcallfmt, dirfmt," "dirmodefmt, read9pmsg, statcheck, sizeS2M,/" "" "fcall(2)" 376
.xx "listensrv, postfd, postmountsrv, readbuf,/" "Srv," "dirread9p, emalloc9p, erealloc9p, estrdup9p," "" "9p(2)" 273
.xx "" "dirread," "dirreadall \- read directory" "" "dirread(2)" 348
.xx "" "stat, fstat, wstat, fwstat, dirstat, dirfstat," "dirwstat, dirfwstat, nulldir \- get and put file/" "" "stat(2)" 533
.xx "" "screenlock \-" "disable access to a terminal" "" "screenlock(8)" 935
.xx "login,/" "/convkeys2, printnetkey, status, enable," "disable, authsrv, guard.srv, debug, wrkey," "" "auth(8)" 833
.xx "system" "cdfs, cddb \- optical" "disc (CD, DVD, B) track reader and writer file" "" "cdfs(4)" 656
.xx "" "restore \- backup venti arenas to blu-ray" "discs or restore from them" "/dumparenas," "backup(8)" 835
.xx "" "opendisk," "Disk \- generic disk device interface" "" "disk(2)" 349
.xx "usbfat: \- Universal Serial Bus/" "audio, ccid," "disk, ether, kb, print, probe, serial, usbeject," "" "usb(4)" 722
.xx "" "kfs \-" "disk file system" "" "kfs(4)" 694
.xx "" "floppy \- floppy" "disk interface" "" "floppy(3)" 602
.xx "" "disksim \-" "disk simulator" "" "disksim(8)" 848
.xx "" "du \-" "disk usage" "" "du(1)" 71
.xx "" "" "diskparts, dmaon \- prepare disks for use" "" "diskparts(8)" 847
.xx "" "prep, fdisk, format, mbr \- prepare" "disks, floppies and flashes" "" "prep(8)" 920
.xx "" "" "disksim \- disk simulator" "" "disksim(8)" 848
.xx "" "statusbar \-" "display a bar graph status window" "" "statusbar(8)" 948
.xx "" "getmap, colors \-" "display color map" "" "colors(1)" 46
.xx "" "RGB, readcolmap, writecolmap \- access" "display color map" "" "readcolmap(2)" 506
.xx "" "stats \-" "display graphs of system activity" "" "stats(8)" 946
.xx "" "ns \-" "display name space" "" "ns(1)" 155
.xx "geninitdraw, drawerror, initdisplay,/" "" "Display, Point, Rectangle, Cursor, initdraw," "" "graphics(2)" 411
.xx "" "prof, tprof, kprof \-" "display profiling data" "" "prof(1)" 173
.xx "" "mul3, eqpt3, closept3, dot3, cross3, len3," "dist3, unit3, midpt3, lerp3, reflect3,/" "/div3," "arith3(2)" 294
.xx "" "hypot \- Euclidean" "distance" "" "hypot(2)" 432
.xx "" "bundle \- collect files for" "distribution" "" "bundle(1)" 36
.xx "len3, dist3, unit3, midpt3,/" "add3, sub3, neg3," "div3, mul3, eqpt3, closept3, dot3, cross3," "" "arith3(2)" 294
.xx "" "umuldiv \- high-precision multiplication and" "division" "muldiv," "muldiv(2)" 467
.xx "canonrect, eqpt, eqrect,/" "addpt, subpt, mulpt," "divpt, rectaddpt, rectsubpt, insetrect," "" "addpt(2)" 286
.xx "" "diskparts," "dmaon \- prepare disks for use" "" "diskparts(8)" 847
.xx "" "/mkhosts, cs, csquery, dns, dnstcp, dnsquery," "dnsdebug, inform \- network database" "" "ndb(8)" 893
.xx "" "/ndbhash, ndbparse, csgetvalue, ndbfindattr," "dnsquery, ndbdiscard, ndbconcatenate,/" "" "ndb(2)" 469
.xx "mswordstrings, msexceltables \- extract/" "" "doc2txt, doc2ps, wdoc2txt, xls2txt, olefs," "" "doc2txt(1)" 69
.xx "a document" "" "doctype \- intuit command line for formatting" "" "doctype(1)" 70
.xx "fmtstrcpy, fmtrunestrcpy,/" "fmtinstall," "dofmt, dorfmt, fmtprint, fmtvprint, fmtrune," "" "fmtinstall(2)" 385
.xx "" "/duvel, leffe, affligem, arend, koninck, kijkuit," "doom, kapellen \- Antwerp Plan 9 servers" "" 
.xx "" "/quotestrfmt, quoterunestrfmt, quotefmtinstall," "doquote, needsrcquote \- quoted character/" "" "quote(2)" 501
.xx "fmtstrcpy, fmtrunestrcpy,/" "fmtinstall, dofmt," "dorfmt, fmtprint, fmtvprint, fmtrune," "" "fmtinstall(2)" 385
.xx "" "dossrv, 9660srv, a:, b:, c:, d:, 9fat:," "dosmnt, eject \- DOS and ISO9660 file systems" "" "dossrv(4)" 667
.xx "" "add3, sub3, neg3, div3, mul3, eqpt3, closept3," "dot3, cross3, len3, dist3, unit3, midpt3,/" "" "arith3(2)" 294
.xx "" "troff, nroff," "dpost \- text formatting and typesetting" "" "troff(1)" 244
.xx "" "at," "drain, expect, pass \- dialer scripting tools" "" "expect(1)" 81
.xx "" "" "draw \- screen graphics" "" "draw(3)" 593
.xx "" "graph \-" "draw a graph" "" "graph(1)" 96
.xx "" "histogram \-" "draw a histogram" "" "histogram(8)" 870
.xx "replclipr, line, poly, fillpoly, bezier,/" "Image," "draw, gendraw, drawreplxy, drawrepl," "" "draw(2)" 350
.xx "" "map, mapdemo \-" "draw maps on various projections" "" "map(7)" 812
.xx "" "/memfillpoly, memimageline, memimagedraw," "drawclip, memlinebbox, memlineendsize,/" "" "memdraw(2)" 452
.xx "" "Point, Rectangle, Cursor, initdraw, geninitdraw," "drawerror, initdisplay, closedisplay,/" "Display," "graphics(2)" 411
.xx "" "/readmouse, closemouse, moveto, getrect," "drawgetrect, menuhit, setcursor \- mouse/" "" "mouse(2)" 461
.xx "" "grap \- pic preprocessor for" "drawing graphs" "" "grap(1)" 94
.xx "" "pic, tpic \- troff and tex preprocessors for" "drawing pictures" "" "pic(1)" 164
.xx "images" "/memimagestring, iprint, hwdraw \-" "drawing routines for memory-resident" "" "memdraw(2)" 452
.xx "" "Image, draw, gendraw, drawreplxy," "drawrepl, replclipr, line, poly, fillpoly, bezier,/" "" "draw(2)" 350
.xx "fillpoly, bezier,/" "Image, draw, gendraw," "drawreplxy, drawrepl, replclipr, line, poly," "" "draw(2)" 350
.xx "" "/runestringbg, runestringnbg, _string, ARROW," "drawsetdebug \- graphics functions PB L" "" "draw(2)" 350
.xx "from other operating systems" "" "drawterm \- connect to Plan 9 CPU servers" "" "drawterm(8)" 849
.xx "" "pcc \- APE C compiler" "driver" "" "pcc(1)" 162
.xx "" "usbfsinit, usbdirfs, usbfs \- USB device" "driver file system library" "/usbdirread," "usbfs(2)" 555
.xx "" "class, subclass, proto, CSP \- USB device" "driver library" "/openep, startdevs, unstall," "usb(2)" 551
.xx "" "Interface) SATA (Serial AT) storage device" "drivers" "/\- AHCI (Advanced Host Controller" "sdahci(3)" 633
.xx "" "usbeject, usbfat: \- Universal Serial Bus device" "drivers" "/disk, ether, kb, print, probe, serial," "usb(4)" 722
.xx "" "genprime, gensafeprime, genstrongprime," "DSAprimes, probably_prime, smallprimetest \-/" "" "prime(2)" 486
.xx "" "/dsaprivfree, dsasigalloc, dsasigfree," "dsaprivtopub - digital signature algorithm" "" "dsa(2)" 356
.xx "dsaprivfree,/" "dsagen, dsasign, dsaverify," "dsapuballoc, dsapubfree, dsaprivalloc," "" "dsa(2)" 356
.xx "" "/dsapubfree, dsaprivalloc, dsaprivfree," "dsasigalloc, dsasigfree, dsaprivtopub - digital/" "" "dsa(2)" 356
.xx "dsaprivalloc, dsaprivfree,/" "dsagen," "dsasign, dsaverify, dsapuballoc, dsapubfree," "" "dsa(2)" 356
.xx "" "" "du \- disk usage" "" "du(1)" 71
.xx "" "cwfs \- cached-worm file server," "dump" "" "cwfs(4)" 665
.xx "" "fs \- file server," "dump" "" "fs(4)" 682
.xx "" "history \- print file names from the" "dump" "" "history(1)" 106
.xx "" "xd \- hex, octal, decimal, or ASCII" "dump" "" "xd(1)" 265
.xx "" "yesterday, diffy \- print file names from the" "dump" "" "yesterday(1)" 268
.xx "image" "" "dump9660, mk9660 \- create an ISO-9660 CD" "" "mk9660(8)" 885
.xx "blu-ray discs or restore/" "backup, tobackup," "dumparenas, restore \- backup venti arenas to" "" "backup(8)" 835
.xx "" "ktrace \- interpret kernel stack" "dumps" "" "ktrace(1)" 115
.xx "" "" "dup \- duplicate an open file descriptor" "" "dup(2)" 358
.xx "" "" "dup \- dups of open files" "" "dup(3)" 597
.xx "doom, kapellen \- Antwerp Plan 9/" "delirium," "duvel, leffe, affligem, arend, koninck, kijkuit," "" 
.xx "" "cdfs, cddb \- optical disc (CD," "DVD, B) track reader and writer file system" "" "cdfs(4)" 656
.xx "" "/rectinrect, rectXrect, rectclip, combinerect, Dx," "Dy, Pt, Rect, Rpt \- arithmetic on points and/" "" "addpt(2)" 286
.xx "dynloadgen, dynobjfree, dyntabsize \- load/" "" "dynfindsym, dynfreeimport, dynloadfd," "" "dynld(2)" 359
.xx "" "ARGBEGIN, ARGEND, ARGC, ARGF," "EARGF \- process option letters from argv" "" "arg(2)" 292
.xx "" "/eread, emouse, ekbd, ecanread, ecanmouse," "ecankbd, ereadmouse, eatomouse, eresized,/" "" "event(2)" 368
.xx "" "" "echo \- print arguments" "" "echo(1)" 72
.xx "" "udpecho \-" "echo UDP packets" "" "udpecho(8)" 954
.xx "" "" "ecp \- fast copy, handling errors" "" "ecp(1)" 73
.xx "" "" "ed \- text editor" "" "ed(1)" 74
.xx "" "tweak \-" "edit image files, subfont files, face files, etc." "" "tweak(1)" 247
.xx "" "sed \- stream" "editor" "" "sed(1)" 205
.xx "" "emacs \-" "editor macros" "" "emacs(1)" 78
.xx "" "sam, B, sam.save, samterm \- screen" "editor with structural regular expressions" "" "sam(1)" 198
.xx "" "/ecankbd, ereadmouse, eatomouse, eresized," "egetrect, edrawgetrect, emenuhit, emoveto,/" "" "event(2)" 368
.xx "" "/egverify, egpuballoc, egpubfree, egprivalloc," "egprivfree, egsigalloc, egsigfree, egprivtopub/" "" "elgamal(2)" 361
.xx "egprivalloc,/" "eggen, egencrypt, egdecrypt," "egsign, egverify, egpuballoc, egpubfree," "" "elgamal(2)" 361
.xx "" "uart," "eia \- serial communication control" "" "uart(3)" 644
.xx "ekbd, ecanread, ecanmouse, ecankbd,/" "event," "einit, estart, estartfn, etimer, eread, emouse," "" "event(2)" 368
.xx "v4parsecidr, parseether, myipaddr,/" "" "eipfmt, parseip, parseipmask, v4parseip," "" "ip(2)" 437
.xx "" "dossrv, 9660srv, a:, b:, c:, d:, 9fat:, dosmnt," "eject \- DOS and ISO9660 file systems" "" "dossrv(4)" 667
.xx "" "/einit, estart, estartfn, etimer, eread, emouse," "ekbd, ecanread, ecanmouse, ecankbd,/" "" "event(2)" 368
.xx "" "egsigalloc, egsigfree, egprivtopub -" "elgamal encryption" "/egprivalloc, egprivfree," "elgamal(2)" 361
.xx "" "/bezier, bezspline, fillbezier, fillbezspline," "ellipse, fillellipse, arc, fillarc, icossin,/" "" "draw(2)" 350
.xx "" "" "emacs \- editor macros" "" "emacs(1)" 78
.xx "postfd, postmountsrv,/" "Srv, dirread9p," "emalloc9p, erealloc9p, estrdup9p, listensrv," "" "9p(2)" 273
.xx "" "event, einit, estart, estartfn, etimer, eread," "emouse, ekbd, ecanread, ecanmouse,/" "" "event(2)" 368
.xx "" "/eresized, egetrect, edrawgetrect, emenuhit," "emoveto, esetcursor, Event, Mouse, Menu \-/" "" "event(2)" 368
.xx "" "vt \-" "emulate a VT-100 or VT-220 terminal" "" "vt(1)" 260
.xx "" "/convkeys, convkeys2, printnetkey, status," "enable, disable, authsrv, guard.srv, debug,/" "" "auth(8)" 833
.xx "byte arrays as strings" "dec64, enc64, dec32," "enc32, dec16, enc16, encodefmt \- encoding" "" "encode(2)" 363
.xx "format" "pemdecode, pemencode \-" "encode files in Privacy Enhanced Mail (PE)" "" "pem(8)" 905
.xx "" "uuencode, uudecode \-" "encode/decode a file as printable ASCII" "" "uuencode(1)" 252
.xx "" "dec64, enc64, dec32, enc32, dec16, enc16," "encodefmt \- encoding byte arrays as strings" "" "encode(2)" 363
.xx "" "" "encrypt, decrypt, netcrypt \- DES encryption" "" "encrypt(2)" 364
.xx "" "bfECBencrypt, bfECBdecrypt - blowfish" "encryption" "/bfCBCencrypt, bfCBCdecrypt," "blowfish(2)" 312
.xx "" "egsigalloc, egsigfree, egprivtopub - elgamal" "encryption" "/egprivalloc, egprivfree," "elgamal(2)" 361
.xx "" "encrypt, decrypt, netcrypt \- DES" "encryption" "" "encrypt(2)" 364
.xx "" "rc4, rc4skip, rc4back - alleged rc4" "encryption" "setupRC4state," "rc4(2)" 504
.xx "" "X509toRSApub, X509gen, X509verify \- RSA" "encryption algorithm" "/rsapubfree," "rsa(2)" 512
.xx "" "triple_block_cipher - single and triple digital" "encryption standard" "/setupDES3state," "des(2)" 343
.xx "" "/setupAESXCBCstate, aesXCBCmac - advanced" "encryption standard (rijndael)" "" "aes(2)" 288
.xx "" "pushssl \- attach SSL version 2" "encryption to a communication channel" "" "pushssl(2)" 493
.xx "" "/readcert, readcertchain \- attach TLS1 or SSL3" "encryption to a communication channel" "" "pushtls(2)" 494
.xx "" "lookupavl, deleteavl, avlwalk, avlnext, avlprev," "endwalk - AVL tree routines" "/insertavl," "avl(2)" 304
.xx "" "pemencode \- encode files in Privacy" "Enhanced Mail (PE) format" "pemdecode," "pem(8)" 905
.xx "" "" "env \- environment variables" "" "env(3)" 598
.xx "" "getenv, putenv \- access" "environment variables" "" "getenv(2)" 405
.xx "plumbsendtext, plumblookup, plumbpack,/" "" "eplumb, plumbfree, plumbopen, plumbsend," "" "plumb(2)" 480
.xx "" "nsec \- time in seconds and nanoseconds since" "epoch" "time," "time(2)" 549
.xx "" "" "eqn \- typeset mathematics" "" "eqn(1)" 79
.xx "unit3, midpt3,/" "add3, sub3, neg3, div3, mul3," "eqpt3, closept3, dot3, cross3, len3, dist3," "" "arith3(2)" 294
.xx "" "/rectsubpt, insetrect, canonrect, eqpt," "eqrect, ptinrect, rectinrect, rectXrect, rectclip,/" "" "addpt(2)" 286
.xx "" "/myipaddr, myetheraddr, maskip, equivip4," "equivip6, defmask, isv4, v4tov6, v6tov4,/" "" "ip(2)" 437
.xx "" "/ekbd, ecanread, ecanmouse, ecankbd," "ereadmouse, eatomouse, eresized, egetrect,/" "" "event(2)" 368
.xx "postmountsrv,/" "Srv, dirread9p, emalloc9p," "erealloc9p, estrdup9p, listensrv, postfd," "" "9p(2)" 273
.xx "" "/fmtstrflush, runefmtstrinit, runefmtstrflush," "errfmt \- support for user-defined print/" "" "fmtinstall(2)" 385
.xx "" "rerrstr, werrstr \- description of last system call" "error" "errstr," "errstr(2)" 367
.xx "" "" "error \- return an error" "" "error(5)" 741
.xx "handling for/" "waserror, poperror, nexterror," "error, fmterror, silenterror \- exception" "" "error(2)" 365
.xx "" "perror, syslog, sysfatal \- system" "error messages" "" "perror(2)" 478
.xx "" "vtmallocz, vtrealloc, vtstrdup, vtfree \-" "error-checking memory allocators" "/vtmalloc," "venti-mem(2)" 570
.xx "" "ecp \- fast copy, handling" "errors" "" "ecp(1)" 73
.xx "" "spell, sprog \- find spelling" "errors" "" "spell(1)" 214
.xx "system call error" "" "errstr, rerrstr, werrstr \- description of last" "" "errstr(2)" 367
.xx "" "/egetrect, edrawgetrect, emenuhit, emoveto," "esetcursor, Event, Mouse, Menu \- graphics/" "" "event(2)" 368
.xx "\- network protocols over IP" "ip," "esp, gre, icmp, icmpv6, ipmux, rudp, tcp, udp" "" "ip(3)" 606
.xx "" "audio \- SoundBlaster or" "ESS1688 audio controller" "" "audio(3)" 586
.xx "" "attach, auth \- messages to" "establish a connection" "" "attach(5)" 739
.xx "" "swap \-" "establish a swap file" "" "swap(8)" 950
.xx "ecanread, ecanmouse,/" "event, einit, estart," "estartfn, etimer, eread, emouse, ekbd," "" "event(2)" 368
.xx "" "Srv, dirread9p, emalloc9p, erealloc9p," "estrdup9p, listensrv, postfd, postmountsrv,/" "" "9p(2)" 273
.xx "" "" "ether \- Ethernet device" "" "ether(3)" 599
.xx "usbfat: \- Universal Serial/" "audio, ccid, disk," "ether, kb, print, probe, serial, usbeject," "" "usb(4)" 722
.xx "" "aoesrv - serve data via" "Ethernet (Ao)" "" "aoesrv(8)" 829
.xx "" "aoe \-" "Ethernet (Ao) interface" "" "aoe(3)" 580
.xx "" "sdaoe \-" "Ethernet (Ao) storage device interface" "" "sdaoe(3)" 635
.xx "" "bridge \- IPv4" "Ethernet bridge" "" "bridge(3)" 587
.xx "" "cec \- Coraid" "Ethernet Console" "" "cec(8)" 842
.xx "" "ether \-" "Ethernet device" "" "ether(3)" 599
.xx "" "wol \- send wake-on-lan" "Ethernet packet" "" "wol(8)" 966
.xx "ecanmouse,/" "event, einit, estart, estartfn," "etimer, eread, emouse, ekbd, ecanread," "" "event(2)" 368
.xx "" "hypot \-" "Euclidean distance" "" "hypot(2)" 432
.xx "., ~ \- command language" "rc, cd," "eval, exec, exit, flag, rfork, shift, wait, whatis," "" "rc(1)" 181
.xx "" "/edrawgetrect, emenuhit, emoveto, esetcursor," "Event, Mouse, Menu \- graphics events" "" "event(2)" 368
.xx "" "calendar \- print upcoming" "events" "" "calendar(1)" 38
.xx "" "/nexterror, error, fmterror, silenterror \-" "exception handling for threaded programs" "" "error(2)" 365
.xx "" "ike \- IPsec Internet Key" "Exchange file server" "" "ike(4)" 687
.xx "\- command language" "rc, cd, eval," "exec, exit, flag, rfork, shift, wait, whatis, ., ~" "" "rc(1)" 181
.xx "file" "exec," "execl, _privates, _nprivates, _tos \- execute a" "" "exec(2)" 371
.xx "execution" "" "execnet \- network interface to program" "" "execnet(4)" 669
.xx "" "src \- find source code for" "executable" "" "src(1)" 218
.xx "" "leswav \- machine-independent access to" "executable files" "/beswav, leswab, leswal," "mach(2)" 445
.xx "" "size \- print size of" "executable files" "" "size(1)" 209
.xx "" "exec, execl, _privates, _nprivates, _tos \-" "execute a file" "" "exec(2)" 371
.xx "" "open, create \- prepare a fid for I/O on an" "existing or new file" "" "open(5)" 743
.xx "" "await, wait, waitpid \- wait for a process to" "exit" "" "wait(2)" 575
.xx "command language" "rc, cd, eval, exec," "exit, flag, rfork, shift, wait, whatis, ., ~ \-" "" "rc(1)" 181
.xx "terminate process, process cleanup" "" "exits, _exits, atexit, atexitdont, terminate \-" "" "exits(2)" 373
.xx "exponential, logarithm, power, square root" "" "exp, log, log10, pow, pow10, sqrt \-" "" "exp(2)" 374
.xx "" "uncompress, zip, unzip \- compress and" "expand data" "/bzip2, bunzip2, compress," "gzip(1)" 103
.xx "" "aliasmail \-" "expand system wide mail aliases" "" "aliasmail(8)" 828
.xx "" "at, drain," "expect, pass \- dialer scripting tools" "" "expect(1)" 81
.xx "" "frexp, ldexp, modf \- split into mantissa and" "exponent" "" "frexp(2)" 399
.xx "" "exp, log, log10, pow, pow10, sqrt \-" "exponential, logarithm, power, square root" "" "exp(2)" 374
.xx "" "" "exportfs, srvfs \- network file server plumbing" "" "exportfs(4)" 670
.xx "" "regsub, rregexec, rregsub, regerror \- regular" "expression" "/regcomplit, regcompnl, regexec," "regexp(2)" 508
.xx "" "regexp \- regular" "expression notation" "" "regexp(6)" 789
.xx "" "samterm \- screen editor with structural regular" "expressions" "sam, B, sam.save," "sam(1)" 198
.xx "" "fs," "exsort \- file server maintenance" "" "fs(8)" 857
.xx "" "" "ext2srv \- ext2 file system" "" "ext2srv(4)" 672
.xx "" "crtpre, crtin, crtout, crtprefree, crtresfree \-" "extended precision arithmetic" "/mpmagsub," "mp(2)" 463
.xx "" "s_grow, s_read, s_read_line, s_getline \-" "extensible strings" "/s_putc, s_unique," "string(2)" 537
.xx "" "font, subfont \-" "external format for fonts and subfonts" "" "font(6)" 762
.xx "" "image \-" "external format for images" "" "image(6)" 766
.xx "" "kbin \-" "external keyboard input" "" "kbin(3)" 614
.xx "" "vac, unvac \- create," "extract a vac archive on Venti" "" "vac(1)" 253
.xx "" "strings \-" "extract printable strings" "" "strings(1)" 223
.xx "" "/xls2txt, olefs, mswordstrings, msexceltables \-" "extract printable text from Microsoft/" "" "doc2txt(1)" 69
.xx "remainder, floor, ceiling functions" "" "fabs, fmod, floor, ceil \- absolute value," "" "floor(2)" 384
.xx "" "" "face \- face files" "" "face(6)" 761
.xx "" "tweak \- edit image files, subfont files," "face files, etc." "" "tweak(1)" 247
.xx "" "mug - convert an image to a" "face icon" "" "mug(1)" 148
.xx "" "" "faces, seemail, vwhois \- mailbox interface" "" "faces(1)" 83
.xx "large primes" "" "factor, primes \- factor a number, generate" "" "factor(1)" 84
.xx "" "delkey \- delete keys from" "factotum" "" "delkey(1)" 66
.xx "" "" "factotum, fgui \- authentication agent" "" "factotum(4)" 673
.xx "" "mailcmd \- mail the output of a" "failed command" "" "mailcmd(1)" 127
.xx "" "ecp \-" "fast copy, handling errors" "" "ecp(1)" 73
.xx "" "/srand, truerand, ntruerand, genrandom, prng," "fastrand, nfastrand \- random number/" "" "rand(2)" 502
.xx "" "abort \- generate a" "fault" "" "abort(2)" 283
.xx "descriptor to a file server" "" "fauth \- set up authentication on a file" "" "fauth(2)" 375
.xx "" "/newns, addns, login, noworld, auth_proxy," "fauth_proxy, auth_allocrpc, auth_freerpc,/" "" "auth(2)" 299
.xx "typesetter output files" "page \- view" "FAX, image, graphic, PostScript, PDF, and" "" "page(1)" 157
.xx "telephone dialer network" "telco," "faxreceive, faxsend, fax, telcofax, telcodata \-" "" "telco(4)" 716
.xx "" "Fcall, convS2M, convD2M, convM2S, convM2D," "fcallfmt, dirfmt, dirmodefmt, read9pmsg,/" "" "fcall(2)" 376
.xx "setvbuf,/" "fopen, freopen, fdopen, fileno," "fclose, sopenr, sopenw, sclose, fflush," "" "fopen(2)" 388
.xx "" "cp," "fcp, mv \- copy, move files" "" "cp(1)" 50
.xx "descriptor" "" "fd2path \- return file name associated with file" "" "fd2path(2)" 379
.xx "and flashes" "prep," "fdisk, format, mbr \- prepare disks, floppies" "" "prep(8)" 920
.xx "sclose, fflush, setvbuf,/" "fopen, freopen," "fdopen, fileno, fclose, sopenr, sopenw," "" "fopen(2)" 388
.xx "" "" "fedex, ups, usps \- track shipments" "" "fedex(1)" 85
.xx "" "/setbuf, fgetpos, ftell, fsetpos, fseek, rewind," "feof, ferror, clearerr \- standard buffered/" "" "fopen(2)" 388
.xx "sokoban, sudoku \- time wasters" "4s, 5s," "festoon, juggle, life, mahjongg, memo," "" "games(1)" 92
.xx "" "ap \-" "fetch Associated Press news articles" "" "ap(1)" 23
.xx "" "getcallerpc \-" "fetch return PC of current function" "" "getcallerpc(2)" 404
.xx "points/" "/pldist3, vdiv3, vrem3, pn2f3, ppp2f3," "fff2p3, pdiv4, add4, sub4 \- operations on 3-d" "" "arith3(2)" 294
.xx "" "/sopenw, sclose, fflush, setvbuf, setbuf," "fgetpos, ftell, fsetpos, fseek, rewind, feof,/" "" "fopen(2)" 388
.xx "" "/getc, getchar, fputc, putc, putchar, ungetc," "fgets, gets, fputs, puts, fread, fwrite \- Stdio/" "" "fgetc(2)" 380
.xx "" "factotum," "fgui \- authentication agent" "" "factotum(4)" 673
.xx "" "clunk \- forget about a" "fid" "" "clunk(5)" 740
.xx "" "open, create \- prepare a" "fid for I/O on an existing or new file" "" "open(5)" 743
.xx "closefid, lookupfid, removefid, Req,/" "Fid," "Fidpool, allocfidpool, freefidpool, allocfid," "" "9pfid(2)" 279
.xx "" "gettokens, tokenize \- break a string into" "fields" "getfields," "getfields(2)" 407
.xx "" "access \- determine accessibility of" "file" "" "access(2)" 285
.xx "" "dd \- convert and copy a" "file" "" "dd(1)" 64
.xx "" "execl, _privates, _nprivates, _tos \- execute a" "file" "exec," "exec(2)" 371
.xx "" "fortune \- sample lines from a" "file" "" "fortune(1)" 90
.xx "" "httpfile \- serve a single web" "file" "" "httpfile(4)" 686
.xx "" "namespace \- name space description" "file" "" "namespace(6)" 779
.xx "" "\- open a file for reading or writing, create" "file" "open, create, close" "open(2)" 477
.xx "" "\- prepare a fid for I/O on an existing or new" "file" "open, create" "open(5)" 743
.xx "" "pr \- print" "file" "" "pr(1)" 172
.xx "" "readn, write, pread, pwrite \- read or write" "file" "read," "read(2)" 505
.xx "" "read, write \- transfer data from and to a" "file" "" "read(5)" 745
.xx "" "remove \- remove a" "file" "" "remove(2)" 510
.xx "" "sha1sum \- sum and count blocks in a" "file" "sum, md5sum," "sum(1)" 225
.xx "" "swap \- establish a swap" "file" "" "swap(8)" 950
.xx "" "tail \- deliver the last part of a" "file" "" "tail(1)" 228
.xx "" "touch \- set modification date of a" "file" "" "touch(1)" 241
.xx "" "uniq \- report repeated lines in a" "file" "" "uniq(1)" 249
.xx "" "venti.conf \- a venti configuration" "file" "" "venti.conf(6)" 801
.xx "" "" "file \- determine file type" "" "file(1)" 86
.xx "" "uuencode, uudecode \- encode/decode a" "file as printable ASCII" "" "uuencode(1)" 252
.xx "" "stat, wstat \- inquire or change" "file attributes" "" "stat(5)" 747
.xx "" "Arch, Spam, Reply, Send, Post, Delmesg, Save \-" "file based mail reader" "/mailplumb, msgs," "msgs(1)" 142
.xx "" "diff \- differential" "file comparator" "" "diff(1)" 68
.xx "" "ssh, sshnet, scp, sshserve \- secure login and" "file copy from/to Unix or Plan 9" "" "ssh(1)" 219
.xx "opendirfile,/" "Tree, alloctree, freetree," "File, createfile, closefile, removefile, walkfile," "" "9pfile(2)" 281
.xx "" "dup \- duplicate an open" "file descriptor" "" "dup(2)" 358
.xx "" "fd2path \- return file name associated with" "file descriptor" "" "fd2path(2)" 379
.xx "" "iounit \- return size of atomic I/O unit for" "file descriptor" "" "iounit(2)" 436
.xx "" "fauth \- set up authentication on a" "file descriptor to a file server" "" "fauth(2)" 375
.xx "" "dynobjfree, dyntabsize \- load object" "file dynamically" "/dynloadfd, dynloadgen," "dynld(2)" 359
.xx "" "grep \- search a" "file for a pattern" "" "grep(1)" 97
.xx "" "plan9.ini \- configuration" "file for PCs" "" "plan9.ini(8)" 908
.xx "" "open, create, close \- open a" "file for reading or writing, create file" "" "open(2)" 477
.xx "" "a.out \- object" "file format" "" "a.out(6)" 752
.xx "" "ar \- archive (library)" "file format" "" "ar(6)" 754
.xx "" "intro \- introduction to" "file formats" "" "intro(6)" 751
.xx "" "remove \- remove a" "file from a server" "" "remove(5)" 746
.xx "" "chgrp \- change" "file group" "" "chgrp(1)" 41
.xx "" "readdirfile, closedirfile, hasperm \- in-memory" "file hierarchy" "/walkfile, opendirfile," "9pfile(2)" 281
.xx "" "pipefile \- attach filter to" "file in name space" "" "pipefile(1)" 167
.xx "" "objtraverse, isar, nextar, readar \- object" "file interpretation functions" "/readobj," "object(2)" 475
.xx "" "split \- split a" "file into pieces" "" "split(1)" 217
.xx "" "rdproto \- parse and process a proto" "file listing" "" "proto(2)" 492
.xx "" "mtime \- print" "file modification time" "" "mtime(1)" 147
.xx "" "mktemp \- make a unique" "file name" "" "mktemp(2)" 460
.xx "" "basename \- strip" "file name affixes" "" "basename(1)" 30
.xx "" "fd2path \- return" "file name associated with file descriptor" "" "fd2path(2)" 379
.xx "" "complete \-" "file name completion" "" "complete(2)" 320
.xx "" "namespace \- structure of conventional" "file name space" "" "namespace(4)" 697
.xx "" "history \- print" "file names from the dump" "" "history(1)" 106
.xx "" "yesterday, diffy \- print" "file names from the dump" "" "yesterday(1)" 268
.xx "" "seek \- change" "file offset" "" "seek(2)" 523
.xx "" "sizeS2M, sizeD2M \- interface to Plan 9" "File protocol" "/read9pmsg, statcheck," "fcall(2)" 376
.xx "" "intro \- introduction to the Plan 9" "File Protocol, 9P" "" "intro(5)" 735
.xx "" "boot \- connect to the root" "file server" "" "boot(8)" 837
.xx "" "\- set up authentication on a file descriptor to a" "file server" "fauth" "fauth(2)" 375
.xx "" "fossil, flchk, flfmt \- archival" "file server" "" "fossil(4)" 679
.xx "" "fsconfig \- configuring a" "file server" "" "fsconfig(8)" 862
.xx "" "ike \- IPsec Internet Key Exchange" "file server" "" "ike(4)" 687
.xx "" "upasfs, startupasfs \- mail" "file server" "" "upasfs(4)" 720
.xx "" "\- reboot the system upon loss of remote" "file server connection" "reboot" "reboot(8)" 926
.xx "" "cwfs \- cached-worm" "file server, dump" "" "cwfs(4)" 665
.xx "" "fs \-" "file server, dump" "" "fs(4)" 682
.xx "" "fs, exsort \-" "file server maintenance" "" "fs(8)" 857
.xx "" "exportfs, srvfs \- network" "file server plumbing" "" "exportfs(4)" 670
.xx "" "users \-" "file server user list format" "" "users(6)" 796
.xx "" "intro \- introduction to" "file servers" "" "intro(4)" 651
.xx "" "threadlistensrv, threadpostmountsrv, srv \- 9P" "file service" "/readstr, respond, responderror," "9p(2)" 273
.xx "" "srv, srvold9p, 9fs, srvssh \- start network" "file service" "" "srv(4)" 713
.xx "" "dirwstat, dirfwstat, nulldir \- get and put" "file status" "/wstat, fwstat, dirstat, dirfstat," "stat(2)" 533
.xx "" "disc (CD, DVD, B) track reader and writer" "file system" "cdfs, cddb \- optical" "cdfs(4)" 656
.xx "" "cfs \- cache" "file system" "" "cfs(4)" 658
.xx "" "ext2srv \- ext2" "file system" "" "ext2srv(4)" 672
.xx "" "ftpfs \- file transfer protocol (FT)" "file system" "" "ftpfs(4)" 684
.xx "" "ipokfs \- terrorist IP address" "file system" "" "ipokfs(4)" 691
.xx "" "kfs \- disk" "file system" "" "kfs(4)" 694
.xx "" "lnfs \- long name" "file system" "" "lnfs(4)" 695
.xx "" "mkfs, mkext \- archive or update a" "file system" "" "mkfs(8)" 888
.xx "" "mkpaqfs \- make a compressed read-only" "file system" "" "mkpaqfs(8)" 889
.xx "" "mksacfs \- make a compressed" "file system" "" "mksacfs(8)" 890
.xx "" "\- network news transport protocol (NNT)" "file system" "nntpfs" "nntpfs(4)" 702
.xx "" "paqfs \- compressed read-only" "file system" "" "paqfs(4)" 703
.xx "" "playlistfs \- playlist" "file system" "" "playlistfs(7)" 816
.xx "" "ramfs \- memory" "file system" "" "ramfs(4)" 705
.xx "" "ratfs \- mail address ratification" "file system" "" "ratfs(4)" 706
.xx "" "rdbfs \- remote kernel debugging" "file system" "" "rdbfs(4)" 707
.xx "" "root \- the root" "file system" "" "root(3)" 629
.xx "" "sacfs \- compressed" "file system" "" "sacfs(4)" 711
.xx "" "vacfs \- a Venti-based" "file system" "" "vacfs(4)" 727
.xx "" "webfs \- world wide web" "file system" "" "webfs(4)" 730
.xx "" "wikifs, wikipost \- wiki" "file system" "" "wikifs(4)" 733
.xx "" "nfs \- Sun network" "file system client" "" "nfs(4)" 700
.xx "" "fs \-" "file system devices" "" "fs(3)" 603
.xx "" "consolefs, C, clog \-" "file system for console access" "" "consolefs(4)" 661
.xx "" "flashfs \- journalling" "file system for flash memory" "" "flashfs(4)" 678
.xx "" "mkflashfs \- make a journalling" "file system for flash memory" "" "mkflashfs(8)" 887
.xx "" "plumber \-" "file system for interprocess messaging" "" "plumber(4)" 704
.xx "" "usbfsinit, usbdirfs, usbfs \- USB device driver" "file system library" "/usbfsdel, usbdirread," "usbfs(2)" 555
.xx "" "iostats \-" "file system to measure I/O" "" "iostats(4)" 690
.xx "" "c:, d:, 9fat:, dosmnt, eject \- DOS and ISO9660" "file systems" "dossrv, 9660srv, a:, b:," "dossrv(4)" 667
.xx "" "\- automatically generate mount points for" "file systems" "mntgen" "mntgen(4)" 696
.xx "" "tarfs, tpfs, v6fs, v10fs, zipfs \- mount archival" "file systems" "32vfs, cpiofs, tapfs," "tapefs(4)" 715
.xx "" "setup.kfs, update \- administration for local" "file systems" "/setup.9fat, setup.disk," "update(8)" 955
.xx "" "fshalt, reboot \- halt any local" "file systems and optionally reboot the system" "" "fshalt(8)" 866
.xx "" "xmr \- remote login, execution, and XMODEM" "file transfer" "con, telnet, rx, hayes, xms," "con(1)" 48
.xx "" "ftpfs \-" "file transfer protocol (FT) file system" "" "ftpfs(4)" 684
.xx "" "file \- determine" "file type" "" "file(1)" 86
.xx "" "partfs \- serve" "file, with partitions" "" "partfs(8)" 902
.xx "table/" "/localsym, globalsym, textsym, file2pc," "fileelem, filesym, fileline, fnbound \- symbol" "" "symbol(2)" 542
.xx "setvbuf, setbuf,/" "fopen, freopen, fdopen," "fileno, fclose, sopenr, sopenw, sclose, fflush," "" "fopen(2)" 388
.xx "" "cat, read \- catenate" "files" "" "cat(1)" 39
.xx "" "cmp \- compare two" "files" "" "cmp(1)" 44
.xx "" "\- select or reject lines common to two sorted" "files" "comm" "comm(1)" 47
.xx "" "cp, fcp, mv \- copy, move" "files" "" "cp(1)" 50
.xx "" "dup \- dups of open" "files" "" "dup(3)" 597
.xx "" "face \- face" "files" "" "face(6)" 761
.xx "" "keyfs, warning \- authentication database" "files" "" "keyfs(4)" 692
.xx "" "\- machine-independent access to executable" "files" "/beswal, beswav, leswab, leswal, leswav" "mach(2)" 445
.xx "" "mk, membername \- maintain (make) related" "files" "" "mk(1)" 131
.xx "" "mp3enc \- create mp3 audio" "files" "" "mp3enc(1)" 139
.xx "" "graphic, PostScript, PDF, and typesetter output" "files" "page \- view FAX, image," "page(1)" 157
.xx "" "qer, runq \- queue management for spooled" "files" "" "qer(8)" 924
.xx "" "rio \- window system" "files" "" "rio(4)" 708
.xx "" "rm \- remove" "files" "" "rm(1)" 195
.xx "" "size \- print size of executable" "files" "" "size(1)" 209
.xx "" "sort \- sort and/or merge" "files" "" "sort(1)" 212
.xx "" "strip \- remove symbols from binary" "files" "" "strip(1)" 224
.xx "" "tmpfile, tmpnam \- Stdio temporary" "files" "" "tmpfile(2)" 550
.xx "" "vtfiletruncate, vtfileunlock, vtfilewrite \- Venti" "files" "/vtfilesetentry, vtfilesetsize," "venti-file(2)" 567
.xx "" "tweak \- edit image files, subfont" "files, face files, etc." "" "tweak(1)" 247
.xx "" "bundle \- collect" "files for distribution" "" "bundle(1)" 36
.xx "" "acme \- control" "files for text windows" "" "acme(4)" 652
.xx "" "pemdecode, pemencode \- encode" "files in Privacy Enhanced Mail (PE) format" "" "pem(8)" 905
.xx "" "mp3dec \- decode audio MPEG" "files (layers 1, 2 and 3)" "" "mp3dec(1)" 138
.xx "" "tweak \- edit image" "files, subfont files, face files, etc." "" "tweak(1)" 247
.xx "access/" "/globalsym, textsym, file2pc, fileelem," "filesym, fileline, fnbound \- symbol table" "" "symbol(2)" 542
.xx "" "cifs - Microsoft™ Windows network" "filesystem client" "" "cifs(4)" 659
.xx "" "/fillbezier, fillbezspline, ellipse, fillellipse, arc," "fillarc, icossin, icossin2, border, string,/" "" "draw(2)" 350
.xx "" "/replclipr, line, poly, fillpoly, bezier, bezspline," "fillbezier, fillbezspline, ellipse, fillellipse, arc,/" "" "draw(2)" 350
.xx "" "plot \- graphics" "filter" "" "plot(1)" 168
.xx "" "" "filter, list, deliver, token, vf \- filtering mail" "" "filter(1)" 87
.xx "" "pipefile \- attach" "filter to file in name space" "" "pipefile(1)" 167
.xx "" "scanmail, testscan \- spam" "filters" "" "scanmail(8)" 932
.xx "" "look \-" "find lines in a sorted list" "" "look(1)" 121
.xx "" "leak, kmem, umem \- help" "find memory leaks" "" "leak(1)" 116
.xx "" "man, lookman, sig \- print or" "find pages of this manual" "" "man(1)" 128
.xx "" "src \-" "find source code for executable" "" "src(1)" 218
.xx "" "spell, sprog \-" "find spelling errors" "" "spell(1)" 214
.xx "" "/classname, closedev, configdev, devctl," "finddevs, loaddevstr, matchdevcsp, opendev,/" "" "usb(2)" 551
.xx "" "/machbytype, machbyname, newmap, setmap," "findseg, unusemap, loadmap, attachproc,/" "" "mach(2)" 445
.xx "" "/textseg, line2addr, lookup, findlocal, getauto," "findsym, localsym, globalsym, textsym,/" "" "symbol(2)" 542
.xx "bridging-and-tunnelling clients" "" "findviaduct \- look up data about Viaduct" "" "findviaduct(8)" 850
.xx "language" "rc, cd, eval, exec, exit," "flag, rfork, shift, wait, whatis, ., ~ \- command" "" "rc(1)" 181
.xx "" "" "flash \- flash memory" "" "flash(3)" 600
.xx "" "flashfs \- journalling file system for" "flash memory" "" "flashfs(4)" 678
.xx "" "mkflashfs \- make a journalling file system for" "flash memory" "" "mkflashfs(8)" 887
.xx "" "format, mbr \- prepare disks, floppies and" "flashes" "prep, fdisk," "prep(8)" 920
.xx "memory" "" "flashfs \- journalling file system for flash" "" "flashfs(4)" 678
.xx "" "/inflatezlib, inflateblock, inflatezlibblock," "flateerr, mkcrctab, blockcrc, adler32 \- deflate/" "" "flate(2)" 382
.xx "" "fossil, flchk," "flfmt \- archival file server" "" "fossil(4)" 679
.xx "" "getfcr, setfcr, getfsr, setfsr \- control" "floating point" "" "getfcr(2)" 406
.xx "" "hoc \- interactive" "floating point language" "" "hoc(1)" 107
.xx "" "fmod, floor, ceil \- absolute value, remainder," "floor, ceiling functions" "fabs," "floor(2)" 384
.xx "" "prep, fdisk, format, mbr \- prepare disks," "floppies and flashes" "" "prep(8)" 920
.xx "" "" "floppy \- floppy disk interface" "" "floppy(3)" 602
.xx "" "" "flush \- abort a message" "" "flush(5)" 742
.xx "" "segflush \-" "flush instruction and data caches" "" "segflush(2)" 527
.xx "" "/getdefont, getwindow, gengetwindow," "flushimage, bufimage, lockdisplay,/" "" "graphics(2)" 411
.xx "floor, ceiling functions" "fabs," "fmod, floor, ceil \- absolute value, remainder," "" "floor(2)" 384
.xx "" "" "fmt, htmlfmt \- simple text formatters" "" "fmt(1)" 89
.xx "" "waserror, poperror, nexterror, error," "fmterror, silenterror \- exception handling for/" "" "error(2)" 365
.xx "venti/" "/conf, fmtarenas, fmtbloom, fmtindex," "fmtisect, syncindex \- prepare and maintain a" "" "venti-fmt(8)" 961
.xx "" "/fmtrunestrcpy, fmtfdinit, fmtfdflush, fmtstrinit," "fmtstrflush, runefmtstrinit, runefmtstrflush,/" "" "fmtinstall(2)" 385
.xx "fmtfdinit,/" "fmtinstall, dofmt, dorfmt, fmtprint," "fmtvprint, fmtrune, fmtstrcpy, fmtrunestrcpy," "" "fmtinstall(2)" 385
.xx "" "/textsym, file2pc, fileelem, filesym, fileline," "fnbound \- symbol table access functions" "" "symbol(2)" 542
.xx "subfonts" "" "font, subfont \- external format for fonts and" "" "font(6)" 762
.xx "" "cachechars, agefont, loadchar, Subfont," "Fontchar, Font \- font utilities" "" "cachechars(2)" 314
.xx "sopenw, sclose, fflush, setvbuf, setbuf,/" "" "fopen, freopen, fdopen, fileno, fclose, sopenr," "" "fopen(2)" 388
.xx "" "" "fork, rfork \- manipulate process resources" "" "fork(2)" 391
.xx "" "a.out \- object file" "format" "" "a.out(6)" 752
.xx "" "ar \- archive (library) file" "format" "" "ar(6)" 754
.xx "" "\- encode files in Privacy Enhanced Mail (PE)" "format" "pemdecode, pemencode" "pem(8)" 905
.xx "" "users \- file server user list" "format" "" "users(6)" 796
.xx "" "UTF, Unicode, ASCII, rune \- character set and" "format" "" "utf(6)" 797
.xx "" "font, subfont \- external" "format for fonts and subfonts" "" "font(6)" 762
.xx "" "image \- external" "format for images" "" "image(6)" 766
.xx "flashes" "prep, fdisk," "format, mbr \- prepare disks, floppies and" "" "prep(8)" 920
.xx "" "plumb \-" "format of plumb messages and rules" "" "plumb(6)" 785
.xx "" "rsa2pub, rsa2ssh, rsa2x509 \- generate and" "format rsa keys" "rsagen, rsafill, asn12rsa," "rsa(8)" 929
.xx "" "tbl \-" "format tables for nroff or troff" "" "tbl(1)" 231
.xx "" "intro \- introduction to file" "formats" "" "intro(6)" 751
.xx "" "map \- digitized map" "formats" "" "map(6)" 773
.xx "" "vtparsescore, vtscorefmt \- venti data" "formats" "/vtrootpack, vtrootunpack," "venti-fcall(2)" 565
.xx "" "/errfmt \- support for user-defined print" "formats and output routines" "" "fmtinstall(2)" 385
.xx "" "fscanf, scanf, sscanf, vfscanf \- scan" "formatted input" "" "fscanf(2)" 400
.xx "" "vfprintf, vprintf, vsprintf, vsnprintf \- print" "formatted output" "/printf, sprintf, snprintf," "fprintf(2)" 393
.xx "" "runevseprint, runevsmprint \- print" "formatted output" "/vsmprint, runevsnprint," "print(2)" 487
.xx "" "fmt, htmlfmt \- simple text" "formatters" "" "fmt(1)" 89
.xx "" "doctype \- intuit command line for" "formatting a document" "" "doctype(1)" 70
.xx "" "marshal \-" "formatting and sending mail" "" "marshal(1)" 129
.xx "" "htmlroff \- HTML" "formatting and typesetting" "" "htmlroff(1)" 108
.xx "" "htmlroff \- HTML" "formatting and typesetting" "" "htmlroff(6)" 763
.xx "" "troff, nroff, dpost \- text" "formatting and typesetting" "" "troff(1)" 244
.xx "" "mhtml \- macros for" "formatting HTML" "" "mhtml(6)" 774
.xx "" "ms \- macros for" "formatting manuscripts" "" "ms(6)" 777
.xx "" "deroff, delatex \- remove" "formatting requests" "" "deroff(1)" 67
.xx "" "" "fortune \- sample lines from a file" "" "fortune(1)" 90
.xx "" "trampoline \-" "forward incoming calls to another address" "" "trampoline(8)" 953
.xx "" "" "fossil, flchk, flfmt \- archival file server" "" "fossil(4)" 679
.xx "" "" "fossilcons \- fossil console commands" "" "fossilcons(8)" 851
.xx "" "/ciscframe, riscframe, localaddr, symoff," "fpformat, beieee80ftos, beieeesftos,/" "" "debugger(2)" 340
.xx "runesprint, runesnprint, runeseprint,/" "print," "fprint, sprint, snprint, seprint, smprint," "" "print(2)" 487
.xx "vprintf, vsprintf, vsnprintf \- print formatted/" "" "fprintf, printf, sprintf, snprintf, vfprintf," "" "fprintf(2)" 393
.xx "" "/fputc, putc, putchar, ungetc, fgets, gets," "fputs, puts, fread, fwrite \- Stdio input and/" "" "fgetc(2)" 380
.xx "Network Computing (VN)" "vncs, vncv \- remote" "frame buffer server and viewer for Virtual" "" "vnc(1)" 258
.xx "" "crop, iconv \-" "frame, crop, and convert image" "" "crop(1)" 54
.xx "ntruerand, genrandom, prng,/" "rand, lrand," "frand, nrand, lnrand, srand, truerand," "" "rand(2)" 502
.xx "frselect,/" "frinit, frsetrects, frinittick, frclear," "frcharofpt, frptofchar, frinsert, frdelete," "" "frame(2)" 396
.xx "" "/frinsert, frdelete, frselect, frtick, frselectpaint," "frdrawsel, frdrawsel0, frgetmouse \- frames of/" "" "frame(2)" 396
.xx "" "putc, putchar, ungetc, fgets, gets, fputs, puts," "fread, fwrite \- Stdio input and output" "/fputc," "fgetc(2)" 380
.xx "setrealloctag,/" "malloc, mallocalign, mallocz," "free, realloc, calloc, msize, setmalloctag," "" "malloc(2)" 448
.xx "" "/ctlstrdup, ctlprint, deactivate, freectlfont," "freectlimage, initcontrols, namectlfont,/" "" "control(2)" 321
.xx "" "parsehtml, printitems, validitems, freeitems," "freedocinfo, dimenkind, dimenspec, targetid,/" "" "html(2)" 415
.xx "removefid, Req,/" "Fid, Fidpool, allocfidpool," "freefidpool, allocfid, closefid, lookupfid," "" "9pfid(2)" 279
.xx "" "/unlockdisplay, openfont, buildfont," "freefont, Pfmt, Rfmt, strtochan, chantostr,/" "" "graphics(2)" 411
.xx "setalpha,/" "allocimage, allocimagemix," "freeimage, nameimage, namedimage," "" "allocimage(2)" 289
.xx "" "bytesperline, wordsperline \- allocating," "freeing, reading, writing images" "/writeimage," "allocimage(2)" 289
.xx "" "parsehtml, printitems, validitems," "freeitems, freedocinfo, dimenkind,/" "" "html(2)" 415
.xx "deletekey \- integer to data/" "Intmap, allocmap," "freemap, insertkey, caninsertkey, lookupkey," "" "intmap(2)" 433
.xx "" "/creadmemimage, writememimage," "freememimage, memsetchan, loadmemimage,/" "" "memdraw(2)" 452
.xx "" "/allocmemsubfont, openmemsubfont," "freememsubfont, memsubfontwidth,/" "" "memdraw(2)" 452
.xx "" "/reject, netmkaddr, setnetmtpt, getnetconninfo," "freenetconninfo \- make and break network/" "" "dial(2)" 345
.xx "" "/removefid, Req, Reqpool, allocreqpool," "freereqpool, allocreq, closereq, lookupreq,/" "" "9pfid(2)" 279
.xx "" "Screen, allocscreen, publicscreen," "freescreen, allocwindow, bottomwindow,/" "" "window(2)" 576
.xx "uninstallsubfont, subfontname,/" "allocsubfont," "freesubfont, installsubfont, lookupsubfont," "" "subfont(2)" 540
.xx "" "pushtls, tlsClient, tlsServer, initThumbprints," "freeThumbprints, okThumbprint, readcert,/" "" "pushtls(2)" 494
.xx "walkfile, opendirfile,/" "Tree, alloctree," "freetree, File, createfile, closefile, removefile," "" "9pfile(2)" 281
.xx "sopenw, sclose, fflush, setvbuf,/" "fopen," "freopen, fdopen, fileno, fclose, sopenr," "" "fopen(2)" 388
.xx "frequencies" "" "freq \- print histogram of character" "" "freq(1)" 91
.xx "exponent" "" "frexp, ldexp, modf \- split into mantissa and" "" "frexp(2)" 399
.xx "" "frtick, frselectpaint, frdrawsel, frdrawsel0," "frgetmouse \- frames of text" "/frselect," "frame(2)" 396
.xx "frptofchar, frinsert, frdelete, frselect, frtick,/" "" "frinit, frsetrects, frinittick, frclear, frcharofpt," "" "frame(2)" 396
.xx "" "dimenkind, dimenspec, targetid, targetname," "fromStr, toStr \- HTML parser" "/freedocinfo," "html(2)" 415
.xx "" "frinit, frsetrects, frinittick, frclear, frcharofpt," "frptofchar, frinsert, frdelete, frselect, frtick,/" "" "frame(2)" 396
.xx "" "/frptofchar, frinsert, frdelete, frselect, frtick," "frselectpaint, frdrawsel, frdrawsel0,/" "" "frame(2)" 396
.xx "frptofchar, frinsert, frdelete, frselect,/" "frinit," "frsetrects, frinittick, frclear, frcharofpt," "" "frame(2)" 396
.xx "" "/frptofchar, frinsert, frdelete, frselect," "frtick, frselectpaint, frdrawsel, frdrawsel0,/" "" "frame(2)" 396
.xx "" "" "fs \- file server, dump" "" "fs(4)" 682
.xx "" "" "fs \- file system devices" "" "fs(3)" 603
.xx "" "" "fs, exsort \- file server maintenance" "" "fs(8)" 857
.xx "input" "" "fscanf, scanf, sscanf, vfscanf \- scan formatted" "" "fscanf(2)" 400
.xx "" "" "fsconfig \- configuring a file server" "" "fsconfig(8)" 862
.xx "" "/sclose, fflush, setvbuf, setbuf, fgetpos, ftell," "fsetpos, fseek, rewind, feof, ferror, clearerr \-/" "" "fopen(2)" 388
.xx "optionally reboot the system" "" "fshalt, reboot \- halt any local file systems and" "" "fshalt(8)" 866
.xx "dirfwstat, nulldir \- get and put file/" "stat," "fstat, wstat, fwstat, dirstat, dirfstat, dirwstat," "" "stat(2)" 533
.xx "" "ftpfs \- file transfer protocol" "FT) file system" "" "ftpfs(4)" 684
.xx "" "/sclose, fflush, setvbuf, setbuf, fgetpos," "ftell, fsetpos, fseek, rewind, feof, ferror,/" "" "fopen(2)" 388
.xx "" "telnetd, rlogind, rexexec," "ftpd \- Internet remote access daemons" "" "ipserv(8)" 878
.xx "" "" "ftpfs \- file transfer protocol (FT) file system" "" "ftpfs(4)" 684
.xx "" "runetochar, chartorune, runelen, runenlen," "fullrune, utfecpy, utflen, utfnlen, utfrune,/" "" "rune(2)" 514
.xx "negotiate version" "" "fversion \- initialize 9P connection and" "" "fversion(2)" 403
.xx "" "putchar, ungetc, fgets, gets, fputs, puts, fread," "fwrite \- Stdio input and output" "/fputc, putc," "fgetc(2)" 380
.xx "nulldir \- get and put file/" "stat, fstat, wstat," "fwstat, dirstat, dirfstat, dirwstat, dirfwstat," "" "stat(2)" 533
.xx "" "readv, writev, preadv, pwritev \-" "gather read and write" "" "readv(2)" 507
.xx "poly, fillpoly, bezier, bezspline,/" "Image, draw," "gendraw, drawreplxy, drawrepl, replclipr, line," "" "draw(2)" 350
.xx "" "smallprimetest \- prime number" "generation" "/DSAprimes, probably_prime," "prime(2)" 486
.xx "" "prng, fastrand, nfastrand \- random number" "generators" "/ntruerand, genrandom," "rand(2)" 502
.xx "" "opendisk, Disk \-" "generic disk device interface" "" "disk(2)" 349
.xx "" "/closedisplay, getdefont, getwindow," "gengetwindow, flushimage, bufimage,/" "" "graphics(2)" 411
.xx "" "Display, Point, Rectangle, Cursor, initdraw," "geninitdraw, drawerror, initdisplay,/" "" "graphics(2)" 411
.xx "" "/nrand, lnrand, srand, truerand, ntruerand," "genrandom, prng, fastrand, nfastrand \-/" "" "rand(2)" 502
.xx "probably_prime, smallprimetest \-/" "genprime," "gensafeprime, genstrongprime, DSAprimes," "" "prime(2)" 486
.xx "" "move, xform, ixform, persp, look, viewport \-" "Geometric transformations" "/rot, qrot, scale," "matrix(2)" 450
.xx "" "/unusemap, loadmap, attachproc, get1," "get2, get4, get8, put1, put2, put4, put8,/" "" "mach(2)" 445
.xx "" "/pc2line, textseg, line2addr, lookup, findlocal," "getauto, findsym, localsym, globalsym,/" "" "symbol(2)" 542
.xx "function" "" "getcallerpc \- fetch return PC of current" "" "getcallerpc(2)" 404
.xx "gets, fputs, puts, fread, fwrite \-/" "fgetc, getc," "getchar, fputc, putc, putchar, ungetc, fgets," "" "fgetc(2)" 380
.xx "" "/drawerror, initdisplay, closedisplay," "getdefont, getwindow, gengetwindow,/" "" "graphics(2)" 411
.xx "variables" "" "getenv, putenv \- access environment" "" "getenv(2)" 405
.xx "point" "" "getfcr, setfcr, getfsr, setfsr \- control floating" "" "getfcr(2)" 406
.xx "into fields" "" "getfields, gettokens, tokenize \- break a string" "" "getfields(2)" 407
.xx "shell scripts" "" "getflags, usage \- command-line parsing for" "" "getflags(8)" 867
.xx "" "getfcr, setfcr," "getfsr, setfsr \- control floating point" "" "getfcr(2)" 406
.xx "" "calloc, msize, setmalloctag, setrealloctag," "getmalloctag, getrealloctag,/" "/free, realloc," "malloc(2)" 448
.xx "" "" "getmap, colors \- display color map" "" "colors(1)" 46
.xx "hwdraw/" "/freememsubfont, memsubfontwidth," "getmemdefont, memimagestring, iprint," "" "memdraw(2)" 452
.xx "" "/listen, accept, reject, netmkaddr, setnetmtpt," "getnetconninfo, freenetconninfo \- make and/" "" "dial(2)" 345
.xx "" "getpid," "getppid \- get process ids" "" "getpid(2)" 408
.xx "" "/setmalloctag, setrealloctag, getmalloctag," "getrealloctag, malloctopoolblock \- memory/" "" "malloc(2)" 448
.xx "" "initmouse, readmouse, closemouse, moveto," "getrect, drawgetrect, menuhit, setcursor \-/" "" "mouse(2)" 461
.xx "" "/getchar, fputc, putc, putchar, ungetc, fgets," "gets, fputs, puts, fread, fwrite \- Stdio input/" "" "fgetc(2)" 380
.xx "line2addr, lookup, findlocal,/" "syminit," "getsym, symbase, pc2sp, pc2line, textseg," "" "symbol(2)" 542
.xx "fields" "getfields," "gettokens, tokenize \- break a string into" "" "getfields(2)" 407
.xx "" "" "getuser, sysname \- get user or system name" "" "getuser(2)" 409
.xx "" "" "getwd \- get current directory" "" "getwd(2)" 410
.xx "" "/drawerror, initdisplay, closedisplay, getdefont," "getwindow, gengetwindow, flushimage,/" "" "graphics(2)" 411
.xx "interpreter)" "gs \- Aladdin" "Ghostscript (PostScript and PDF language" "" "gs(1)" 98
.xx "toppm, topng, toico \- view and convert/" "jpg," "gif, png, ppm, bmp, v210, yuv, ico, togif," "" "jpg(1)" 111
.xx "" "/lookup, findlocal, getauto, findsym, localsym," "globalsym, textsym, file2pc, fileelem, filesym,/" "" "symbol(2)" 542
.xx "date and time" "ctime, localtime," "gmtime, asctime, tm2sec, timezone \- convert" "" "ctime(2)" 337
.xx "" "mail," "go.fishing \- mail and mailboxes" "" "mail(1)" 126
.xx "" "setjmp, longjmp, notejmp \- non-local" "goto" "" "setjmp(2)" 529
.xx "" "belongs to a country approved of by the US" "government" "ipok \- verify that an IP address" "ipok(8)" 877
.xx "Internet" "ping," "gping, traceroute, hogports \- probe the" "" "ping(8)" 906
.xx "" "gpsfs," "gpsevermore \- GPS time and position service" "" "gpsfs(8)" 868
.xx "" "" "grap \- pic preprocessor for drawing graphs" "" "grap(1)" 94
.xx "" "" "graph \- draw a graph" "" "graph(1)" 96
.xx "" "statusbar \- display a bar" "graph status window" "" "statusbar(8)" 948
.xx "" "gview \- interactive" "graph viewer" "" "gview(1)" 101
.xx "output files" "page \- view FAX, image," "graphic, PostScript, PDF, and typesetter" "" "page(1)" 157
.xx "" "newcontrolset, resizecontrolset \- interactive" "graphical controls" "/namectlimage," "control(2)" 321
.xx "" "runestringwidth, runestringnwidth \-" "graphical size of strings" "/runestringsize," "stringsize(2)" 539
.xx "" "draw \- screen" "graphics" "" "draw(3)" 593
.xx "" "strtochan, chantostr, chantodepth \- interactive" "graphics" "/buildfont, freefont, Pfmt, Rfmt," "graphics(2)" 411
.xx "" "emoveto, esetcursor, Event, Mouse, Menu \-" "graphics events" "/edrawgetrect, emenuhit," "event(2)" 368
.xx "" "plot \-" "graphics filter" "" "plot(1)" 168
.xx "" "_string, ARROW, drawsetdebug \-" "graphics functions PB L" "/runestringnbg," "draw(2)" 350
.xx "" "plot \-" "graphics interface" "" "plot(6)" 783
.xx "" "grap \- pic preprocessor for drawing" "graphs" "" "grap(1)" 94
.xx "" "stats \- display" "graphs of system activity" "" "stats(8)" 946
.xx "network protocols over IP" "ip, esp," "gre, icmp, icmpv6, ipmux, rudp, tcp, udp \-" "" "ip(3)" 606
.xx "" "" "grep \- search a file for a pattern" "" "grep(1)" 97
.xx "" "chgrp \- change file" "group" "" "chgrp(1)" 41
.xx "" "postnote \- send a note to a process or process" "group" "" "postnote(2)" 485
.xx "" "cons \- console, clocks, process/process" "group ids, user, null, reboot, etc." "" "cons(3)" 590
.xx "" "binalloc, bingrow, binfree \-" "grouped memory allocation" "" "bin(2)" 306
.xx "language interpreter)" "" "gs \- Aladdin Ghostscript (PostScript and PDF" "" "gs(1)" 98
.xx "" "/printnetkey, status, enable, disable, authsrv," "guard.srv, debug, wrkey, login, newns, none,/" "" "auth(8)" 833
.xx "" "" "gview \- interactive graph viewer" "" "gview(1)" 101
.xx "uncompress, zip, unzip \- compress and/" "" "gzip, gunzip, bzip2, bunzip2, compress," "" "gzip(1)" 103
.xx "" "/HSPairs, hmydomain, hversion, htmlesc," "halloc, hbodypush, hbuflen, hcheckcontent,/" "" "httpd(2)" 427
.xx "reboot the system" "fshalt, reboot \-" "halt any local file systems and optionally" "" "fshalt(8)" 866
.xx "" "notify, noted, atnotify \-" "handle asynchronous process notification" "" "notify(2)" 473
.xx "" "ecp \- fast copy," "handling errors" "" "ecp(1)" 73
.xx "" "error, fmterror, silenterror \- exception" "handling for threaded programs" "/nexterror," "error(2)" 365
.xx "netmkaddr, setnetmtpt, getnetconninfo,/" "dial," "hangup, announce, listen, accept, reject," "" "dial(2)" 345
.xx "" "intro \- introduction to local" "hardware administration" "" 
.xx "" "uptime \- show how long the system" "has been running" "" "uptime(1)" 251
.xx "" "sha1unpickle \- cryptographically secure" "hashes" "/md5unpickle, sha1pickle," "sechash(2)" 521
.xx "" "/walkfile, opendirfile, readdirfile, closedirfile," "hasperm \- in-memory file hierarchy" "" "9pfile(2)" 281
.xx "and XMODEM file transfer" "con, telnet, rx," "hayes, xms, xmr \- remote login, execution," "" "con(1)" 48
.xx "HFields, Hio, Htmlesc, HttpHead, HttpReq,/" "" "HConnect, HContent, HContents, HETag," "" "httpd(2)" 427
.xx "" "/hbodypush, hbuflen, hcheckcontent, hclose," "hdate2sec, hdatefmt, hfail, hflush, hgetc,/" "" "httpd(2)" 427
.xx "" "leak, kmem, umem \-" "help find memory leaks" "" "leak(1)" 116
.xx "" "xd \-" "hex, octal, decimal, or ASCII dump" "" "xd(1)" 265
.xx "" "HConnect, HContent, HContents, HETag," "HFields, Hio, Htmlesc, HttpHead, HttpReq,/" "" "httpd(2)" 427
.xx "hload,/" "/hclose, hdate2sec, hdatefmt, hfail," "hflush, hgetc, hgethead, hinit, hiserror," "" "httpd(2)" 427
.xx "url" "" "hget \- retrieve a web page corresponding to a" "" "hget(1)" 105
.xx "" "closedirfile, hasperm \- in-memory file" "hierarchy" "/walkfile, opendirfile, readdirfile," "9pfile(2)" 281
.xx "" "walk \- descend a directory" "hierarchy" "" "walk(5)" 750
.xx "" "muldiv, umuldiv \-" "high-precision multiplication and division" "" "muldiv(2)" 467
.xx "" "/HContent, HContents, HETag, HFields," "Hio, Htmlesc, HttpHead, HttpReq, HRange,/" "" "httpd(2)" 427
.xx "" "/hdatefmt, hfail, hflush, hgetc, hgethead, hinit," "hiserror, hload, hlower, hmkcontent,/" "" "httpd(2)" 427
.xx "" "" "histogram \- draw a histogram" "" "histogram(8)" 870
.xx "" "freq \- print" "histogram of character frequencies" "" "freq(1)" 91
.xx "" "prof - accumulate" "histogram of process execution" "" "prof(2)" 491
.xx "" "" "history \- print file names from the dump" "" "history(1)" 106
.xx "" "hflush, hgetc, hgethead, hinit, hiserror, hload," "hlower, hmkcontent, hmkhfields,/" "/hfail," "httpd(2)" 427
.xx "" "/hmac_sha2_384, hmac_sha2_512," "hmac_aes, md5pickle, md5unpickle,/" "" "sechash(2)" 521
.xx "" "/sha2_256, sha2_384, sha2_512, aes, hmac_x," "hmac_md5, hmac_sha1, hmac_sha2_224,/" "" "sechash(2)" 521
.xx "" "hmac_md5, hmac_sha1, hmac_sha2_224," "hmac_sha2_256, hmac_sha2_384,/" "/hmac_x," "sechash(2)" 521
.xx "" "/hmac_sha2_256, hmac_sha2_384," "hmac_sha2_512, hmac_aes, md5pickle,/" "" "sechash(2)" 521
.xx "" "sha2_256, sha2_384, sha2_512, aes," "hmac_x, hmac_md5, hmac_sha1,/" "/sha2_224," "sechash(2)" 521
.xx "" "/hgetc, hgethead, hinit, hiserror, hload, hlower," "hmkcontent, hmkhfields, hmkmimeboundary,/" "" "httpd(2)" 427
.xx "" "/hinit, hiserror, hload, hlower, hmkcontent," "hmkhfields, hmkmimeboundary, hmkspairs,/" "" "httpd(2)" 427
.xx "" "/hmkhfields, hmkmimeboundary, hmkspairs," "hmoved, hokheaders, hparseheaders,/" "" "httpd(2)" 427
.xx "" "Htmlesc, HttpHead, HttpReq, HRange, HSPairs," "hmydomain, hversion, htmlesc, halloc,/" "/Hio," "httpd(2)" 427
.xx "" "/nhgetv, nhgetl, nhgets, hnputv, hnputl," "hnputs, ptclbsum, readipifc \- Internet/" "" "ip(2)" 437
.xx "" "" "hoc \- interactive floating point language" "" "hoc(1)" 107
.xx "" "ping, gping, traceroute," "hogports \- probe the Internet" "" "ping(8)" 906
.xx "" "/hmkmimeboundary, hmkspairs, hmoved," "hokheaders, hparseheaders, hparsequery,/" "" "httpd(2)" 427
.xx "" "keys.who \- biographic information for key" "holders" "" "keys.who(6)" 770
.xx "" "usb \- USB" "Host Controller Interface" "" "usb(3)" 645
.xx "storage device/" "sdahci \- AHCI (Advanced" "Host Controller Interface) SATA (Serial AT)" "" "sdahci(3)" 633
.xx "" "uptime \- show" "how long the system has been running" "" "uptime(1)" 251
.xx "" "keyboard \-" "how to type characters" "" "keyboard(6)" 768
.xx "hprint,/" "/hmkspairs, hmoved, hokheaders," "hparseheaders, hparsequery, hparsereq," "" "httpd(2)" 427
.xx "" "/hmoved, hokheaders, hparseheaders," "hparsequery, hparsereq, hprint, hputc,/" "" "httpd(2)" 427
.xx "" "/HFields, Hio, Htmlesc, HttpHead, HttpReq," "HRange, HSPairs, hmydomain, hversion,/" "" "httpd(2)" 427
.xx "" "/hparsequery, hparsereq, hprint, hputc," "hreadbuf, hredirected, hreqcleanup,/" "" "httpd(2)" 427
.xx "" "/hputc, hreadbuf, hredirected, hreqcleanup," "hrevhfields, hrevspairs, hstrdup, http11,/" "" "httpd(2)" 427
.xx "" "/Hio, Htmlesc, HttpHead, HttpReq, HRange," "HSPairs, hmydomain, hversion, htmlesc,/" "" "httpd(2)" 427
.xx "" "/hreqcleanup, hrevhfields, hrevspairs," "hstrdup, http11, httpfmt, httpunesc,/" "" "httpd(2)" 427
.xx "" "mhtml \- macros for formatting" "HTML" "" "mhtml(6)" 774
.xx "" "\- convert between troff's ms macros and" "html" "ms2html, html2ms" "ms2html(1)" 141
.xx "" "troff2html \- convert troff output into" "HTML" "" "troff2html(1)" 246
.xx "" "htmlroff \-" "HTML formatting and typesetting" "" "htmlroff(1)" 108
.xx "" "htmlroff \-" "HTML formatting and typesetting" "" "htmlroff(6)" 763
.xx "" "targetid, targetname, fromStr, toStr \-" "HTML parser" "/dimenkind, dimenspec," "html(2)" 415
.xx "and html" "ms2html," "html2ms \- convert between troff's ms macros" "" "ms2html(1)" 141
.xx "" "/HRange, HSPairs, hmydomain, hversion," "htmlesc, halloc, hbodypush, hbuflen,/" "" "httpd(2)" 427
.xx "" "/HContent, HContents, HETag, HFields, Hio," "Htmlesc, HttpHead, HttpReq, HRange,/" "" "httpd(2)" 427
.xx "" "fmt," "htmlfmt \- simple text formatters" "" "fmt(1)" 89
.xx "" "" "htmlroff \- HTML formatting and typesetting" "" "htmlroff(1)" 108
.xx "" "" "htmlroff \- HTML formatting and typesetting" "" "htmlroff(6)" 763
.xx "" "webcookies \-" "HTTP cookie manager" "" "webcookies(4)" 728
.xx "" "/hreqcleanup, hrevhfields, hrevspairs, hstrdup," "http11, httpfmt, httpunesc, hunallowed,/" "" "httpd(2)" 427
.xx "HTTP server" "" "httpd, save, imagemap, man2html, webls \-" "" "httpd(8)" 871
.xx "" "" "httpfile \- serve a single web file" "" "httpfile(4)" 686
.xx "" "/hrevhfields, hrevspairs, hstrdup, http11," "httpfmt, httpunesc, hunallowed, hungetc,/" "" "httpd(2)" 427
.xx "" "/HContents, HETag, HFields, Hio, Htmlesc," "HttpHead, HttpReq, HRange, HSPairs,/" "" "httpd(2)" 427
.xx "" "/hrevspairs, hstrdup, http11, httpfmt," "httpunesc, hunallowed, hungetc, hunload,/" "" "httpd(2)" 427
.xx "\-/" "/httpunesc, hunallowed, hungetc, hunload," "hurlfmt, hurlunesc, hvprint, hwrite, hxferenc," "" "httpd(2)" 427
.xx "" "/HttpReq, HRange, HSPairs, hmydomain," "hversion, htmlesc, halloc, hbodypush,/" "" "httpd(2)" 427
.xx "" "/hungetc, hunload, hurlfmt, hurlunesc," "hvprint, hwrite, hxferenc, \- routines for/" "" "httpd(2)" 427
.xx "" "/getmemdefont, memimagestring, iprint," "hwdraw \- drawing routines for/" "" "memdraw(2)" 452
.xx "" "/hungetc, hunload, hurlfmt, hurlunesc, hvprint," "hwrite, hxferenc, \- routines for creating an/" "" "httpd(2)" 427
.xx "" "sinh, cosh, tanh \-" "hyperbolic functions" "" "sinh(2)" 531
.xx "" "" "hypot \- Euclidean distance" "" "hypot(2)" 432
.xx "Interface Association (PCMCI) device" "" "i82365 \- Personal Computer Memory Card" "" "i82365(3)" 605
.xx "" "interface (TWS) and inter-integrated circuit" "I⁲C) interface" "twsi - two-wire serial" "twsi(3)" 643
.xx "protocols over IP" "ip, esp, gre, icmp," "icmpv6, ipmux, rudp, tcp, udp \- network" "" "ip(3)" 606
.xx "convert/" "jpg, gif, png, ppm, bmp, v210, yuv," "ico, togif, toppm, topng, toico \- view and" "" "jpg(1)" 111
.xx "" "mug - convert an image to a face" "icon" "" "mug(1)" 148
.xx "" "crop," "iconv \- frame, crop, and convert image" "" "crop(1)" 54
.xx "" "/ellipse, fillellipse, arc, fillarc, icossin," "icossin2, border, string, stringn, runestring,/" "" "draw(2)" 350
.xx "" "cap \- capabilities for setting the user" "id of processes" "" "cap(3)" 589
.xx "invertmat, xformpoint, xformpointd,/" "" "ident, matmul, matmulr, determinant, adjoint," "" "matrix(2)" 450
.xx "" "pcmcia \-" "identify a PCMCIA card" "" "pcmcia(8)" 904
.xx "" "" "idiff \- interactive diff" "" "idiff(1)" 109
.xx "" "/leieee80ftos, leieeesftos, leieeedftos," "ieeesftos, ieeedftos \- machine-independent/" "" "debugger(2)" 340
.xx "" "" "ike \- IPsec Internet Key Exchange file server" "" "ike(4)" 687
.xx "" "crop, iconv \- frame, crop, and convert" "image" "" "crop(1)" 54
.xx "" "dump9660, mk9660 \- create an ISO-9660 CD" "image" "" "mk9660(8)" 885
.xx "" "" "image \- external format for images" "" "image(6)" 766
.xx "replclipr, line, poly, fillpoly, bezier,/" "" "Image, draw, gendraw, drawreplxy, drawrepl," "" "draw(2)" 350
.xx "" "tweak \- edit" "image files, subfont files, face files, etc." "" "tweak(1)" 247
.xx "typesetter output files" "page \- view FAX," "image, graphic, PostScript, PDF, and" "" "page(1)" 157
.xx "" "mug - convert an" "image to a face icon" "" "mug(1)" 148
.xx "" "httpd, save," "imagemap, man2html, webls \- HTTP server" "" "httpd(8)" 871
.xx "" "\- allocating, freeing, reading, writing" "images" "/bytesperline, wordsperline" "allocimage(2)" 289
.xx "" "image \- external format for" "images" "" "image(6)" 766
.xx "" "\- drawing routines for memory-resident" "images" "/memimagestring, iprint, hwdraw" "memdraw(2)" 452
.xx "" "memltorearn \- windows of memory-resident" "images" "/memltofrontn, memltorear," "memlayer(2)" 456
.xx "" "pop3," "imap4d \- Internet mail servers" "" "pop3(8)" 917
.xx "system" "" "import \- import a name space from a remote" "" "import(4)" 688
.xx "" "trampoline \- forward" "incoming calls to another address" "" "trampoline(8)" 953
.xx "" "/wunlock, rsleep, rwakeup, rwakeupall," "incref, decref \- spin locks, queueing/" "" "lock(2)" 442
.xx "" "/beswal, beswav, leswab, leswal, leswav \-" "independent access to executable files" "" "mach(2)" 445
.xx "" "/leieeesftos, leieeedftos, ieeesftos, ieeedftos \-" "independent debugger functions" "" "debugger(2)" 340
.xx "functions" "NaN," "Inf, isNaN, isInf \- not-a-number and infinity" "" "nan(2)" 468
.xx "" "/deflatezlibblock, inflateinit, inflate, inflatezlib," "inflateblock, inflatezlibblock, flateerr,/" "" "flate(2)" 382
.xx "" "cs, csquery, dns, dnstcp, dnsquery, dnsdebug," "inform \- network database" "/mkdb, mkhosts," "ndb(8)" 893
.xx "" "astro \- print astronomical" "information" "" "astro(7)" 806
.xx "" "arch \- architecture-specific" "information and control" "" "arch(3)" 584
.xx "" "keys.who \- biographic" "information for key holders" "" "keys.who(6)" 770
.xx "" "" "init \- initialize machine upon booting" "" "init(8)" 873
.xx "" "/ctlprint, deactivate, freectlfont, freectlimage," "initcontrols, namectlfont, namectlimage,/" "" "control(2)" 321
.xx "" "Display, Point, Rectangle, Cursor," "initdraw, geninitdraw, drawerror, initdisplay,/" "" "graphics(2)" 411
.xx "" "fversion \-" "initialize 9P connection and negotiate version" "" "fversion(2)" 403
.xx "" "init \-" "initialize machine upon booting" "" "init(8)" 873
.xx "keyboard control" "" "initkeyboard, ctlkeyboard, closekeyboard \-" "" "keyboard(2)" 441
.xx "getrect, drawgetrect, menuhit, setcursor \-/" "" "initmouse, readmouse, closemouse, moveto," "" "mouse(2)" 461
.xx "okThumbprint,/" "pushtls, tlsClient, tlsServer," "initThumbprints, freeThumbprints," "" "pushtls(2)" 494
.xx "" "fscanf, scanf, sscanf, vfscanf \- scan formatted" "input" "" "fscanf(2)" 400
.xx "" "kbin \- external keyboard" "input" "" "kbin(3)" 614
.xx "" "\- preprocess so inclusion commands in troff" "input" "soelim" "soelim(1)" 211
.xx "" "fgets, gets, fputs, puts, fread, fwrite \- Stdio" "input and output" "/putc, putchar, ungetc," "fgetc(2)" 380
.xx "" "Bwrite, Bflush, Bterm, Bbuffered \- buffered" "input/output" "/Bputrune, Bprint, Bvprint," "bio(2)" 309
.xx "" "feof, ferror, clearerr \- standard buffered" "input/output package" "/fseek, rewind," "fopen(2)" 388
.xx "" "stat, wstat \-" "inquire or change file attributes" "" "stat(5)" 747
.xx "avlnext, avlprev, endwalk - AVL/" "mkavltree," "insertavl, lookupavl, deleteavl, avlwalk," "" "avl(2)" 304
.xx "\- integer to data/" "Intmap, allocmap, freemap," "insertkey, caninsertkey, lookupkey, deletekey" "" "intmap(2)" 433
.xx "" "/subpt, mulpt, divpt, rectaddpt, rectsubpt," "insetrect, canonrect, eqpt, eqrect, ptinrect,/" "" "addpt(2)" 286
.xx "uninstallsubfont,/" "allocsubfont, freesubfont," "installsubfont, lookupsubfont," "" "subfont(2)" 540
.xx "" "segflush \- flush" "instruction and data caches" "" "segflush(2)" 527
.xx "" "5i, ki, vi, qi \-" "instruction simulators" "" "vi(1)" 256
.xx "" "pnp \- Plug 'n' Play ISA and PCI" "Interfaces" "" "pnp(3)" 623
.xx "" "twsi - two-wire serial interface (TWS) and" "inter-integrated circuit (I⁲C) interface" "" "twsi(3)" 643
.xx "" "ping, gping, traceroute, hogports \- probe the" "Internet" "" "ping(8)" 906
.xx "" "dhcpd, dhcpleases, rarpd, tftpd \-" "Internet booting" "" "dhcpd(8)" 845
.xx "" "ipconfig, rip, linklocal, ipv6on \-" "Internet configuration and routing" "" "ipconfig(8)" 874
.xx "" "ike \- IPsec" "Internet Key Exchange file server" "" "ike(4)" 687
.xx "" "pop3, imap4d \-" "Internet mail servers" "" "pop3(8)" 917
.xx "" "hnputv, hnputl, hnputs, ptclbsum, readipifc \-" "Internet Protocol addressing" "/nhgetl, nhgets," "ip(2)" 437
.xx "" "telnetd, rlogind, rexexec, ftpd \-" "Internet remote access daemons" "" "ipserv(8)" 878
.xx "" "ascii, unicode \-" "interpret ASCII, Unicode characters" "" "ascii(1)" 25
.xx "" "ktrace \-" "interpret kernel stack dumps" "" "ktrace(1)" 115
.xx "" "objtraverse, isar, nextar, readar \- object file" "interpretation functions" "objtype, readobj," "object(2)" 475
.xx "" "pipe \- create an" "interprocess channel" "" "pipe(2)" 479
.xx "" "pipe \- two-way" "interprocess communication" "" "pipe(3)" 622
.xx "" "plumber \- file system for" "interprocess messaging" "" "plumber(4)" 704
.xx "caninsertkey, lookupkey, deletekey \- integer/" "" "Intmap, allocmap, freemap, insertkey," "" "intmap(2)" 433
.xx "" "intro \-" "introduction to databases" "" "intro(7)" 805
.xx "" "intro \-" "introduction to file formats" "" "intro(6)" 751
.xx "" "intro \-" "introduction to file servers" "" "intro(4)" 651
.xx "" "intro \-" "introduction to library functions" "" "intro(2)" 270
.xx "" "intro \-" "introduction to local hardware administration" "" 
.xx "" "intro \-" "introduction to Plan 9" "" "intro(1)" 1
.xx "" "intro \-" "introduction to system administration" "" "intro(8)" 821
.xx "" "intro \-" "introduction to the Plan 9 devices" "" "intro(3)" 579
.xx "" "intro \-" "introduction to the Plan 9 File Protocol, 9P" "" "intro(5)" 735
.xx "document" "doctype \-" "intuit command line for formatting a" "" "doctype(1)" 70
.xx "" "assert \- check program" "invariants" "" "assert(2)" 296
.xx "" "ident, matmul, matmulr, determinant, adjoint," "invertmat, xformpoint, xformpointd,/" "" "matrix(2)" 450
.xx "" "iostats \- file system to measure" "I/O" "" "iostats(4)" 690
.xx "" "open, create \- prepare a fid for" "I/O on an existing or new file" "" "open(5)" 743
.xx "" "ioopen, ioproc, ioread, ioreadn, iowrite \- slave" "I/O processes for threaded programs" "/iodial," "ioproc(2)" 434
.xx "" "na \- assembler for the Symbios Logic PCI-SCSI" "I/O Processors" "" "na(8)" 892
.xx "" "iounit \- return size of atomic" "I/O unit for file descriptor" "" "iounit(2)" 436
.xx "ioread, ioreadn, iowrite \-/" "closeioproc, iocall," "ioclose, iointerrupt, iodial, ioopen, ioproc," "" "ioproc(2)" 434
.xx "" "" "iostats \- file system to measure I/O" "" "iostats(4)" 690
.xx "descriptor" "" "iounit \- return size of atomic I/O unit for file" "" "iounit(2)" 436
.xx "" "/iodial, ioopen, ioproc, ioread, ioreadn," "iowrite \- slave I/O processes for threaded/" "" "ioproc(2)" 434
.xx "" "rudp, tcp, udp \- network protocols over" "IP" "ip, esp, gre, icmp, icmpv6, ipmux," "ip(3)" 606
.xx "by the US government" "ipok \- verify that an" "IP address belongs to a country approved of" "" "ipok(8)" 877
.xx "" "ipokfs \- terrorist" "IP address file system" "" "ipokfs(4)" 691
.xx "udp \- network protocols over IP" "" "ip, esp, gre, icmp, icmpv6, ipmux, rudp, tcp," "" "ip(3)" 606
.xx "" "/ndbsearch, ndbsnext, ndbgetvalue, ndbfree," "ipattr, ndbgetipaddr, ndbipinfo, csipinfo,/" "" "ndb(2)" 469
.xx "configuration and routing" "" "ipconfig, rip, linklocal, ipv6on \- Internet" "" "ipconfig(8)" 874
.xx "over IP" "ip, esp, gre, icmp, icmpv6," "ipmux, rudp, tcp, udp \- network protocols" "" "ip(3)" 606
.xx "country approved of by the US government" "" "ipok \- verify that an IP address belongs to a" "" "ipok(8)" 877
.xx "" "" "ipokfs \- terrorist IP address file system" "" "ipokfs(4)" 691
.xx "csquery, dns, dnstcp, dnsquery,/" "query," "ipquery, mkhash, mkdb, mkhosts, cs," "" "ndb(8)" 893
.xx "" "/getmemdefont, memimagestring," "iprint, hwdraw \- drawing routines for/" "" "memdraw(2)" 452
.xx "" "ike \-" "IPsec Internet Key Exchange file server" "" "ike(4)" 687
.xx "" "aescbc," "ipso, secstore \- secstore commands" "" "secstore(1)" 203
.xx "" "bridge \-" "IPv4 Ethernet bridge" "" "bridge(3)" 587
.xx "" "and run automatic or manual 6to4 tunnel of" "IPv6 through IPv4" "6in4 - configure" "6in4(8)" 822
.xx "" "ipconfig, rip, linklocal," "ipv6on \- Internet configuration and routing" "" "ipconfig(8)" 874
.xx "" "pnp \- Plug 'n' Play" "ISA and PCI Interfaces" "" "pnp(3)" 623
.xx "isalnum, isspace, ispunct, isprint, isgraph,/" "" "isalpha, isupper, islower, isdigit, isxdigit," "" "ctype(2)" 339
.xx "istitlerune, isupperrune, isdigitrune,/" "" "isalpharune, islowerrune, isspacerune," "" "isalpharune(2)" 440
.xx "functions" "objtype, readobj, objtraverse," "isar, nextar, readar \- object file interpretation" "" "object(2)" 475
.xx "" "/isspace, ispunct, isprint, isgraph, iscntrl," "isascii, toascii, _toupper, _tolower, toupper,/" "" "ctype(2)" 339
.xx "" "/isalnum, isspace, ispunct, isprint, isgraph," "iscntrl, isascii, toascii, _toupper, _tolower,/" "" "ctype(2)" 339
.xx "isprint, isgraph,/" "isalpha, isupper, islower," "isdigit, isxdigit, isalnum, isspace, ispunct," "" "ctype(2)" 339
.xx "" "/isspacerune, istitlerune, isupperrune," "isdigitrune, tolowerrune, totitlerune,/" "" "isalpharune(2)" 440
.xx "" "NaN, Inf, isNaN," "isInf \- not-a-number and infinity functions" "" "nan(2)" 468
.xx "ispunct, isprint, isgraph,/" "isalpha, isupper," "islower, isdigit, isxdigit, isalnum, isspace," "" "ctype(2)" 339
.xx "isupperrune, isdigitrune,/" "isalpharune," "islowerrune, isspacerune, istitlerune," "" "isalpharune(2)" 440
.xx "functions" "NaN, Inf," "isNaN, isInf \- not-a-number and infinity" "" "nan(2)" 468
.xx "" "dump9660, mk9660 \- create an" "ISO-9660 CD image" "" "mk9660(8)" 885
.xx "" "a:, b:, c:, d:, 9fat:, dosmnt, eject \- DOS and" "ISO9660 file systems" "dossrv, 9660srv," "dossrv(4)" 667
.xx "" "/islower, isdigit, isxdigit, isalnum, isspace," "ispunct, isprint, isgraph, iscntrl, isascii,/" "" "ctype(2)" 339
.xx "" "isalpharune, islowerrune, isspacerune," "istitlerune, isupperrune, isdigitrune,/" "" "isalpharune(2)" 440
.xx "" "/maskip, equivip4, equivip6, defmask," "isv4, v4tov6, v6tov4, nhgetv, nhgetl, nhgets,/" "" "ip(2)" 437
.xx "isgraph,/" "isalpha, isupper, islower, isdigit," "isxdigit, isalnum, isspace, ispunct, isprint," "" "ctype(2)" 339
.xx "" "/letomp, mptole, mptoui, uitomp, mptoi," "itomp, uvtomp, mptouv, vtomp, mptov,/" "" "mp(2)" 463
.xx "" "tel," "iwhois \- look in phone book" "" "tel(1)" 236
.xx "" "/popmat, rot, qrot, scale, move, xform," "ixform, persp, look, viewport \- Geometric/" "" "matrix(2)" 450
.xx "" "mnihongo \- macros for typesetting" "Japanese" "" "mnihongo(6)" 775
.xx "" "" "join \- relational database operator" "" "join(1)" 110
.xx "" "flashfs \-" "journalling file system for flash memory" "" "flashfs(4)" 678
.xx "" "mkflashfs \- make a" "journalling file system for flash memory" "" "mkflashfs(8)" 887
.xx "toppm, topng, toico \- view and convert/" "" "jpg, gif, png, ppm, bmp, v210, yuv, ico, togif," "" "jpg(1)" 111
.xx "sudoku \- time wasters" "4s, 5s, festoon," "juggle, life, mahjongg, memo, sokoban," "" "games(1)" 92
.xx "" "" "juke \- music jukebox" "" "juke(7)" 809
.xx "" "audio \- digital audio" "jukebox" "" "audio(7)" 807
.xx "" "0a, 1a, 2a, 5a, 6a, 7a, 8a," "ka, qa, va \- assemblers" "" "2a(1)" 4
.xx "" "leffe, affligem, arend, koninck, kijkuit, doom," "kapellen \- Antwerp Plan 9 servers" "/duvel," 
.xx "Universal Serial Bus/" "audio, ccid, disk, ether," "kb, print, probe, serial, usbeject, usbfat: \-" "" "usb(4)" 722
.xx "" "" "kbin \- external keyboard input" "" "kbin(3)" 614
.xx "" "" "kbmap \- keyboard map" "" "kbmap(3)" 615
.xx "maps and switch between them." "" "kbmap \- show a list of available keyboard" "" "kbmap(1)" 113
.xx "" "0c, 1c, 2c, 5c, 6c, 7c, 8c," "kc, qc, vc \- C compilers" "" "2c(1)" 5
.xx "" "rdbfs \- remote" "kernel debugging file system" "" "rdbfs(4)" 707
.xx "" "mouse, cursor \-" "kernel mouse interface" "" "mouse(3)" 620
.xx "" "kprof \-" "kernel profiling" "" "kprof(3)" 616
.xx "" "ktrace \- interpret" "kernel stack dumps" "" "ktrace(1)" 115
.xx "" "ike \- IPsec Internet" "Key Exchange file server" "" "ike(4)" 687
.xx "" "keys.who \- biographic information for" "key holders" "" "keys.who(6)" 770
.xx "" "securenet \- Digital Pathways SecureNet" "Key remote authentication box" "" "securenet(8)" 940
.xx "" "thumbprint \- public" "key thumbprints" "" "thumbprint(6)" 795
.xx "" "" "keyboard \- how to type characters" "" "keyboard(6)" 768
.xx "" "initkeyboard, ctlkeyboard, closekeyboard \-" "keyboard control" "" "keyboard(2)" 441
.xx "" "kbin \- external" "keyboard input" "" "kbin(3)" 614
.xx "" "kbmap \-" "keyboard map" "" "kbmap(3)" 615
.xx "" "kbmap \- show a list of available" "keyboard maps and switch between them." "" "kbmap(1)" 113
.xx "utilities" "bitsyload, light, pencal," "keyboard, params, prompter \- bitsy-specific" "" "bitsyload(1)" 35
.xx "" "" "keyfs, warning \- authentication database files" "" "keyfs(4)" 692
.xx "" "rsa2ssh, rsa2x509 \- generate and format rsa" "keys" "rsagen, rsafill, asn12rsa, rsa2pub," "rsa(8)" 929
.xx "" "delkey \- delete" "keys from factotum" "" "delkey(1)" 66
.xx "" "/des3ECBencrypt, des3ECBdecrypt," "key_setup, des56to64, des64to56,/" "" "des(2)" 343
.xx "holders" "" "keys.who \- biographic information for key" "" "keys.who(6)" 770
.xx "" "" "kfs \- disk file system" "" "kfs(4)" 694
.xx "" "" "kfscmd, ksync \- kfs administration" "" "kfscmd(8)" 880
.xx "" "5i," "ki, vi, qi \- instruction simulators" "" "vi(1)" 256
.xx "" "delirium, duvel, leffe, affligem, arend, koninck," "kijkuit, doom, kapellen \- Antwerp Plan 9/" "" 
.xx "processes" "" "kill, slay, broke \- print commands to kill" "" "kill(1)" 114
.xx "" "0l, 1l, 2l, 5l, 6l, 7l, 8l," "kl, ql, vl \- loaders" "" "2l(1)" 8
.xx "" "leak," "kmem, umem \- help find memory leaks" "" "leak(1)" 116
.xx "Plan 9/" "delirium, duvel, leffe, affligem, arend," "koninck, kijkuit, doom, kapellen \- Antwerp" "" 
.xx "" "prof, tprof," "kprof \- display profiling data" "" "prof(1)" 173
.xx "" "" "kprof \- kernel profiling" "" "kprof(3)" 616
.xx "" "kfscmd," "ksync \- kfs administration" "" "kfscmd(8)" 880
.xx "" "" "ktrace \- interpret kernel stack dumps" "" "ktrace(1)" 115
.xx "" "ARROW, drawsetdebug \- graphics functions PB" "L" "/runestringbg, runestringnbg, _string," "draw(2)" 350
.xx "" "rio," "label, window, wloc \- window system" "" "rio(1)" 191
.xx "" "abs," "labs \- integer absolute values" "" "abs(2)" 284
.xx "" "wol \- send" "lan Ethernet packet" "" "wol(8)" 966
.xx "" "\- pattern-directed scanning and processing" "language" "awk" "awk(1)" 26
.xx "" "bc \- arbitrary-precision arithmetic" "language" "" "bc(1)" 31
.xx "" "hoc \- interactive floating point" "language" "" "hoc(1)" 107
.xx "" "flag, rfork, shift, wait, whatis, ., ~ \- command" "language" "rc, cd, eval, exec, exit," "rc(1)" 181
.xx "" "gs \- Aladdin Ghostscript (PostScript and PDF" "language interpreter)" "" "gs(1)" 98
.xx "" "cpp \- C" "language preprocessor" "" "cpp(1)" 51
.xx "" "ssl \- SSL record" "layer" "" "ssl(3)" 639
.xx "" "tls \- TLS1 and SSL3 record" "layer" "" "tls(3)" 641
.xx "" "mp3dec \- decode audio MPEG files" "layers 1, 2 and 3)" "" "mp3dec(1)" 138
.xx "" "ls," "lc \- list contents of directory" "" "ls(1)" 124
.xx "" "9load, 9pxeload, 9loadusb, 9loadask," "ld \- PC bootstrap program" "" "9load(8)" 823
.xx "exponent" "frexp," "ldexp, modf \- split into mantissa and" "" "frexp(2)" 399
.xx "" "" "leak, kmem, umem \- help find memory leaks" "" "leak(1)" 116
.xx "kapellen \- Antwerp Plan 9/" "delirium, duvel," "leffe, affligem, arend, koninck, kijkuit, doom," "" 
.xx "" "/beieeedftos, leieee80ftos, leieeesftos," "leieeedftos, ieeesftos, ieeedftos \-/" "" "debugger(2)" 340
.xx "" "" "lens \- interactive screen magnifier" "" "lens(1)" 118
.xx "" "/dot3, cross3, len3, dist3, unit3, midpt3," "lerp3, reflect3, nearseg3, pldist3, vdiv3,/" "" "arith3(2)" 294
.xx "" "/put4, put8, beswab, beswal, beswav, leswab," "leswal, leswav \- machine-independent access/" "" "mach(2)" 445
.xx "" "/strtomp, mpfmt,mptoa, betomp, mptobe," "letomp, mptole, mptoui, uitomp, mptoi,/" "" "mp(2)" 463
.xx "" "ARGEND, ARGC, ARGF, EARGF \- process option" "letters from argv" "ARGBEGIN," "arg(2)" 292
.xx "" "rendezvous \- user" "level process synchronization" "" "rendezvous(2)" 511
.xx "" "semacquire, semrelease \- user" "level semaphores" "" "semacquire(2)" 528
.xx "" "" "lex \- generator of lexical analysis programs" "" "lex(1)" 119
.xx "" "class, subclass, proto, CSP \- USB device driver" "library" "/openep, startdevs, unstall," "usb(2)" 551
.xx "" "usbdirfs, usbfs \- USB device driver file system" "library" "/usbfsdel, usbdirread, usbfsinit," "usbfs(2)" 555
.xx "" "ar \- archive" "library) file format" "" "ar(6)" 754
.xx "" "intro \- introduction to" "library functions" "" "intro(2)" 270
.xx "" "ar \- archive and" "library maintainer" "" "ar(1)" 24
.xx "time wasters" "4s, 5s, festoon, juggle," "life, mahjongg, memo, sokoban, sudoku \-" "" "games(1)" 92
.xx "bitsy-specific utilities" "bitsyload," "light, pencal, keyboard, params, prompter \-" "" "bitsyload(1)" 35
.xx "" "doctype \- intuit command" "line for formatting a document" "" "doctype(1)" 70
.xx "" "getflags, usage \-" "line parsing for shell scripts" "" "getflags(8)" 867
.xx "" "gendraw, drawreplxy, drawrepl, replclipr," "line, poly, fillpoly, bezier, bezspline,/" "/draw," "draw(2)" 350
.xx "" "/getsym, symbase, pc2sp, pc2line, textseg," "line2addr, lookup, findlocal, getauto,/" "" "symbol(2)" 542
.xx "" "comm \- select or reject" "lines common to two sorted files" "" "comm(1)" 47
.xx "" "fortune \- sample" "lines from a file" "" "fortune(1)" 90
.xx "" "uniq \- report repeated" "lines in a file" "" "uniq(1)" 249
.xx "" "look \- find" "lines in a sorted list" "" "look(1)" 121
.xx "" "loopback \- network" "link simulation" "" "loopback(3)" 617
.xx "routing" "ipconfig, rip," "linklocal, ipv6on \- Internet configuration and" "" "ipconfig(8)" 874
.xx "" "look \- find lines in a sorted" "list" "" "look(1)" 121
.xx "" "ls, lc \-" "list contents of directory" "" "ls(1)" 124
.xx "" "filter," "list, deliver, token, vf \- filtering mail" "" "filter(1)" 87
.xx "" "users \- file server user" "list format" "" "users(6)" 796
.xx "between them." "kbmap \- show a" "list of available keyboard maps and switch" "" "kbmap(1)" 113
.xx "" "nm \- name" "list (symbol table)" "" "nm(1)" 154
.xx "getnetconninfo,/" "dial, hangup, announce," "listen, accept, reject, netmkaddr, setnetmtpt," "" "dial(2)" 345
.xx "tcp22, tcp23, tcp25, tcp53, tcp110, tcp113,/" "" "listen, listen1, tcp7, tcp9, tcp19, tcp21," "" "listen(8)" 882
.xx "" "smtpd \- SMTP" "listener configuration" "" "smtpd(6)" 791
.xx "" "/dirread9p, emalloc9p, erealloc9p, estrdup9p," "listensrv, postfd, postmountsrv, readbuf,/" "" "9p(2)" 273
.xx "" "rdproto \- parse and process a proto file" "listing" "" "proto(2)" 492
.xx "" "ml, mlmgr, mlowner \- unmoderated mailing" "lists" "" "mlmgr(1)" 137
.xx "" "segment \- long" "lived memory segments" "" "segment(3)" 637
.xx "" "" "lnfs \- long name file system" "" "lnfs(4)" 695
.xx "genrandom, prng,/" "rand, lrand, frand, nrand," "lnrand, srand, truerand, ntruerand," "" "rand(2)" 502
.xx "" "dynloadgen, dynobjfree, dyntabsize \-" "load object file dynamically" "/dynloadfd," "dynld(2)" 359
.xx "utilities" "cachechars, agefont," "loadchar, Subfont, Fontchar, Font \- font" "" "cachechars(2)" 314
.xx "" "/closedev, configdev, devctl, finddevs," "loaddevstr, matchdevcsp, opendev,/" "" "usb(2)" 551
.xx "" "0l, 1l, 2l, 5l, 6l, 7l, 8l, kl, ql, vl \-" "loaders" "" "2l(1)" 8
.xx "" "/nameimage, namedimage, setalpha," "loadimage, cloadimage, unloadimage,/" "" "allocimage(2)" 289
.xx "operations" "ainc, adec, cas, casv, casp," "loadlink, storecond, _tas \- atomic RMW" "" "atom(2)" 298
.xx "put1,/" "/newmap, setmap, findseg, unusemap," "loadmap, attachproc, get1, get2, get4, get8," "" "mach(2)" 445
.xx "" "/writememimage, freememimage, memsetchan," "loadmemimage, cloadmemimage,/" "" "memdraw(2)" 452
.xx "" "cisctrace, risctrace, ciscframe, riscframe," "localaddr, symoff, fpformat, beieee80ftos,/" "" "debugger(2)" 340
.xx "" "/line2addr, lookup, findlocal, getauto, findsym," "localsym, globalsym, textsym, file2pc,/" "" "symbol(2)" 542
.xx "\- convert date and time" "ctime," "localtime, gmtime, asctime, tm2sec, timezone" "" "ctime(2)" 337
.xx "" "" "lock \- run a command under lock" "" "lock(1)" 120
.xx "" "/gengetwindow, flushimage, bufimage," "lockdisplay, unlockdisplay, openfont,/" "" "graphics(2)" 411
.xx "" "rwakeup, rwakeupall, incref, decref \- spin" "locks, queueing rendezvous locks,/" "/rsleep," "lock(2)" 442
.xx "logarithm, power, square root" "exp, log," "log10, pow, pow10, sqrt \- exponential," "" "exp(2)" 374
.xx "" "na \- assembler for the Symbios" "Logic PCI-SCSI I/O Processors" "" "na(8)" 892
.xx "" "ssh, sshnet, scp, sshserve \- secure" "login and file copy from/to Unix or Plan 9" "" "ssh(1)" 219
.xx "" "con, telnet, rx, hayes, xms, xmr \- remote" "login, execution, and XMODEM file transfer" "" "con(1)" 48
.xx "" "/disable, authsrv, guard.srv, debug, wrkey," "login, newns, none, as \- maintain or query/" "" "auth(8)" 833
.xx "auth_allocrpc,/" "amount, newns, addns," "login, noworld, auth_proxy, fauth_proxy," "" "auth(2)" 299
.xx "" "vtlogremove, vtlogopen, ventilogging \- Venti" "logs" "/vtlognames, vtlogopen, vtlogprint," "venti-log(2)" 569
.xx "" "setjmp," "longjmp, notejmp \- non-local goto" "" "setjmp(2)" 529
.xx "" "" "look \- find lines in a sorted list" "" "look(1)" 121
.xx "" "tel, iwhois \-" "look in phone book" "" "tel(1)" 236
.xx "bridging-and-tunnelling clients" "findviaduct \-" "look up data about Viaduct" "" "findviaduct(8)" 850
.xx "" "/rot, qrot, scale, move, xform, ixform, persp," "look, viewport \- Geometric transformations" "" "matrix(2)" 450
.xx "manual" "man," "lookman, sig \- print or find pages of this" "" "man(1)" 128
.xx "" "/symbase, pc2sp, pc2line, textseg, line2addr," "lookup, findlocal, getauto, findsym, localsym,/" "" "symbol(2)" 542
.xx "endwalk - AVL tree/" "mkavltree, insertavl," "lookupavl, deleteavl, avlwalk, avlnext, avlprev," "" "avl(2)" 304
.xx "" "Cmdbuf, parsecmd, respondcmderror," "lookupcmd \- control message parsing" "" "9pcmdbuf(2)" 278
.xx "" "/allocfidpool, freefidpool, allocfid, closefid," "lookupfid, removefid, Req, Reqpool,/" "" "9pfid(2)" 279
.xx "" "/allocmap, freemap, insertkey, caninsertkey," "lookupkey, deletekey \- integer to data/" "" "intmap(2)" 433
.xx "" "/allocreqpool, freereqpool, allocreq, closereq," "lookupreq, removereq \- 9P fid, request/" "" "9pfid(2)" 279
.xx "" "allocsubfont, freesubfont, installsubfont," "lookupsubfont, uninstallsubfont,/" "" "subfont(2)" 540
.xx "" "" "loopback \- network link simulation" "" "loopback(3)" 617
.xx "" "reboot \- reboot the system upon" "loss of remote file server connection" "" "reboot(8)" 926
.xx "" "" "lp \- PostScript preprocessors" "" "lp(8)" 884
.xx "" "" "lp \- printer output" "" "lp(1)" 122
.xx "" "" "lpt \- parallel port interface for PC's" "" "lpt(3)" 618
.xx "ntruerand, genrandom, prng, fastrand,/" "rand," "lrand, frand, nrand, lnrand, srand, truerand," "" "rand(2)" 502
.xx "" "" "ls, lc \- list contents of directory" "" "ls(1)" 124
.xx "Spam, Reply, Send, Post,/" "Msgs, mail2fs," "M, Mg, mspool, mailplumb, msgs, Arch," "" "msgs(1)" 142
.xx "findseg, unusemap, loadmap,/" "crackhdr," "machbytype, machbyname, newmap, setmap," "" "mach(2)" 445
.xx "" "who, whois \- who is using the" "machine" "" "who(1)" 263
.xx "" "init \- initialize" "machine upon booting" "" "init(8)" 873
.xx "files" "/beswal, beswav, leswab, leswal, leswav \-" "machine-independent access to executable" "" "mach(2)" 445
.xx "" "/leieeesftos, leieeedftos, ieeesftos, ieeedftos \-" "machine-independent debugger functions" "" "debugger(2)" 340
.xx "" "emacs \- editor" "macros" "" "emacs(1)" 78
.xx "" "mpictures \- picture inclusion" "macros" "" "mpictures(6)" 776
.xx "" "html2ms \- convert between troff's ms" "macros and html" "ms2html," "ms2html(1)" 141
.xx "" "mhtml \-" "macros for formatting HTML" "" "mhtml(6)" 774
.xx "" "ms \-" "macros for formatting manuscripts" "" "ms(6)" 777
.xx "" "mnihongo \-" "macros for typesetting Japanese" "" "mnihongo(6)" 775
.xx "" "man \-" "macros to typeset manual" "" "man(6)" 771
.xx "" "lens \- interactive screen" "magnifier" "" "lens(1)" 118
.xx "wasters" "4s, 5s, festoon, juggle, life," "mahjongg, memo, sokoban, sudoku \- time" "" "games(1)" 92
.xx "" "filter, list, deliver, token, vf \- filtering" "mail" "" "filter(1)" 87
.xx "" "marshal \- formatting and sending" "mail" "" "marshal(1)" 129
.xx "" "nedmail \- reading" "mail" "" "nedmail(1)" 149
.xx "" "ratfs \-" "mail address ratification file system" "" "ratfs(4)" 706
.xx "" "aliasmail \- expand system wide" "mail aliases" "" "aliasmail(8)" 828
.xx "" "upasfs, startupasfs \-" "mail file server" "" "upasfs(4)" 720
.xx "" "" "mail, go.fishing \- mail and mailboxes" "" "mail(1)" 126
.xx "" "pemencode \- encode files in Privacy Enhanced" "Mail (PE) format" "pemdecode," "pem(8)" 905
.xx "" "Reply, Send, Post, Delmesg, Save \- file based" "mail reader" "/mailplumb, msgs, Arch, Spam," "msgs(1)" 142
.xx "" "rewrite \-" "mail rewrite rules" "" "rewrite(6)" 790
.xx "" "send \-" "mail routing and delivery" "" "send(8)" 941
.xx "" "pop3, imap4d \- Internet" "mail servers" "" "pop3(8)" 917
.xx "" "mailcmd \-" "mail the output of a failed command" "" "mailcmd(1)" 127
.xx "" "smtp, smtpd \-" "mail transport" "" "smtp(8)" 942
.xx "Arch, Spam, Reply, Send, Post,/" "Msgs," "mail2fs, M, Mg, mspool, mailplumb, msgs," "" "msgs(1)" 142
.xx "" "faces, seemail, vwhois \-" "mailbox interface" "" "faces(1)" 83
.xx "" "mail, go.fishing \- mail and" "mailboxes" "" "mail(1)" 126
.xx "command" "" "mailcmd \- mail the output of a failed" "" "mailcmd(1)" 127
.xx "" "ml, mlmgr, mlowner \- unmoderated" "mailing lists" "" "mlmgr(1)" 137
.xx "Post,/" "Msgs, mail2fs, M, Mg, mspool," "mailplumb, msgs, Arch, Spam, Reply, Send," "" "msgs(1)" 142
.xx "" "/chanfree, chaninit, chanclosing, chanprint," "mainstacksize, proccreate, procdata,/" "" "thread(2)" 545
.xx "" "ar \- archive and library" "maintainer" "" "ar(1)" 24
.xx "" "fs, exsort \- file server" "maintenance" "" "fs(8)" 857
.xx "" "mksacfs \-" "make a compressed file system" "" "mksacfs(8)" 890
.xx "" "mkpaqfs \-" "make a compressed read-only file system" "" "mkpaqfs(8)" 889
.xx "" "mkdir \-" "make a directory" "" "mkdir(1)" 136
.xx "memory" "mkflashfs \-" "make a journalling file system for flash" "" "mkflashfs(8)" 887
.xx "" "mktemp \-" "make a unique file name" "" "mktemp(2)" 460
.xx "" "/setnetmtpt, getnetconninfo, freenetconninfo \-" "make and break network connections" "" "dial(2)" 345
.xx "" "mk, membername \- maintain" "make) related files" "" "mk(1)" 131
.xx "" "/setrealloctag, getmalloctag, getrealloctag," "malloctopoolblock \- memory allocator" "" "malloc(2)" 448
.xx "setmalloctag,/" "malloc, mallocalign," "mallocz, free, realloc, calloc, msize," "" "malloc(2)" 448
.xx "" "" "man \- macros to typeset manual" "" "man(6)" 771
.xx "this manual" "" "man, lookman, sig \- print or find pages of" "" "man(1)" 128
.xx "" "httpd, save, imagemap," "man2html, webls \- HTTP server" "" "httpd(8)" 871
.xx "" "privfree \- per-process private storage" "management" "privalloc," "privalloc(2)" 490
.xx "" "pull, push, scan \- client-server replica" "management" "changes," "replica(1)" 187
.xx "" "updatedb \- simple client-server replica" "management" "/applylog, compactdb," "replica(8)" 927
.xx "" "threadwaitchan, yield \- thread and proc" "management" "/threadsetgrp, threadsetname," "thread(2)" 545
.xx "" "topnwindows, originwindow \- window" "management" "/bottomnwindows, topwindow," "window(2)" 576
.xx "" "timerrecall, recvt, sendt \- worker thread" "management" "/timerdispatch," "worker(2)" 578
.xx "" "apm \- Advanced Power" "Management 1.2 BIOS interface" "" "apm(3)" 583
.xx "" "apm \- Advanced Power" "Management 1.2 BIOS interface" "" "apm(8)" 830
.xx "" "qer, runq \- queue" "management for spooled files" "" "qer(8)" 924
.xx "" "poolblockcheck, pooldump \- general memory" "management routines" "/poolcheck," "pool(2)" 482
.xx "" "webcookies \- HTTP cookie" "manager" "" "webcookies(4)" 728
.xx "" "strsubfontwidth, mkfont \- subfont" "manipulation" "/writesubfont, stringsubfont," "subfont(2)" 540
.xx "" "frexp, ldexp, modf \- split into" "mantissa and exponent" "" "frexp(2)" 399
.xx "" "man, lookman, sig \- print or find pages of this" "manual" "" "man(1)" 128
.xx "" "man \- macros to typeset" "manual" "" "man(6)" 771
.xx "" "6in4 - configure and run automatic or" "manual 6to4 tunnel of IPv6 through IPv4" "" "6in4(8)" 822
.xx "" "ms \- macros for formatting" "manuscripts" "" "ms(6)" 777
.xx "" "getmap, colors \- display color" "map" "" "colors(1)" 46
.xx "" "kbmap \- keyboard" "map" "" "kbmap(3)" 615
.xx "" "readcolmap, writecolmap \- access display color" "map" "RGB," "readcolmap(2)" 506
.xx "" "" "map \- digitized map formats" "" "map(6)" 773
.xx "" "map," "mapdemo \- draw maps on various projections" "" "map(7)" 812
.xx "" "cmap2rgba, rgb2cmap \- colors and color" "maps" "cmap2rgb," "color(2)" 319
.xx "" "deletekey \- integer to data structure" "maps" "/insertkey, caninsertkey, lookupkey," "intmap(2)" 433
.xx "" "kbmap \- show a list of available keyboard" "maps and switch between them." "" "kbmap(1)" 113
.xx "" "map, mapdemo \- draw" "maps on various projections" "" "map(7)" 812
.xx "" "segattach, segdetach, segfree \-" "map/unmap a segment in virtual memory" "" "segattach(2)" 524
.xx "" "" "marshal \- formatting and sending mail" "" "marshal(1)" 129
.xx "v4tov6,/" "/parseether, myipaddr, myetheraddr," "maskip, equivip4, equivip6, defmask, isv4," "" "ip(2)" 437
.xx "" "/configdev, devctl, finddevs, loaddevstr," "matchdevcsp, opendev, opendevdata,/" "" "usb(2)" 551
.xx "" "eqn \- typeset" "mathematics" "" "eqn(1)" 79
.xx "xformpoint, xformpointd,/" "ident, matmul," "matmulr, determinant, adjoint, invertmat," "" "matrix(2)" 450
.xx "" "prep, fdisk, format," "mbr \- prepare disks, floppies and flashes" "" "prep(8)" 920
.xx "" "" "mc \- multicolumn print" "" "mc(1)" 130
.xx "sha2_384, sha2_512, aes, hmac_x,/" "" "md4, md5, sha1, sha2_224, sha2_256," "" "sechash(2)" 521
.xx "sha2_512, aes, hmac_x, hmac_md5,/" "md4," "md5, sha1, sha2_224, sha2_256, sha2_384," "" "sechash(2)" 521
.xx "" "/hmac_sha2_384, hmac_sha2_512, hmac_aes," "md5pickle, md5unpickle, sha1pickle,/" "" "sechash(2)" 521
.xx "a file" "sum," "md5sum, sha1sum \- sum and count blocks in" "" "sum(1)" 225
.xx "" "/hmac_sha2_512, hmac_aes, md5pickle," "md5unpickle, sha1pickle, sha1unpickle \-/" "" "sechash(2)" 521
.xx "" "iostats \- file system to" "measure I/O" "" "iostats(4)" 690
.xx "" "rtcp, stcp \-" "measure TCP bandwidth" "" "rtcp(8)" 931
.xx "" "/unloadmemimage, memfillcolor," "memarc, mempoly, memellipse, memfillpoly,/" "" "memdraw(2)" 452
.xx "" "mk," "membername \- maintain (make) related files" "" "mk(1)" 131
.xx "memset \- memory operations" "memccpy," "memchr, memcmp, memcpy, memmove," "" "memory(2)" 459
.xx "wordaddr, byteaddr,/" "Memimage," "Memdata, Memdrawparam, memimageinit," "" "memdraw(2)" 452
.xx "byteaddr,/" "Memimage, Memdata," "Memdrawparam, memimageinit, wordaddr," "" "memdraw(2)" 452
.xx "" "/memfillcolor, memarc, mempoly," "memellipse, memfillpoly, memimageline,/" "" "memdraw(2)" 452
.xx "memimageinit, wordaddr, byteaddr,/" "" "Memimage, Memdata, Memdrawparam," "" "memdraw(2)" 452
.xx "" "/memellipse, memfillpoly, memimageline," "memimagedraw, drawclip, memlinebbox,/" "" "memdraw(2)" 452
.xx "" "Memimage, Memdata, Memdrawparam," "memimageinit, wordaddr, byteaddr,/" "" "memdraw(2)" 452
.xx "" "/memarc, mempoly, memellipse, memfillpoly," "memimageline, memimagedraw, drawclip,/" "" "memdraw(2)" 452
.xx "" "/memimageinit, wordaddr, byteaddr," "memimagemove, allocmemimage,/" "" "memdraw(2)" 452
.xx "routines/" "/memsubfontwidth, getmemdefont," "memimagestring, iprint, hwdraw \- drawing" "" "memdraw(2)" 452
.xx "memlfree, memlhide, memline,/" "memdraw," "memlalloc, memldelete, memlexpose," "" "memlayer(2)" 456
.xx "" "/memimagedraw, drawclip, memlinebbox," "memlineendsize, allocmemsubfont,/" "" "memdraw(2)" 452
.xx "" "/memlexpose, memlfree, memlhide, memline," "memlnorefresh, memload, memunload,/" "" "memlayer(2)" 456
.xx "" "/memload, memunload, memlorigin," "memlsetrefresh, memltofront, memltofrontn,/" "" "memlayer(2)" 456
.xx "" "/memlsetrefresh, memltofront, memltofrontn," "memltorear, memltorearn \- windows of/" "" "memlayer(2)" 456
.xx "" "memccpy, memchr, memcmp, memcpy," "memmove, memset \- memory operations" "" "memory(2)" 459
.xx "" "4s, 5s, festoon, juggle, life, mahjongg," "memo, sokoban, sudoku \- time wasters" "" "games(1)" 92
.xx "" "flash \- flash" "memory" "" "flash(3)" 600
.xx "" "flashfs \- journalling file system for flash" "memory" "" "flashfs(4)" 678
.xx "" "\- make a journalling file system for flash" "memory" "mkflashfs" "mkflashfs(8)" 887
.xx "" "segfree \- map/unmap a segment in virtual" "memory" "segattach, segdetach," "segattach(2)" 524
.xx "" "binalloc, bingrow, binfree \- grouped" "memory allocation" "" "bin(2)" 306
.xx "" "brk, sbrk \- change" "memory allocation" "" "brk(2)" 313
.xx "" "segbrk \- change" "memory allocation" "" "segbrk(2)" 526
.xx "" "getrealloctag, malloctopoolblock \-" "memory allocator" "/getmalloctag," "malloc(2)" 448
.xx "" "vtrealloc, vtstrdup, vtfree \- error-checking" "memory allocators" "/vtmalloc, vtmallocz," "venti-mem(2)" 570
.xx "device" "i82365 \- Personal Computer" "Memory Card Interface Association (PCMCI)" "" "i82365(3)" 605
.xx "" "opendirfile, readdirfile, closedirfile, hasperm \-" "memory file hierarchy" "/removefile, walkfile," "9pfile(2)" 281
.xx "" "ramfs \-" "memory file system" "" "ramfs(4)" 705
.xx "" "leak, kmem, umem \- help find" "memory leaks" "" "leak(1)" 116
.xx "" "poolblockcheck, pooldump \- general" "memory management routines" "/poolcheck," "pool(2)" 482
.xx "" "memcmp, memcpy, memmove, memset \-" "memory operations" "memccpy, memchr," "memory(2)" 459
.xx "" "segment \- long lived" "memory segments" "" "segment(3)" 637
.xx "" "iprint, hwdraw \- drawing routines for" "memory-resident images" "/memimagestring," "memdraw(2)" 452
.xx "" "memltorear, memltorearn \- windows of" "memory-resident images" "/memltofrontn," "memlayer(2)" 456
.xx "" "/unloadmemimage, memfillcolor, memarc," "mempoly, memellipse, memfillpoly,/" "" "memdraw(2)" 452
.xx "" "memchr, memcmp, memcpy, memmove," "memset \- memory operations" "memccpy," "memory(2)" 459
.xx "" "/writememimage, freememimage," "memsetchan, loadmemimage,/" "" "memdraw(2)" 452
.xx "" "/openmemsubfont, freememsubfont," "memsubfontwidth, getmemdefont,/" "" "memdraw(2)" 452
.xx "" "/memline, memlnorefresh, memload," "memunload, memlorigin, memlsetrefresh,/" "" "memlayer(2)" 456
.xx "" "emenuhit, emoveto, esetcursor, Event, Mouse," "Menu \- graphics events" "/edrawgetrect," "event(2)" 368
.xx "" "/closemouse, moveto, getrect, drawgetrect," "menuhit, setcursor \- mouse control" "" "mouse(2)" 461
.xx "" "sort \- sort and/or" "merge files" "" "sort(1)" 212
.xx "" "flush \- abort a" "message" "" "flush(5)" 742
.xx "" "respondcmderror, lookupcmd \- control" "message parsing" "Cmdbuf, parsecmd," "9pcmdbuf(2)" 278
.xx "" "plumb \- send" "message to plumber" "" "plumb(1)" 169
.xx "" "perror, syslog, sysfatal \- system error" "messages" "" "perror(2)" 478
.xx "" "plumbunpackattr, Plumbmsg \- plumb" "messages" "/plumbunpackpartial," "plumb(2)" 480
.xx "" "plumb \- format of plumb" "messages and rules" "" "plumb(6)" 785
.xx "" "attach, auth \-" "messages to establish a connection" "" "attach(5)" 739
.xx "" "plumber \- file system for interprocess" "messaging" "" "plumber(4)" 704
.xx "Reply, Send, Post,/" "Msgs, mail2fs, M," "Mg, mspool, mailplumb, msgs, Arch, Spam," "" "msgs(1)" 142
.xx "" "" "mhtml \- macros for formatting HTML" "" "mhtml(6)" 774
.xx "" "msexceltables \- extract printable text from" "Microsoft documents" "/olefs, mswordstrings," "doc2txt(1)" 69
.xx "" "cifs -" "Microsoft™ Windows network filesystem client" "" "cifs(4)" 659
.xx "" "/closept3, dot3, cross3, len3, dist3, unit3," "midpt3, lerp3, reflect3, nearseg3, pldist3,/" "" "arith3(2)" 294
.xx "" "tagrd \- plumb a" "Mifare Ultralight tag" "" "tagrd(1)" 227
.xx "files" "" "mk, membername \- maintain (make) related" "" "mk(1)" 131
.xx "" "dump9660," "mk9660 \- create an ISO-9660 CD image" "" "mk9660(8)" 885
.xx "avlwalk, avlnext, avlprev, endwalk - AVL tree/" "" "mkavltree, insertavl, lookupavl, deleteavl," "" "avl(2)" 304
.xx "" "/inflateblock, inflatezlibblock, flateerr," "mkcrctab, blockcrc, adler32 \- deflate/" "" "flate(2)" 382
.xx "dnsquery,/" "query, ipquery, mkhash," "mkdb, mkhosts, cs, csquery, dns, dnstcp," "" "ndb(8)" 893
.xx "" "" "mkdir \- make a directory" "" "mkdir(1)" 136
.xx "" "mkfs," "mkext \- archive or update a file system" "" "mkfs(8)" 888
.xx "flash memory" "" "mkflashfs \- make a journalling file system for" "" "mkflashfs(8)" 887
.xx "" "/writesubfont, stringsubfont, strsubfontwidth," "mkfont \- subfont manipulation" "" "subfont(2)" 540
.xx "" "" "mkfs, mkext \- archive or update a file system" "" "mkfs(8)" 888
.xx "" "archfs \- mount" "mkfs-style archive" "" "archfs(4)" 655
.xx "dnsdebug,/" "query, ipquery, mkhash, mkdb," "mkhosts, cs, csquery, dns, dnstcp, dnsquery," "" "ndb(8)" 893
.xx "system" "" "mkpaqfs \- make a compressed read-only file" "" "mkpaqfs(8)" 889
.xx "" "" "mksacfs \- make a compressed file system" "" "mksacfs(8)" 890
.xx "" "" "mktemp \- make a unique file name" "" "mktemp(2)" 460
.xx "" "ml," "mlmgr, mlowner \- unmoderated mailing lists" "" "mlmgr(1)" 137
.xx "" "" "mnihongo \- macros for typesetting Japanese" "" "mnihongo(6)" 775
.xx "" "" "mnt \- attach to 9P servers" "" "mnt(3)" 619
.xx "points for file systems" "" "mntgen \- automatically generate mount" "" "mntgen(4)" 696
.xx "" "chmod \- change" "mode" "" "chmod(1)" 42
.xx "" "spin - verification tool for" "models of concurrent systems" "" "spin(1)" 215
.xx "" "frexp, ldexp," "modf \- split into mantissa and exponent" "" "frexp(2)" 399
.xx "" "touch \- set" "modification date of a file" "" "touch(1)" 241
.xx "" "mtime \- print file" "modification time" "" "mtime(1)" 147
.xx "" "vgadb \- VGA controller and" "monitor database" "" "vgadb(6)" 802
.xx "" "winwatch \-" "monitor rio windows" "" "winwatch(1)" 264
.xx "" "cpiofs, tapfs, tarfs, tpfs, v6fs, v10fs, zipfs \-" "mount archival file systems" "32vfs," "tapefs(4)" 715
.xx "" "archfs \-" "mount mkfs-style archive" "" "archfs(4)" 655
.xx "" "stub \- provide" "mount point stubs" "" "stub(8)" 949
.xx "" "mntgen \- automatically generate" "mount points for file systems" "" "mntgen(4)" 696
.xx "" "snap, snapfs \- create and" "mount process snapshots" "" "snap(4)" 712
.xx "" "bind," "mount, unmount \- change name space" "" "bind(1)" 33
.xx "" "bind," "mount, unmount \- change name space" "" "bind(2)" 307
.xx "a port" "" "mouse, aux/accupoint \- configure a mouse to" "" "mouse(8)" 891
.xx "" "getrect, drawgetrect, menuhit, setcursor \-" "mouse control" "/closemouse, moveto," "mouse(2)" 461
.xx "" "" "mouse, cursor \- kernel mouse interface" "" "mouse(3)" 620
.xx "" "/emenuhit, emoveto, esetcursor, Event," "Mouse, Menu \- graphics events" "" "event(2)" 368
.xx "" "aux/mouse, aux/accupoint \- configure a" "mouse to a port" "" "mouse(8)" 891
.xx "" "cp, fcp, mv \- copy," "move files" "" "cp(1)" 50
.xx "" "/xformplane, pushmat, popmat, rot, qrot, scale," "move, xform, ixform, persp, look, viewport \-/" "" "matrix(2)" 450
.xx "" "initmouse, readmouse, closemouse," "moveto, getrect, drawgetrect, menuhit,/" "" "mouse(2)" 461
.xx "2 and 3)" "" "mp3dec \- decode audio MPEG files (layers 1," "" "mp3dec(1)" 138
.xx "" "" "mp3enc \- create mp3 audio files" "" "mp3enc(1)" 139
.xx "" "/uvtomp, mptouv, vtomp, mptov, mpdigdiv," "mpadd, mpsub, mpleft, mpright, mpmul,/" "" "mp(2)" 463
.xx "" "/mpnew, mpfree, mpbits, mpnorm, mpcopy," "mpassign, mprand, strtomp, mpfmt,mptoa,/" "" "mp(2)" 463
.xx "" "/mpright, mpmul, mpexp, mpmod, mpdiv," "mpcmp, mpextendedgcd, mpinvert, mpsignif,/" "" "mp(2)" 463
.xx "" "/mpnew, mpfree, mpbits, mpnorm," "mpcopy, mpassign, mprand, strtomp,/" "" "mp(2)" 463
.xx "" "/mptoi, itomp, uvtomp, mptouv, vtomp, mptov," "mpdigdiv, mpadd, mpsub, mpleft, mpright,/" "" "mp(2)" 463
.xx "" "/mpleft, mpright, mpmul, mpexp, mpmod," "mpdiv, mpcmp, mpextendedgcd, mpinvert,/" "" "mp(2)" 463
.xx "" "mp3dec \- decode audio" "MPEG files (layers 1, 2 and 3)" "" "mp3dec(1)" 138
.xx "" "mpadd, mpsub, mpleft, mpright, mpmul," "mpexp, mpmod, mpdiv, mpcmp,/" "/mpdigdiv," "mp(2)" 463
.xx "" "/mpmul, mpexp, mpmod, mpdiv, mpcmp," "mpextendedgcd, mpinvert, mpsignif,/" "" "mp(2)" 463
.xx "" "/mpcopy, mpassign, mprand, strtomp," "mpfmt,mptoa, betomp, mptobe, letomp,/" "" "mp(2)" 463
.xx "mprand, strtomp,/" "mpsetminbits, mpnew," "mpfree, mpbits, mpnorm, mpcopy, mpassign," "" "mp(2)" 463
.xx "" "" "mpictures \- picture inclusion macros" "" "mpictures(6)" 776
.xx "" "mpmod, mpdiv, mpcmp, mpextendedgcd," "mpinvert, mpsignif, mplowbits0,/" "/mpexp," "mp(2)" 463
.xx "" "/vtomp, mptov, mpdigdiv, mpadd, mpsub," "mpleft, mpright, mpmul, mpexp, mpmod,/" "" "mp(2)" 463
.xx "" "mpcmp, mpextendedgcd, mpinvert, mpsignif," "mplowbits0, mpvecdigmuladd,/" "/mpdiv," "mp(2)" 463
.xx "" "/mpveccmp, mpvecmul, mpmagcmp," "mpmagadd, mpmagsub, crtpre, crtin, crtout,/" "" "mp(2)" 463
.xx "" "/mpsub, mpleft, mpright, mpmul, mpexp," "mpmod, mpdiv, mpcmp, mpextendedgcd,/" "" "mp(2)" 463
.xx "mpassign, mprand, strtomp,/" "mpsetminbits," "mpnew, mpfree, mpbits, mpnorm, mpcopy," "" "mp(2)" 463
.xx "" "/mptov, mpdigdiv, mpadd, mpsub, mpleft," "mpright, mpmul, mpexp, mpmod, mpdiv,/" "" "mp(2)" 463
.xx "mpnorm, mpcopy, mpassign, mprand,/" "" "mpsetminbits, mpnew, mpfree, mpbits," "" "mp(2)" 463
.xx "" "/mpdiv, mpcmp, mpextendedgcd, mpinvert," "mpsignif, mplowbits0, mpvecdigmuladd,/" "" "mp(2)" 463
.xx "" "/mptouv, vtomp, mptov, mpdigdiv, mpadd," "mpsub, mpleft, mpright, mpmul, mpexp,/" "" "mp(2)" 463
.xx "" "/mpcopy, mpassign, mprand, strtomp," "mptoa, betomp, mptobe, letomp, mptole,/" "" "mp(2)" 463
.xx "" "/mptobe, letomp, mptole, mptoui, uitomp," "mptoi, itomp, uvtomp, mptouv, vtomp,/" "" "mp(2)" 463
.xx "" "/mptoi, itomp, uvtomp, mptouv, vtomp," "mptov, mpdigdiv, mpadd, mpsub, mpleft,/" "" "mp(2)" 463
.xx "" "/mpvecdigmuladd, mpvecdigmulsub," "mpvecadd, mpvecsub, mpveccmp, mpvecmul,/" "" "mp(2)" 463
.xx "" "" "ms \- macros for formatting manuscripts" "" "ms(6)" 777
.xx "ms macros and html" "" "ms2html, html2ms \- convert between troff's" "" "ms2html(1)" 141
.xx "" "/wdoc2txt, xls2txt, olefs, mswordstrings," "msexceltables \- extract printable text from/" "" "doc2txt(1)" 69
.xx "msgs, Arch, Spam, Reply, Send, Post,/" "" "Msgs, mail2fs, M, Mg, mspool, mailplumb," "" "msgs(1)" 142
.xx "" "mallocalign, mallocz, free, realloc, calloc," "msize, setmalloctag, setrealloctag,/" "malloc," "malloc(2)" 448
.xx "" "doc2txt, doc2ps, wdoc2txt, xls2txt, olefs," "mswordstrings, msexceltables \- extract/" "" "doc2txt(1)" 69
.xx "" "" "mtime \- print file modification time" "" "mtime(1)" 147
.xx "qinv, qlen, slerp, qmid, qsqrt \-/" "qtom," "mtoq, qadd, qsub, qneg, qmul, qdiv, qunit," "" "quaternion(2)" 499
.xx "" "" "mug - convert an image to a face icon" "" "mug(1)" 148
.xx "dist3, unit3, midpt3,/" "add3, sub3, neg3, div3," "mul3, eqpt3, closept3, dot3, cross3, len3," "" "arith3(2)" 294
.xx "multiplication and division" "" "muldiv, umuldiv \- high-precision" "" "muldiv(2)" 467
.xx "canonrect, eqpt, eqrect,/" "addpt, subpt," "mulpt, divpt, rectaddpt, rectsubpt, insetrect," "" "addpt(2)" 286
.xx "" "mc \-" "multicolumn print" "" "mc(1)" 130
.xx "" "muldiv, umuldiv \- high-precision" "multiplication and division" "" "muldiv(2)" 467
.xx "" "juke \-" "music jukebox" "" "juke(7)" 809
.xx "" "cp, fcp," "mv \- copy, move files" "" "cp(1)" 50
.xx "equivip6,/" "/v4parseip, v4parsecidr, parseether," "myipaddr, myetheraddr, maskip, equivip4," "" "ip(2)" 437
.xx "PCI Interfaces" "pnp \- Plug" "'n' Play ISA and" "" "pnp(3)" 623
.xx "PCI-SCSI I/O Processors" "" "na \- assembler for the Symbios Logic" "" "na(8)" 892
.xx "" "cleanname \- clean a path" "name" "" "cleanname(1)" 43
.xx "" "cleanname \- clean a path" "name" "" "cleanname(2)" 318
.xx "" "getuser, sysname \- get user or system" "name" "" "getuser(2)" 409
.xx "" "mktemp \- make a unique file" "name" "" "mktemp(2)" 460
.xx "" "basename \- strip file" "name affixes" "" "basename(1)" 30
.xx "" "fd2path \- return file" "name associated with file descriptor" "" "fd2path(2)" 379
.xx "" "complete \- file" "name completion" "" "complete(2)" 320
.xx "" "lnfs \- long" "name file system" "" "lnfs(4)" 695
.xx "" "nm \-" "name list (symbol table)" "" "nm(1)" 154
.xx "" "bind, mount, unmount \- change" "name space" "" "bind(1)" 33
.xx "" "bind, mount, unmount \- change" "name space" "" "bind(2)" 307
.xx "" "namespace \- structure of conventional file" "name space" "" "namespace(4)" 697
.xx "" "ns \- display" "name space" "" "ns(1)" 155
.xx "" "pipefile \- attach filter to file in" "name space" "" "pipefile(1)" 167
.xx "" "namespace \-" "name space description file" "" "namespace(6)" 779
.xx "" "import \- import a" "name space from a remote system" "" "import(4)" 688
.xx "" "freectlimage, initcontrols, namectlfont," "namectlimage, newcontrolset,/" "/freectlfont," "control(2)" 321
.xx "" "allocimage, allocimagemix, freeimage," "nameimage, namedimage, setalpha,/" "" "allocimage(2)" 289
.xx "" "history \- print file" "names from the dump" "" "history(1)" 106
.xx "" "yesterday, diffy \- print file" "names from the dump" "" "yesterday(1)" 268
.xx "" "" "namespace \- name space description file" "" "namespace(6)" 779
.xx "name space" "" "namespace \- structure of conventional file" "" "namespace(4)" 697
.xx "infinity functions" "" "NaN, Inf, isNaN, isInf \- not-a-number and" "" "nan(2)" 468
.xx "" "time, nsec \- time in seconds and" "nanoseconds since epoch" "" "time(2)" 549
.xx "" "nbrecv, nbrecvp, nbrecvul, nbsend, nbsendp," "nbsendul, threadcreate, threaddata,/" "/sendul," "thread(2)" 545
.xx "" "" "ndb \- Network database" "" "ndb(6)" 780
.xx "ndbsearch, ndbsnext, ndbgetvalue,/" "ndbopen," "ndbcat, ndbchanged, ndbclose, ndbreopen," "" "ndb(2)" 469
.xx "ndbsearch, ndbsnext,/" "ndbopen, ndbcat," "ndbchanged, ndbclose, ndbreopen," "" "ndb(2)" 469
.xx "" "/csgetvalue, ndbfindattr, dnsquery, ndbdiscard," "ndbconcatenate, ndbreorder, ndbsubstitute,/" "" "ndb(2)" 469
.xx "csipinfo,/" "/ndbsearch, ndbsnext, ndbgetvalue," "ndbfree, ipattr, ndbgetipaddr, ndbipinfo," "" "ndb(2)" 469
.xx "" "/ipattr, ndbgetipaddr, ndbipinfo, csipinfo," "ndbhash, ndbparse, csgetvalue, ndbfindattr,/" "" "ndb(2)" 469
.xx "" "ndbsubstitute, ndbgetval, csgetval," "ndblookval \- network database" "/ndbreorder," "ndb(2)" 469
.xx "ndbreopen, ndbsearch, ndbsnext,/" "" "ndbopen, ndbcat, ndbchanged, ndbclose," "" "ndb(2)" 469
.xx "" "/ndbgetipaddr, ndbipinfo, csipinfo, ndbhash," "ndbparse, csgetvalue, ndbfindattr, dnsquery,/" "" "ndb(2)" 469
.xx "" "ndbopen, ndbcat, ndbchanged, ndbclose," "ndbreopen, ndbsearch, ndbsnext,/" "" "ndb(2)" 469
.xx "" "/dnsquery, ndbdiscard, ndbconcatenate," "ndbreorder, ndbsubstitute, ndbgetval,/" "" "ndb(2)" 469
.xx "" "/ndbcat, ndbchanged, ndbclose, ndbreopen," "ndbsearch, ndbsnext, ndbgetvalue, ndbfree,/" "" "ndb(2)" 469
.xx "" "/ndbdiscard, ndbconcatenate, ndbreorder," "ndbsubstitute, ndbgetval, csgetval,/" "" "ndb(2)" 469
.xx "" "/len3, dist3, unit3, midpt3, lerp3, reflect3," "nearseg3, pldist3, vdiv3, vrem3, pn2f3,/" "" "arith3(2)" 294
.xx "" "" "nedmail \- reading mail" "" "nedmail(1)" 149
.xx "" "/quoterunestrfmt, quotefmtinstall, doquote," "needsrcquote \- quoted character strings" "" "quote(2)" 501
.xx "cross3, len3, dist3, unit3,/" "add3, sub3," "neg3, div3, mul3, eqpt3, closept3, dot3," "" "arith3(2)" 294
.xx "" "version \-" "negotiate protocol version" "" "version(5)" 749
.xx "" "fversion \- initialize 9P connection and" "negotiate version" "" "fversion(2)" 403
.xx "" "encrypt, decrypt," "netcrypt \- DES encryption" "" "encrypt(2)" 364
.xx "" "passwd," "netkey \- change or verify user password" "" "passwd(1)" 159
.xx "" "dial, hangup, announce, listen, accept, reject," "netmkaddr, setnetmtpt, getnetconninfo,/" "" "dial(2)" 345
.xx "" "" "netstat \- summarize network connections" "" "netstat(1)" 152
.xx "" "aan \- always available" "network" "" "aan(8)" 827
.xx "" "fax, telcofax, telcodata \- telephone dialer" "network" "telco, faxreceive, faxsend," "telco(4)" 716
.xx "" "packettrailer, packettrim \- zero-copy" "network buffers" "/packetsplit, packetstats," "venti-packet(2)" 571
.xx "" "frame buffer server and viewer for Virtual" "Network Computing (VN)" "/vncv \- remote" "vnc(1)" 258
.xx "" "freenetconninfo \- make and break" "network connections" "/getnetconninfo," "dial(2)" 345
.xx "" "netstat \- summarize" "network connections" "" "netstat(1)" 152
.xx "" "vtrecv, vtversion, vtdebug, vthangup \- Venti" "network connections" "/vtfreeconn, vtsend," "venti-conn(2)" 563
.xx "" "ndbgetval, csgetval, ndblookval \-" "network database" "/ndbsubstitute," "ndb(2)" 469
.xx "" "ndb \-" "Network database" "" "ndb(6)" 780
.xx "" "dns, dnstcp, dnsquery, dnsdebug, inform \-" "network database" "/mkhosts, cs, csquery," "ndb(8)" 893
.xx "" "tcp17010, tcp17013 \- listen for calls on a" "network device" "/tcp17008, tcp17009," "listen(8)" 882
.xx "" "exportfs, srvfs \-" "network file server plumbing" "" "exportfs(4)" 670
.xx "" "srv, srvold9p, 9fs, srvssh \- start" "network file service" "" "srv(4)" 713
.xx "" "nfs \- Sun" "network file system client" "" "nfs(4)" 700
.xx "" "cifs - Microsoft™ Windows" "network filesystem client" "" "cifs(4)" 659
.xx "" "execnet \-" "network interface to program execution" "" "execnet(4)" 669
.xx "" "loopback \-" "network link simulation" "" "loopback(3)" 617
.xx "system" "nntpfs \-" "network news transport protocol (NNT) file" "" "nntpfs(4)" 702
.xx "" "snoopy \- spy on" "network packets" "" "snoopy(8)" 944
.xx "" "gre, icmp, icmpv6, ipmux, rudp, tcp, udp \-" "network protocols over IP" "ip, esp," "ip(3)" 606
.xx "" "10.12.0.0/24 \- Antwerp Plan 9" "Networks" "172.31.204.64/27," 
.xx "" "create \- prepare a fid for I/O on an existing or" "new file" "open," "open(5)" 743
.xx "" "newuser \- adding a" "new user" "" "newuser(8)" 898
.xx "" "/initcontrols, namectlfont, namectlimage," "newcontrolset, resizecontrolset \- interactive/" "" "control(2)" 321
.xx "" "crackhdr, machbytype, machbyname," "newmap, setmap, findseg, unusemap,/" "" "mach(2)" 445
.xx "fauth_proxy, auth_allocrpc,/" "amount," "newns, addns, login, noworld, auth_proxy," "" "auth(2)" 299
.xx "" "/authsrv, guard.srv, debug, wrkey, login," "newns, none, as \- maintain or query/" "" "auth(8)" 833
.xx "" "" "news \- print news items" "" "news(1)" 153
.xx "" "ap \- fetch Associated Press" "news articles" "" "ap(1)" 23
.xx "" "nntpfs \- network" "news transport protocol (NNT) file system" "" "nntpfs(4)" 702
.xx "" "" "newuser \- adding a new user" "" "newuser(8)" 898
.xx "functions" "objtype, readobj, objtraverse, isar," "nextar, readar \- object file interpretation" "" "object(2)" 475
.xx "exception handling for/" "waserror, poperror," "nexterror, error, fmterror, silenterror \-" "" "error(2)" 365
.xx "" "/ntruerand, genrandom, prng, fastrand," "nfastrand \- random number generators" "" "rand(2)" 502
.xx "" "" "nfs \- Sun network file system client" "" "nfs(4)" 700
.xx "" "" "nfsserver, portmapper, pcnfsd \- NFS service" "" "nfsserver(8)" 900
.xx "" "/defmask, isv4, v4tov6, v6tov4, nhgetv, nhgetl," "nhgets, hnputv, hnputl, hnputs, ptclbsum,/" "" "ip(2)" 437
.xx "" "" "nm \- name list (symbol table)" "" "nm(1)" 154
.xx "(NNT) file system" "" "nntpfs \- network news transport protocol" "" "nntpfs(4)" 702
.xx "" "/guard.srv, debug, wrkey, login, newns," "none, as \- maintain or query authentication/" "" "auth(8)" 833
.xx "" "setjmp, longjmp, notejmp \-" "non-local goto" "" "setjmp(2)" 529
.xx "" "rtc \- real-time clock and" "non-volatile RAM" "" "rtc(3)" 630
.xx "" "NaN, Inf, isNaN, isInf \-" "not-a-number and infinity functions" "" "nan(2)" 468
.xx "" "regexp \- regular expression" "notation" "" "regexp(6)" 789
.xx "" "sleep, alarm \- delay, ask for delayed" "note" "" "sleep(2)" 532
.xx "" "postnote \- send a" "note to a process or process group" "" "postnote(2)" 485
.xx "" "setjmp, longjmp," "notejmp \- non-local goto" "" "setjmp(2)" 529
.xx "process notification" "" "notify, noted, atnotify \- handle asynchronous" "" "notify(2)" 473
.xx "auth_allocrpc,/" "amount, newns, addns, login," "noworld, auth_proxy, fauth_proxy," "" "auth(2)" 299
.xx "" "exec, execl, _privates," "_nprivates, _tos \- execute a file" "" "exec(2)" 371
.xx "genrandom, prng,/" "rand, lrand, frand," "nrand, lnrand, srand, truerand, ntruerand," "" "rand(2)" 502
.xx "" "troff," "nroff, dpost \- text formatting and typesetting" "" "troff(1)" 244
.xx "" "tbl \- format tables for" "nroff or troff" "" "tbl(1)" 231
.xx "" "" "ns \- display name space" "" "ns(1)" 155
.xx "since epoch" "time," "nsec \- time in seconds and nanoseconds" "" "time(2)" 549
.xx "" "/lrand, frand, nrand, lnrand, srand, truerand," "ntruerand, genrandom, prng, fastrand,/" "" "rand(2)" 502
.xx "" "clocks, process/process group ids, user," "null, reboot, etc." "cons \- console," "cons(3)" 590
.xx "" "fwstat, dirstat, dirfstat, dirwstat, dirfwstat," "nulldir \- get and put file status" "/fstat, wstat," "stat(2)" 533
.xx "" "NaN, Inf, isNaN, isInf \-" "number and infinity functions" "" "nan(2)" 468
.xx "" "factor, primes \- factor a" "number, generate large primes" "" "factor(1)" 84
.xx "" "probably_prime, smallprimetest \- prime" "number generation" "/DSAprimes," "prime(2)" 486
.xx "" "prng, fastrand, nfastrand \- random" "number generators" "/ntruerand, genrandom," "rand(2)" 502
.xx "" "strtol, strtoll, strtoul, strtoull \- convert text to" "numbers" "/atoi, atol, atoll, charstod, strtod," "atof(2)" 297
.xx "" "seq \- print sequences of" "numbers" "" "seq(1)" 208
.xx "convTR2M, convM2TR,/" "authdial, passtokey," "nvcsum, readnvram, convT2M, convM2T," "" "authsrv(2)" 302
.xx "" "dynloadgen, dynobjfree, dyntabsize \- load" "object file dynamically" "/dynloadfd," "dynld(2)" 359
.xx "" "a.out \-" "object file format" "" "a.out(6)" 752
.xx "interpretation functions" "objtype, readobj," "objtraverse, isar, nextar, readar \- object file" "" "object(2)" 475
.xx "" "xd \- hex," "octal, decimal, or ASCII dump" "" "xd(1)" 265
.xx "" "seek \- change file" "offset" "" "seek(2)" 523
.xx "" "/tlsServer, initThumbprints, freeThumbprints," "okThumbprint, readcert, readcertchain \-/" "" "pushtls(2)" 494
.xx "printable/" "doc2txt, doc2ps, wdoc2txt, xls2txt," "olefs, mswordstrings, msexceltables \- extract" "" "doc2txt(1)" 69
.xx "" "thesaurus \- search" "online thesaurus" "" "thesaurus(1)" 239
.xx "" "mkpaqfs \- make a compressed" "only file system" "" "mkpaqfs(8)" 889
.xx "" "paqfs \- compressed" "only file system" "" "paqfs(4)" 703
.xx "existing or new file" "" "open, create \- prepare a fid for I/O on an" "" "open(5)" 743
.xx "or writing, create file" "" "open, create, close \- open a file for reading" "" "open(2)" 477
.xx "" "dup \- duplicate an" "open file descriptor" "" "dup(2)" 358
.xx "" "dup \- dups of" "open files" "" "dup(3)" 597
.xx "" "/finddevs, loaddevstr, matchdevcsp, opendev," "opendevdata, openep, startdevs, unstall,/" "" "usb(2)" 551
.xx "" "/File, createfile, closefile, removefile, walkfile," "opendirfile, readdirfile, closedirfile, hasperm/" "" "9pfile(2)" 281
.xx "" "" "opendisk, Disk \- generic disk device interface" "" "disk(2)" 349
.xx "proto,/" "/matchdevcsp, opendev, opendevdata," "openep, startdevs, unstall, class, subclass," "" "usb(2)" 551
.xx "" "/bufimage, lockdisplay, unlockdisplay," "openfont, buildfont, freefont, Pfmt, Rfmt,/" "" "graphics(2)" 411
.xx "" "/memlineendsize, allocmemsubfont," "openmemsubfont, freememsubfont,/" "" "memdraw(2)" 452
.xx "scsierror \- SCSI device operations" "" "openscsi, closescsi, scsiready, scsi, scsicmd," "" "scsi(2)" 519
.xx "" "\- connect to Plan 9 CPU servers from other" "operating systems" "drawterm" "drawterm(8)" 849
.xx "writer file system" "cdfs, cddb \-" "optical disc (CD, DVD, B) track reader and" "" "cdfs(4)" 656
.xx "" "ARGEND, ARGC, ARGF, EARGF \- process" "option letters from argv" "ARGBEGIN," "arg(2)" 292
.xx "" "fshalt, reboot \- halt any local file systems and" "optionally reboot the system" "" "fshalt(8)" 866
.xx "" "/bottomnwindows, topwindow, topnwindows," "originwindow \- window management" "" "window(2)" 576
.xx "" "Bwrite, Bflush, Bterm, Bbuffered \- buffered" "output" "/Bputc, Bputrune, Bprint, Bvprint," "bio(2)" 309
.xx "" "fputs, puts, fread, fwrite \- Stdio input and" "output" "/putc, putchar, ungetc, fgets, gets," "fgetc(2)" 380
.xx "" "vprintf, vsprintf, vsnprintf \- print formatted" "output" "/printf, sprintf, snprintf, vfprintf," "fprintf(2)" 393
.xx "" "lp \- printer" "output" "" "lp(1)" 122
.xx "" "runevseprint, runevsmprint \- print formatted" "output" "/vseprint, vsmprint, runevsnprint," "print(2)" 487
.xx "" "image, graphic, PostScript, PDF, and typesetter" "output files" "page \- view FAX," "page(1)" 157
.xx "" "proof \- troff" "output interpreter" "" "proof(1)" 175
.xx "" "troff2html \- convert troff" "output into HTML" "" "troff2html(1)" 246
.xx "" "mailcmd \- mail the" "output of a failed command" "" "mailcmd(1)" 127
.xx "" "feof, ferror, clearerr \- standard buffered" "output package" "/ftell, fsetpos, fseek, rewind," "fopen(2)" 388
.xx "" "\- support for user-defined print formats and" "output routines" "/runefmtstrflush, errfmt" "fmtinstall(2)" 385
.xx "" "" "p \- paginate" "" "p(1)" 156
.xx "" "authsrv, p9any," "p9sk1, p9sk2 \- authentication protocols" "" "authsrv(6)" 755
.xx "" "clearerr \- standard buffered input/output" "package" "/fsetpos, fseek, rewind, feof, ferror," "fopen(2)" 388
.xx "" "wol \- send wake-on-lan Ethernet" "packet" "" "wol(8)" 966
.xx "packetasize, packetcmp, packetconcat,/" "" "Packet, packetalloc, packetappend," "" "venti-packet(2)" 571
.xx "packetcmp, packetconcat,/" "Packet," "packetalloc, packetappend, packetasize," "" "venti-packet(2)" 571
.xx "" "/packetasize, packetcmp, packetconcat," "packetconsume, packetcopy, packetdup,/" "" "venti-packet(2)" 571
.xx "" "/packetconsume, packetcopy, packetdup," "packetforeign, packetfragments, packetfree,/" "" "venti-packet(2)" 571
.xx "" "/packetforeign, packetfragments, packetfree," "packetheader, packetpeek, packetprefix,/" "" "venti-packet(2)" 571
.xx "" "snoopy \- spy on network" "packets" "" "snoopy(8)" 944
.xx "" "udpecho \- echo UDP" "packets" "" "udpecho(8)" 954
.xx "" "/packetheader, packetpeek, packetprefix," "packetsha1, packetsize, packetsplit,/" "" "venti-packet(2)" 571
.xx "" "/packetpeek, packetprefix, packetsha1," "packetsize, packetsplit, packetstats,/" "" "venti-packet(2)" 571
.xx "buffers" "/packetsize, packetsplit, packetstats," "packettrailer, packettrim \- zero-copy network" "" "venti-packet(2)" 571
.xx "PDF, and typesetter output files" "" "page \- view FAX, image, graphic, PostScript," "" "page(1)" 157
.xx "" "hget \- retrieve a web" "page corresponding to a url" "" "hget(1)" 105
.xx "" "man, lookman, sig \- print or find" "pages of this manual" "" "man(1)" 128
.xx "" "p \-" "paginate" "" "p(1)" 156
.xx "" "" "paqfs \- compressed read-only file system" "" "paqfs(4)" 703
.xx "" "lpt \-" "parallel port interface for PC's" "" "lpt(3)" 618
.xx "" "bitsyload, light, pencal, keyboard," "params, prompter \- bitsy-specific utilities" "" "bitsyload(1)" 35
.xx "" "rdproto \-" "parse and process a proto file listing" "" "proto(2)" 492
.xx "control message parsing" "Cmdbuf," "parsecmd, respondcmderror, lookupcmd \-" "" "9pcmdbuf(2)" 278
.xx "freedocinfo, dimenkind, dimenspec, targetid,/" "" "parsehtml, printitems, validitems, freeitems," "" "html(2)" 415
.xx "parseether, myipaddr, myetheraddr,/" "eipfmt," "parseip, parseipmask, v4parseip, v4parsecidr," "" "ip(2)" 437
.xx "" "targetid, targetname, fromStr, toStr \- HTML" "parser" "/freedocinfo, dimenkind, dimenspec," "html(2)" 415
.xx "" "lookupcmd \- control message" "parsing" "/parsecmd, respondcmderror," "9pcmdbuf(2)" 278
.xx "" "getflags, usage \- command-line" "parsing for shell scripts" "" "getflags(8)" 867
.xx "" "" "partfs \- serve file, with partitions" "" "partfs(8)" 902
.xx "" "at, drain, expect," "pass \- dialer scripting tools" "" "expect(1)" 81
.xx "convM2T, convTR2M, convM2TR,/" "authdial," "passtokey, nvcsum, readnvram, convT2M," "" "authsrv(2)" 302
.xx "password" "" "passwd, netkey \- change or verify user" "" "passwd(1)" 159
.xx "system" "" "patch \- simple patch creation and tracking" "" "patch(1)" 160
.xx "" "cleanname \- clean a" "path name" "" "cleanname(1)" 43
.xx "" "cleanname \- clean a" "path name" "" "cleanname(2)" 318
.xx "authentication box" "securenet \- Digital" "Pathways SecureNet Key remote" "" "securenet(8)" 940
.xx "" "grep \- search a file for a" "pattern" "" "grep(1)" 97
.xx "language" "awk \-" "pattern-directed scanning and processing" "" "awk(1)" 26
.xx "" "ARROW, drawsetdebug \- graphics functions" "PB L" "/runestringbg, runestringnbg, _string," "draw(2)" 350
.xx "" "pwd," "pbd \- working directory" "" "pwd(1)" 179
.xx "" "9load, 9pxeload, 9loadusb, 9loadask, ld \-" "PC bootstrap program" "" "9load(8)" 823
.xx "" "getcallerpc \- fetch return" "PC of current function" "" "getcallerpc(2)" 404
.xx "findlocal, getauto,/" "syminit, getsym, symbase," "pc2sp, pc2line, textseg, line2addr, lookup," "" "symbol(2)" 542
.xx "" "" "pcc \- APE C compiler driver" "" "pcc(1)" 162
.xx "" "" "pci \- print PCI bus configuration" "" "pci(8)" 903
.xx "" "pnp \- Plug 'n' Play ISA and" "PCI Interfaces" "" "pnp(3)" 623
.xx "" "na \- assembler for the Symbios Logic" "PCI-SCSI I/O Processors" "" "na(8)" 892
.xx "" "Computer Memory Card Interface Association" "PCMCI) device" "i82365 \- Personal" "i82365(3)" 605
.xx "" "" "pcmcia \- identify a PCMCIA card" "" "pcmcia(8)" 904
.xx "" "nfsserver, portmapper," "pcnfsd \- NFS service" "" "nfsserver(8)" 900
.xx "" "lpt \- parallel port interface for" "PC's" "" "lpt(3)" 618
.xx "" "plan9.ini \- configuration file for" "PCs" "" "plan9.ini(8)" 908
.xx "" "pdf2ps \- convert between PostScript and" "PDF" "ps2pdf," "ps2pdf(1)" 177
.xx "" "page \- view FAX, image, graphic, PostScript," "PDF, and typesetter output files" "" "page(1)" 157
.xx "" "gs \- Aladdin Ghostscript (PostScript and" "PDF language interpreter)" "" "gs(1)" 98
.xx "" "ps2pdf," "pdf2ps \- convert between PostScript and PDF" "" "ps2pdf(1)" 177
.xx "" "/pldist3, vdiv3, vrem3, pn2f3, ppp2f3, fff2p3," "pdiv4, add4, sub4 \- operations on 3-d points/" "" "arith3(2)" 294
.xx "Privacy Enhanced Mail (PE) format" "" "pemdecode, pemencode \- encode files in" "" "pem(8)" 905
.xx "bitsy-specific utilities" "bitsyload, light," "pencal, keyboard, params, prompter \-" "" "bitsyload(1)" 35
.xx "" "privalloc, privfree \-" "per-process private storage management" "" "privalloc(2)" 490
.xx "messages" "" "perror, syslog, sysfatal \- system error" "" "perror(2)" 478
.xx "Association (PCMCI) device" "i82365 \-" "Personal Computer Memory Card Interface" "" "i82365(3)" 605
.xx "" "bootfloppy, bootplan9, bootwin9x, bootwinnt," "personalize, setup.9fat, setup.disk, setup.kfs,/" "" "update(8)" 955
.xx "" "popmat, rot, qrot, scale, move, xform, ixform," "persp, look, viewport \- Geometric/" "/pushmat," "matrix(2)" 450
.xx "" "/unlockdisplay, openfont, buildfont, freefont," "Pfmt, Rfmt, strtochan, chantostr, chantodepth/" "" "graphics(2)" 411
.xx "" "tel, iwhois \- look in" "phone book" "" "tel(1)" 236
.xx "" "grap \-" "pic preprocessor for drawing graphs" "" "grap(1)" 94
.xx "drawing pictures" "" "pic, tpic \- troff and tex preprocessors for" "" "pic(1)" 164
.xx "" "resample \- resample a" "picture" "" "resample(1)" 190
.xx "" "mpictures \-" "picture inclusion macros" "" "mpictures(6)" 776
.xx "" "togif, toppm, topng, toico \- view and convert" "pictures" "/gif, png, ppm, bmp, v210, yuv, ico," "jpg(1)" 111
.xx "" "tpic \- troff and tex preprocessors for drawing" "pictures" "pic," "pic(1)" 164
.xx "Internet" "" "ping, gping, traceroute, hogports \- probe the" "" "ping(8)" 906
.xx "" "" "pipe \- create an interprocess channel" "" "pipe(2)" 479
.xx "" "" "pipe \- two-way interprocess communication" "" "pipe(3)" 622
.xx "" "tee \-" "pipe fitting" "" "tee(1)" 235
.xx "" "" "pipefile \- attach filter to file in name space" "" "pipefile(1)" 167
.xx "" "color \- representation of" "pixels and colors" "" "color(6)" 759
.xx "" "intro \- introduction to" "Plan 9" "" "intro(1)" 1
.xx "" "\- secure login and file copy from/to Unix or" "Plan 9" "ssh, sshnet, scp, sshserve" "ssh(1)" 219
.xx "" "ansitize \- translate" "Plan 9 C to ANSI C" "" "ansitize(1)" 20
.xx "" "style \-" "Plan 9 coding conventions for C" "" "style(6)" 794
.xx "systems" "drawterm \- connect to" "Plan 9 CPU servers from other operating" "" "drawterm(8)" 849
.xx "" "intro \- introduction to the" "Plan 9 devices" "" "intro(3)" 579
.xx "" "statcheck, sizeS2M, sizeD2M \- interface to" "Plan 9 File protocol" "/read9pmsg," "fcall(2)" 376
.xx "" "intro \- introduction to the" "Plan 9 File Protocol, 9P" "" "intro(5)" 735
.xx "" "172.31.204.64/27, 10.12.0.0/24 \- Antwerp" "Plan 9 Networks" "" 
.xx "" "koninck, kijkuit, doom, kapellen \- Antwerp" "Plan 9 servers" "/duvel, leffe, affligem, arend," 
.xx "" "" "plan9.ini \- configuration file for PCs" "" "plan9.ini(8)" 908
.xx "" "add4, sub4 \- operations on 3-d points and" "planes" "/vrem3, pn2f3, ppp2f3, fff2p3, pdiv4," "arith3(2)" 294
.xx "" "pnp \- Plug 'n'" "Play ISA and PCI Interfaces" "" "pnp(3)" 623
.xx "" "" "playlistfs \- playlist file system" "" "playlistfs(7)" 816
.xx "" "/dist3, unit3, midpt3, lerp3, reflect3, nearseg3," "pldist3, vdiv3, vrem3, pn2f3, ppp2f3, fff2p3,/" "" "arith3(2)" 294
.xx "" "" "plot \- graphics filter" "" "plot(1)" 168
.xx "" "" "plot \- graphics interface" "" "plot(6)" 783
.xx "" "pnp \-" "Plug 'n' Play ISA and PCI Interfaces" "" "pnp(3)" 623
.xx "" "" "plumb \- format of plumb messages and rules" "" "plumb(6)" 785
.xx "" "" "plumb \- send message to plumber" "" "plumb(1)" 169
.xx "" "tagrd \-" "plumb a Mifare Ultralight tag" "" "tagrd(1)" 227
.xx "" "plumb \- format of" "plumb messages and rules" "" "plumb(6)" 785
.xx "" "/plumblookup, plumbpack, plumbpackattr," "plumbaddattr, plumbdelattr, plumbrecv,/" "" "plumb(2)" 480
.xx "" "plumb \- send message to" "plumber" "" "plumb(1)" 169
.xx "messaging" "" "plumber \- file system for interprocess" "" "plumber(4)" 704
.xx "plumbsendtext, plumblookup,/" "eplumb," "plumbfree, plumbopen, plumbsend," "" "plumb(2)" 480
.xx "" "exportfs, srvfs \- network file server" "plumbing" "" "exportfs(4)" 670
.xx "" "/plumbopen, plumbsend, plumbsendtext," "plumblookup, plumbpack, plumbpackattr,/" "" "plumb(2)" 480
.xx "" "plumbunpackpartial, plumbunpackattr," "Plumbmsg \- plumb messages" "/plumbunpack," "plumb(2)" 480
.xx "plumblookup,/" "eplumb, plumbfree," "plumbopen, plumbsend, plumbsendtext," "" "plumb(2)" 480
.xx "" "/plumbsend, plumbsendtext, plumblookup," "plumbpack, plumbpackattr, plumbaddattr,/" "" "plumb(2)" 480
.xx "" "plumbpackattr, plumbaddattr, plumbdelattr," "plumbrecv, plumbunpack,/" "/plumbpack," "plumb(2)" 480
.xx "plumbpack,/" "eplumb, plumbfree, plumbopen," "plumbsend, plumbsendtext, plumblookup," "" "plumb(2)" 480
.xx "" "/plumbaddattr, plumbdelattr, plumbrecv," "plumbunpack, plumbunpackpartial,/" "" "plumb(2)" 480
.xx "" "/plumbrecv, plumbunpack, plumbunpackpartial," "plumbunpackattr, Plumbmsg \- plumb/" "" "plumb(2)" 480
.xx "" "/reflect3, nearseg3, pldist3, vdiv3, vrem3," "pn2f3, ppp2f3, fff2p3, pdiv4, add4, sub4 \-/" "" "arith3(2)" 294
.xx "topng, toico \- view and convert/" "jpg, gif," "png, ppm, bmp, v210, yuv, ico, togif, toppm," "" "jpg(1)" 111
.xx "" "" "pnp \- Plug 'n' Play ISA and PCI Interfaces" "" "pnp(3)" 623
.xx "" "getfcr, setfcr, getfsr, setfsr \- control floating" "point" "" "getfcr(2)" 406
.xx "" "hoc \- interactive floating" "point language" "" "hoc(1)" 107
.xx "" "ppp, pppoe, pptp, pptpd \-" "point protocol" "" "ppp(8)" 918
.xx "geninitdraw, drawerror, initdisplay,/" "Display," "Point, Rectangle, Cursor, initdraw," "" "graphics(2)" 411
.xx "" "stub \- provide mount" "point stubs" "" "stub(8)" 949
.xx "" "fff2p3, pdiv4, add4, sub4 \- operations on 3-d" "points and planes" "/vrem3, pn2f3, ppp2f3," "arith3(2)" 294
.xx "" "Dx, Dy, Pt, Rect, Rpt \- arithmetic on" "points and rectangles" "/rectclip, combinerect," "addpt(2)" 286
.xx "" "locks, reader-writer locks, rendezvous" "points, and reference counts" "/rendezvous" "lock(2)" 442
.xx "" "mntgen \- automatically generate mount" "points for file systems" "" "mntgen(4)" 696
.xx "" "ppp, pppoe, pptp, pptpd \-" "point-to-point protocol" "" "ppp(8)" 918
.xx "" "/gendraw, drawreplxy, drawrepl, replclipr, line," "poly, fillpoly, bezier, bezspline, fillbezier,/" "" "draw(2)" 350
.xx "" "/poolrealloc, poolcompact, poolcheck," "poolblockcheck, pooldump \- general memory/" "" "pool(2)" 482
.xx "poolcompact,/" "poolalloc, poolallocalign," "poolfree, poolmsize, poolrealloc," "" "pool(2)" 482
.xx "" "" "pop3, imap4d \- Internet mail servers" "" "pop3(8)" 917
.xx "silenterror \- exception handling for/" "waserror," "poperror, nexterror, error, fmterror," "" "error(2)" 365
.xx "ixform,/" "/xformpointd, xformplane, pushmat," "popmat, rot, qrot, scale, move, xform," "" "matrix(2)" 450
.xx "" "aux/accupoint \- configure a mouse to a" "port" "aux/mouse," "mouse(8)" 891
.xx "" "lpt \- parallel" "port interface for PC's" "" "lpt(3)" 618
.xx "" "nfsserver," "portmapper, pcnfsd \- NFS service" "" "nfsserver(8)" 900
.xx "" "gpsfs, gpsevermore \- GPS time and" "position service" "" "gpsfs(8)" 868
.xx "" "pq, pqgen, pqsrv \- query" "POST database" "" "pq(1)" 170
.xx "" "/mailplumb, msgs, Arch, Spam, Reply, Send," "Post, Delmesg, Save \- file based mail reader" "" "msgs(1)" 142
.xx "" "/erealloc9p, estrdup9p, listensrv, postfd," "postmountsrv, readbuf, readstr, respond,/" "" "9p(2)" 273
.xx "process group" "" "postnote \- send a note to a process or" "" "postnote(2)" 485
.xx "" "ps2pdf, pdf2ps \- convert between" "PostScript and PDF" "" "ps2pdf(1)" 177
.xx "" "gs \- Aladdin Ghostscript" "PostScript and PDF language interpreter)" "" "gs(1)" 98
.xx "" "page \- view FAX, image, graphic," "PostScript, PDF, and typesetter output files" "" "page(1)" 157
.xx "" "lp \-" "PostScript preprocessors" "" "lp(8)" 884
.xx "square root" "exp, log, log10, pow," "pow10, sqrt \- exponential, logarithm, power," "" "exp(2)" 374
.xx "" "apm \- Advanced" "Power Management 1.2 BIOS interface" "" "apm(3)" 583
.xx "" "apm \- Advanced" "Power Management 1.2 BIOS interface" "" "apm(8)" 830
.xx "" "pow, pow10, sqrt \- exponential, logarithm," "power, square root" "exp, log, log10," "exp(2)" 374
.xx "topng, toico \- view and convert/" "jpg, gif, png," "ppm, bmp, v210, yuv, ico, togif, toppm," "" "jpg(1)" 111
.xx "" "/nearseg3, pldist3, vdiv3, vrem3, pn2f3," "ppp2f3, fff2p3, pdiv4, add4, sub4 \-/" "" "arith3(2)" 294
.xx "" "ppp," "pppoe, pptp, pptpd \- point-to-point protocol" "" "ppp(8)" 918
.xx "" "pq," "pqgen, pqsrv \- query POST database" "" "pq(1)" 170
.xx "" "" "pr \- print file" "" "pr(1)" 172
.xx "" "read, readn, write," "pread, pwrite \- read or write file" "" "read(2)" 505
.xx "write" "readv, writev," "preadv, pwritev \- scatter/gather read and" "" "readv(2)" 507
.xx "" "crtin, crtout, crtprefree, crtresfree \- extended" "precision arithmetic" "/mpmagsub, crtpre," "mp(2)" 463
.xx "" "bc \-" "precision arithmetic language" "" "bc(1)" 31
.xx "" "muldiv, umuldiv \-" "precision multiplication and division" "" "muldiv(2)" 467
.xx "floppies and flashes" "" "prep, fdisk, format, mbr \- prepare disks," "" "prep(8)" 920
.xx "input" "soelim \-" "preprocess so inclusion commands in troff" "" "soelim(1)" 211
.xx "" "cpp \- C language" "preprocessor" "" "cpp(1)" 51
.xx "" "grap \- pic" "preprocessor for drawing graphs" "" "grap(1)" 94
.xx "" "lp \- PostScript" "preprocessors" "" "lp(8)" 884
.xx "" "pic, tpic \- troff and tex" "preprocessors for drawing pictures" "" "pic(1)" 164
.xx "" "ap \- fetch Associated" "Press news articles" "" "ap(1)" 23
.xx "" "DSAprimes, probably_prime, smallprimetest \-" "prime number generation" "/genstrongprime," "prime(2)" 486
.xx "primes" "factor," "primes \- factor a number, generate large" "" "factor(1)" 84
.xx "" "mc \- multicolumn" "print" "" "mc(1)" 130
.xx "" "echo \-" "print arguments" "" "echo(1)" 72
.xx "" "astro \-" "print astronomical information" "" "astro(7)" 806
.xx "" "cal \-" "print calendar" "" "cal(1)" 37
.xx "" "kill, slay, broke \-" "print commands to kill processes" "" "kill(1)" 114
.xx "" "stop, start \-" "print commands to stop and start processes" "" "stop(1)" 222
.xx "" "pr \-" "print file" "" "pr(1)" 172
.xx "" "mtime \-" "print file modification time" "" "mtime(1)" 147
.xx "" "history \-" "print file names from the dump" "" "history(1)" 106
.xx "" "yesterday, diffy \-" "print file names from the dump" "" "yesterday(1)" 268
.xx "" "/errfmt \- support for user-defined" "print formats and output routines" "" "fmtinstall(2)" 385
.xx "" "snprintf, vfprintf, vprintf, vsprintf, vsnprintf \-" "print formatted output" "/printf, sprintf," "fprintf(2)" 393
.xx "runesprint, runesnprint, runeseprint,/" "" "print, fprint, sprint, snprint, seprint, smprint," "" "print(2)" 487
.xx "" "freq \-" "print histogram of character frequencies" "" "freq(1)" 91
.xx "" "news \-" "print news items" "" "news(1)" 153
.xx "" "man, lookman, sig \-" "print or find pages of this manual" "" "man(1)" 128
.xx "" "pci \-" "print PCI bus configuration" "" "pci(8)" 903
.xx "Universal Serial/" "audio, ccid, disk, ether, kb," "print, probe, serial, usbeject, usbfat: \-" "" "usb(4)" 722
.xx "" "seq \-" "print sequences of numbers" "" "seq(1)" 208
.xx "" "size \-" "print size of executable files" "" "size(1)" 209
.xx "" "calendar \-" "print upcoming events" "" "calendar(1)" 38
.xx "" "weather \-" "print weather report" "" "weather(1)" 262
.xx "" "uuencode, uudecode \- encode/decode a file as" "printable ASCII" "" "uuencode(1)" 252
.xx "" "strings \- extract" "printable strings" "" "strings(1)" 223
.xx "" "/olefs, mswordstrings, msexceltables \- extract" "printable text from Microsoft documents" "" "doc2txt(1)" 69
.xx "" "lp \-" "printer output" "" "lp(1)" 122
.xx "vsprintf, vsnprintf \- print formatted/" "fprintf," "printf, sprintf, snprintf, vfprintf, vprintf," "" "fprintf(2)" 393
.xx "dimenkind, dimenspec, targetid,/" "parsehtml," "printitems, validitems, freeitems, freedocinfo," "" "html(2)" 415
.xx "guard.srv,/" "changeuser, convkeys, convkeys2," "printnetkey, status, enable, disable, authsrv," "" "auth(8)" 833
.xx "" "pemdecode, pemencode \- encode files in" "Privacy Enhanced Mail (PE) format" "" "pem(8)" 905
.xx "storage management" "" "privalloc, privfree \- per-process private" "" "privalloc(2)" 490
.xx "" "exec, execl," "_privates, _nprivates, _tos \- execute a file" "" "exec(2)" 371
.xx "" "/srand, truerand, ntruerand, genrandom," "prng, fastrand, nfastrand \- random number/" "" "rand(2)" 502
.xx "" "/gensafeprime, genstrongprime, DSAprimes," "probably_prime, smallprimetest \- prime/" "" "prime(2)" 486
.xx "Serial Bus/" "audio, ccid, disk, ether, kb, print," "probe, serial, usbeject, usbfat: \- Universal" "" "usb(4)" 722
.xx "" "ping, gping, traceroute, hogports \-" "probe the Internet" "" "ping(8)" 906
.xx "" "" "proc \- running processes" "" "proc(3)" 625
.xx "" "/chanclosing, chanprint, mainstacksize," "proccreate, procdata, procexec, procexecl,/" "" "thread(2)" 545
.xx "" "booting \- bootstrapping" "procedures" "" "booting(8)" 840
.xx "" "rdproto \- parse and" "process a proto file listing" "" "proto(2)" 492
.xx "" "cputime, times, cycles \- cpu time in this" "process and children" "" "cputime(2)" 336
.xx "" "trace \- show (real-time)" "process behavior" "" "trace(1)" 243
.xx "" "atexitdont, terminate \- terminate process," "process cleanup" "exits, _exits, atexit," "exits(2)" 373
.xx "" "prof - accumulate histogram of" "process execution" "" "prof(2)" 491
.xx "" "postnote \- send a note to a process or" "process group" "" "postnote(2)" 485
.xx "" "cons \- console, clocks," "process group ids, user, null, reboot, etc." "" "cons(3)" 590
.xx "" "getpid, getppid \- get" "process ids" "" "getpid(2)" 408
.xx "" "notify, noted, atnotify \- handle asynchronous" "process notification" "" "notify(2)" 473
.xx "" "ARGBEGIN, ARGEND, ARGC, ARGF, EARGF \-" "process option letters from argv" "" "arg(2)" 292
.xx "" "postnote \- send a note to a" "process or process group" "" "postnote(2)" 485
.xx "" "privalloc, privfree \-" "process private storage management" "" "privalloc(2)" 490
.xx "" "_exits, atexit, atexitdont, terminate \- terminate" "process, process cleanup" "exits," "exits(2)" 373
.xx "" "fork, rfork \- manipulate" "process resources" "" "fork(2)" 391
.xx "" "snap, snapfs \- create and mount" "process snapshots" "" "snap(4)" 712
.xx "" "snap \-" "process snapshots" "" "snap(6)" 793
.xx "" "ps, psu \-" "process status" "" "ps(1)" 176
.xx "" "rendezvous \- user level" "process synchronization" "" "rendezvous(2)" 511
.xx "" "ratrace \- trace" "process system calls" "" "ratrace(1)" 180
.xx "" "await, wait, waitpid \- wait for a" "process to exit" "" "wait(2)" 575
.xx "" "cap \- capabilities for setting the user id of" "processes" "" "cap(3)" 589
.xx "" "kill, slay, broke \- print commands to kill" "processes" "" "kill(1)" 114
.xx "" "proc \- running" "processes" "" "proc(3)" 625
.xx "" "stop, start \- print commands to stop and start" "processes" "" "stop(1)" 222
.xx "" "ioproc, ioread, ioreadn, iowrite \- slave I/O" "processes for threaded programs" "/ioopen," "ioproc(2)" 434
.xx "" "awk \- pattern-directed scanning and" "processing language" "" "awk(1)" 26
.xx "" "\- assembler for the Symbios Logic PCI-SCSI I/O" "Processors" "na" "na(8)" 892
.xx "etc." "cons \- console, clocks," "process/process group ids, user, null, reboot," "" "cons(3)" 590
.xx "" "/mainstacksize, proccreate, procdata, procexec," "procexecl, procrfork, recv, recvp, recvul,/" "" "thread(2)" 545
.xx "execution" "" "prof - accumulate histogram of process" "" "prof(2)" 491
.xx "" "" "prof, tprof, kprof \- display profiling data" "" "prof(1)" 173
.xx "" "kprof \- kernel" "profiling" "" "kprof(3)" 616
.xx "" "9loadusb, 9loadask, ld \- PC bootstrap" "program" "9load, 9pxeload," "9load(8)" 823
.xx "" "units \- conversion" "program" "" "units(1)" 250
.xx "" "cb \- C" "program beautifier" "" "cb(1)" 40
.xx "" "execnet \- network interface to" "program execution" "" "execnet(4)" 669
.xx "" "assert \- check" "program invariants" "" "assert(2)" 296
.xx "" "silenterror \- exception handling for threaded" "programs" "/nexterror, error, fmterror," "error(2)" 365
.xx "" "iowrite \- slave I/O processes for threaded" "programs" "/ioopen, ioproc, ioread, ioreadn," "ioproc(2)" 434
.xx "" "lex \- generator of lexical analysis" "programs" "" "lex(1)" 119
.xx "" "map, mapdemo \- draw maps on various" "projections" "" "map(7)" 812
.xx "" "bitsyload, light, pencal, keyboard, params," "prompter \- bitsy-specific utilities" "" "bitsyload(1)" 35
.xx "" "" "proof \- troff output interpreter" "" "proof(1)" 175
.xx "" "/openep, startdevs, unstall, class, subclass," "proto, CSP \- USB device driver library" "" "usb(2)" 551
.xx "" "rdproto \- parse and process a" "proto file listing" "" "proto(2)" 492
.xx "" "sizeS2M, sizeD2M \- interface to Plan 9 File" "protocol" "/read9pmsg, statcheck," "fcall(2)" 376
.xx "" "ppp, pppoe, pptp, pptpd \- point-to-point" "protocol" "" "ppp(8)" 918
.xx "" "sdp \- secure datagram" "protocol" "" "sdp(3)" 636
.xx "" "intro \- introduction to the Plan 9 File" "Protocol, 9P" "" "intro(5)" 735
.xx "" "hnputl, hnputs, ptclbsum, readipifc \- Internet" "Protocol addressing" "/nhgetl, nhgets, hnputv," "ip(2)" 437
.xx "" "ftpfs \- file transfer" "protocol (FT) file system" "" "ftpfs(4)" 684
.xx "" "nntpfs \- network news transport" "protocol (NNT) file system" "" "nntpfs(4)" 702
.xx "" "version \- negotiate" "protocol version" "" "version(5)" 749
.xx "" "authsrv, p9any, p9sk1, p9sk2 \- authentication" "protocols" "" "authsrv(6)" 755
.xx "" "icmp, icmpv6, ipmux, rudp, tcp, udp \- network" "protocols over IP" "ip, esp, gre," "ip(3)" 606
.xx "and PDF" "" "ps2pdf, pdf2ps \- convert between PostScript" "" "ps2pdf(1)" 177
.xx "" "ps," "psu \- process status" "" "ps(1)" 176
.xx "" "/rectXrect, rectclip, combinerect, Dx, Dy," "Pt, Rect, Rpt \- arithmetic on points and/" "" "addpt(2)" 286
.xx "" "/nhgetl, nhgets, hnputv, hnputl, hnputs," "ptclbsum, readipifc \- Internet Protocol/" "" "ip(2)" 437
.xx "" "/rectsubpt, insetrect, canonrect, eqpt, eqrect," "ptinrect, rectinrect, rectXrect, rectclip,/" "" "addpt(2)" 286
.xx "" "thumbprint \-" "public key thumbprints" "" "thumbprint(6)" 795
.xx "bottomwindow,/" "Screen, allocscreen," "publicscreen, freescreen, allocwindow," "" "window(2)" 576
.xx "circular buffer" "" "pump \- copy asynchronously via a large" "" "pump(1)" 178
.xx "management" "changes, pull," "push, scan \- client-server replica" "" "replica(1)" 187
.xx "" "/xformpoint, xformpointd, xformplane," "pushmat, popmat, rot, qrot, scale, move,/" "" "matrix(2)" 450
.xx "communication channel" "" "pushssl \- attach SSL version 2 encryption to a" "" "pushssl(2)" 493
.xx "freeThumbprints, okThumbprint, readcert,/" "" "pushtls, tlsClient, tlsServer, initThumbprints," "" "pushtls(2)" 494
.xx "" "dirfstat, dirwstat, dirfwstat, nulldir \- get and" "put file status" "/fstat, wstat, fwstat, dirstat," "stat(2)" 533
.xx "" "/attachproc, get1, get2, get4, get8, put1," "put2, put4, put8, beswab, beswal, beswav,/" "" "mach(2)" 445
.xx "fread, fwrite/" "fgetc, getc, getchar, fputc, putc," "putchar, ungetc, fgets, gets, fputs, puts," "" "fgetc(2)" 380
.xx "" "getenv," "putenv \- access environment variables" "" "getenv(2)" 405
.xx "" "" "pwd, pbd \- working directory" "" "pwd(1)" 179
.xx "" "read, readn, write, pread," "pwrite \- read or write file" "" "read(2)" 505
.xx "" "readv, writev, preadv," "pwritev \- scatter/gather read and write" "" "readv(2)" 507
.xx "" "0a, 1a, 2a, 5a, 6a, 7a, 8a, ka," "qa, va \- assemblers" "" "2a(1)" 4
.xx "qlen, slerp, qmid, qsqrt \-/" "qtom, mtoq," "qadd, qsub, qneg, qmul, qdiv, qunit, qinv," "" "quaternion(2)" 499
.xx "" "" "qball \- 3-d rotation controller" "" "qball(2)" 497
.xx "" "0c, 1c, 2c, 5c, 6c, 7c, 8c, kc," "qc, vc \- C compilers" "" "2c(1)" 5
.xx "" "qtom, mtoq, qadd, qsub, qneg, qmul," "qdiv, qunit, qinv, qlen, slerp, qmid, qsqrt \-/" "" "quaternion(2)" 499
.xx "files" "" "qer, runq \- queue management for spooled" "" "qer(8)" 924
.xx "" "5i, ki, vi," "qi \- instruction simulators" "" "vi(1)" 256
.xx "" "0l, 1l, 2l, 5l, 6l, 7l, 8l, kl," "ql, vl \- loaders" "" "2l(1)" 8
.xx "runlock, wlock,/" "lock, canlock, unlock," "qlock, canqlock, qunlock, rlock, canrlock," "" "lock(2)" 442
.xx "qsqrt \-/" "qtom, mtoq, qadd, qsub, qneg," "qmul, qdiv, qunit, qinv, qlen, slerp, qmid," "" "quaternion(2)" 499
.xx "viewport/" "/xformplane, pushmat, popmat, rot," "qrot, scale, move, xform, ixform, persp, look," "" "matrix(2)" 450
.xx "" "" "qsort \- quicker sort" "" "qsort(2)" 498
.xx "slerp, qmid, qsqrt \-/" "qtom, mtoq, qadd," "qsub, qneg, qmul, qdiv, qunit, qinv, qlen," "" "quaternion(2)" 499
.xx "" "wrkey, login, newns, none, as \- maintain or" "query authentication databases" "/debug," "auth(8)" 833
.xx "csquery, dns, dnstcp, dnsquery, dnsdebug,/" "" "query, ipquery, mkhash, mkdb, mkhosts, cs," "" "ndb(8)" 893
.xx "" "pq, pqgen, pqsrv \-" "query POST database" "" "pq(1)" 170
.xx "" "qer, runq \-" "queue management for spooled files" "" "qer(8)" 924
.xx "locks,/" "/rwakeupall, incref, decref \- spin locks," "queueing rendezvous locks, reader-writer" "" "lock(2)" 442
.xx "" "qtom, mtoq, qadd, qsub, qneg, qmul, qdiv," "qunit, qinv, qlen, slerp, qmid, qsqrt \-/" "" "quaternion(2)" 499
.xx "" "lock, canlock, unlock, qlock, canqlock," "qunlock, rlock, canrlock, runlock, wlock,/" "" "lock(2)" 442
.xx "quoted/" "/quotestrfmt, quoterunestrfmt," "quotefmtinstall, doquote, needsrcquote \-" "" "quote(2)" 501
.xx "unquoterunestrdup,/" "quotestrdup," "quoterunestrdup, unquotestrdup," "" "quote(2)" 501
.xx "" "/unquoterunestrdup, quotestrfmt," "quoterunestrfmt, quotefmtinstall, doquote,/" "" "quote(2)" 501
.xx "unquotestrdup, unquoterunestrdup,/" "" "quotestrdup, quoterunestrdup," "" "quote(2)" 501
.xx "" "/unquotestrdup, unquoterunestrdup," "quotestrfmt, quoterunestrfmt,/" "" "quote(2)" 501
.xx "" "rtc \- real-time clock and non-volatile" "RAM" "" "rtc(3)" 630
.xx "" "" "ramfs \- memory file system" "" "ramfs(4)" 705
.xx "truerand, ntruerand, genrandom, prng,/" "" "rand, lrand, frand, nrand, lnrand, srand," "" "rand(2)" 502
.xx "" "dhcpd, dhcpleases," "rarpd, tftpd \- Internet booting" "" "dhcpd(8)" 845
.xx "" "" "ratfs \- mail address ratification file system" "" "ratfs(4)" 706
.xx "" "" "ratrace \- trace process system calls" "" "ratrace(1)" 180
.xx "" "dumparenas, restore \- backup venti arenas to" "ray discs or restore from them" "/tobackup," "backup(8)" 835
.xx "whatis, ., ~ \- command language" "" "rc, cd, eval, exec, exit, flag, rfork, shift, wait," "" "rc(1)" 181
.xx "" "setupRC4state," "rc4, rc4skip, rc4back - alleged rc4 encryption" "" "rc4(2)" 504
.xx "servers" "" "rdarena, wrarena \- copy arenas between venti" "" "venti-backup(8)" 960
.xx "" "" "rdbfs \- remote kernel debugging file system" "" "rdbfs(4)" 707
.xx "listing" "" "rdproto \- parse and process a proto file" "" "proto(2)" 492
.xx "" "cat," "read \- catenate files" "" "cat(1)" 39
.xx "" "readv, writev, preadv, pwritev \- scatter/gather" "read and write" "" "readv(2)" 507
.xx "" "dirread, dirreadall \-" "read directory" "" "dirread(2)" 348
.xx "write file" "" "read, readn, write, pread, pwrite \- read or" "" "read(2)" 505
.xx "" "" "read, write \- transfer data from and to a file" "" "read(5)" 745
.xx "" "" "read, write, copy \- simple Venti clients" "" "venti(1)" 255
.xx "" "/convM2D, fcallfmt, dirfmt, dirmodefmt," "read9pmsg, statcheck, sizeS2M, sizeD2M \-/" "" "fcall(2)" 376
.xx "" "objtype, readobj, objtraverse, isar, nextar," "readar \- object file interpretation functions" "" "object(2)" 475
.xx "" "/estrdup9p, listensrv, postfd, postmountsrv," "readbuf, readstr, respond, responderror,/" "" "9p(2)" 273
.xx "" "/freeThumbprints, okThumbprint, readcert," "readcertchain \- attach TLS1 or SSL3/" "" "pushtls(2)" 494
.xx "color map" "RGB," "readcolmap, writecolmap \- access display" "" "readcolmap(2)" 506
.xx "file/" "/closefile, removefile, walkfile, opendirfile," "readdirfile, closedirfile, hasperm \- in-memory" "" "9pfile(2)" 281
.xx "" "Send, Post, Delmesg, Save \- file based mail" "reader" "/mailplumb, msgs, Arch, Spam, Reply," "msgs(1)" 142
.xx "" "cdfs, cddb \- optical disc (CD, DVD, B) track" "reader and writer file system" "" "cdfs(4)" 656
.xx "" "/\- spin locks, queueing rendezvous locks," "reader-writer locks, rendezvous points, and/" "" "lock(2)" 442
.xx "" "/loadimage, cloadimage, unloadimage," "readimage, writeimage, bytesperline,/" "" "allocimage(2)" 289
.xx "" "nedmail \-" "reading mail" "" "nedmail(1)" 149
.xx "" "open, create, close \- open a file for" "reading or writing, create file" "" "open(2)" 477
.xx "" "wordsperline \- allocating, freeing," "reading, writing images" "/bytesperline," "allocimage(2)" 289
.xx "" "/nhgets, hnputv, hnputl, hnputs, ptclbsum," "readipifc \- Internet Protocol addressing" "" "ip(2)" 437
.xx "" "/allocmemimage, allocmemimaged," "readmemimage, creadmemimage,/" "" "memdraw(2)" 452
.xx "drawgetrect, menuhit, setcursor \-/" "initmouse," "readmouse, closemouse, moveto, getrect," "" "mouse(2)" 461
.xx "" "read," "readn, write, pread, pwrite \- read or write file" "" "read(2)" 505
.xx "convM2TR,/" "authdial, passtokey, nvcsum," "readnvram, convT2M, convM2T, convTR2M," "" "authsrv(2)" 302
.xx "object file interpretation functions" "objtype," "readobj, objtraverse, isar, nextar, readar \-" "" "object(2)" 475
.xx "" "mkpaqfs \- make a compressed" "read-only file system" "" "mkpaqfs(8)" 889
.xx "" "paqfs \- compressed" "read-only file system" "" "paqfs(4)" 703
.xx "" "listensrv, postfd, postmountsrv, readbuf," "readstr, respond, responderror,/" "/estrdup9p," "9p(2)" 273
.xx "" "/uninstallsubfont, subfontname, readsubfont," "readsubfonti, writesubfont, stringsubfont,/" "" "subfont(2)" 540
.xx "scatter/gather read and write" "" "readv, writev, preadv, pwritev \-" "" "readv(2)" 507
.xx "" "abaco," "readweb \- browse the World-Wide Web" "" "abaco(1)" 10
.xx "" "malloc, mallocalign, mallocz, free," "realloc, calloc, msize, setmalloctag,/" "" "malloc(2)" 448
.xx "" "rtc \-" "real-time clock and non-volatile RAM" "" "rtc(3)" 630
.xx "" "trace \- show" "real-time) process behavior" "" "trace(1)" 243
.xx "optionally reboot the system" "fshalt," "reboot \- halt any local file systems and" "" "fshalt(8)" 866
.xx "remote file server connection" "" "reboot \- reboot the system upon loss of" "" "reboot(8)" 926
.xx "" "clocks, process/process group ids, user, null," "reboot, etc." "cons \- console," "cons(3)" 590
.xx "" "\- halt any local file systems and optionally" "reboot the system" "fshalt, reboot" "fshalt(8)" 866
.xx "server connection" "reboot \-" "reboot the system upon loss of remote file" "" "reboot(8)" 926
.xx "" "scribblealloc," "recognize \- character recognition" "" "scribble(2)" 517
.xx "" "ssl \- SSL" "record layer" "" "ssl(3)" 639
.xx "" "tls \- TLS1 and SSL3" "record layer" "" "tls(3)" 641
.xx "" "/rectXrect, rectclip, combinerect, Dx, Dy, Pt," "Rect, Rpt \- arithmetic on points and/" "" "addpt(2)" 286
.xx "eqpt, eqrect,/" "addpt, subpt, mulpt, divpt," "rectaddpt, rectsubpt, insetrect, canonrect," "" "addpt(2)" 286
.xx "drawerror, initdisplay,/" "Display, Point," "Rectangle, Cursor, initdraw, geninitdraw," "" "graphics(2)" 411
.xx "" "/insetrect, canonrect, eqpt, eqrect, ptinrect," "rectinrect, rectXrect, rectclip, combinerect,/" "" "addpt(2)" 286
.xx "" "addpt, subpt, mulpt, divpt, rectaddpt," "rectsubpt, insetrect, canonrect, eqpt, eqrect,/" "" "addpt(2)" 286
.xx "" "/canonrect, eqpt, eqrect, ptinrect, rectinrect," "rectXrect, rectclip, combinerect, Dx, Dy, Pt,/" "" "addpt(2)" 286
.xx "" "/procdata, procexec, procexecl, procrfork, recv," "recvp, recvul, send, sendp, sendul, nbrecv,/" "" "thread(2)" 545
.xx "" "workerdispatch, timerdispatch, timerrecall," "recvt, sendt \- worker thread management" "" "worker(2)" 578
.xx "" "reader-writer locks, rendezvous points, and" "reference counts" "/rendezvous locks," "lock(2)" 442
.xx "" "/dot3, cross3, len3, dist3, unit3, midpt3, lerp3," "reflect3, nearseg3, pldist3, vdiv3, vrem3,/" "" "arith3(2)" 294
.xx "rregexec, rregsub, regerror \-/" "regcomp," "regcomplit, regcompnl, regexec, regsub," "" "regexp(2)" 508
.xx "" "" "regexp \- regular expression notation" "" "regexp(6)" 789
.xx "" "srv \- server" "registry" "" "srv(3)" 638
.xx "" "regcomp, regcomplit, regcompnl, regexec," "regsub, rregexec, rregsub, regerror \- regular/" "" "regexp(2)" 508
.xx "" "regexp \-" "regular expression notation" "" "regexp(6)" 789
.xx "" "samterm \- screen editor with structural" "regular expressions" "sam, B, sam.save," "sam(1)" 198
.xx "" "comm \- select or" "reject lines common to two sorted files" "" "comm(1)" 47
.xx "" "dial, hangup, announce, listen, accept," "reject, netmkaddr, setnetmtpt,/" "" "dial(2)" 345
.xx "" "join \-" "relational database operator" "" "join(1)" 110
.xx "" "fabs, fmod, floor, ceil \- absolute value," "remainder, floor, ceiling functions" "" "floor(2)" 384
.xx "" "telnetd, rlogind, rexexec, ftpd \- Internet" "remote access daemons" "" "ipserv(8)" 878
.xx "" "securenet \- Digital Pathways SecureNet Key" "remote authentication box" "" "securenet(8)" 940
.xx "" "reboot \- reboot the system upon loss of" "remote file server connection" "" "reboot(8)" 926
.xx "Virtual Network Computing (VN)" "vncs, vncv \-" "remote frame buffer server and viewer for" "" "vnc(1)" 258
.xx "" "rdbfs \-" "remote kernel debugging file system" "" "rdbfs(4)" 707
.xx "transfer" "con, telnet, rx, hayes, xms, xmr \-" "remote login, execution, and XMODEM file" "" "con(1)" 48
.xx "" "import \- import a name space from a" "remote system" "" "import(4)" 688
.xx "" "rwd, conswdir \- maintain" "remote working directory" "" "rwd(1)" 196
.xx "" "" "remove \- remove a file" "" "remove(2)" 510
.xx "" "" "remove \- remove a file from a server" "" "remove(5)" 746
.xx "" "rm \-" "remove files" "" "rm(1)" 195
.xx "" "deroff, delatex \-" "remove formatting requests" "" "deroff(1)" 67
.xx "" "strip \-" "remove symbols from binary files" "" "strip(1)" 224
.xx "" "/freefidpool, allocfid, closefid, lookupfid," "removefid, Req, Reqpool, allocreqpool,/" "" "9pfid(2)" 279
.xx "" "/alloctree, freetree, File, createfile, closefile," "removefile, walkfile, opendirfile, readdirfile,/" "" "9pfile(2)" 281
.xx "" "/freereqpool, allocreq, closereq, lookupreq," "removereq \- 9P fid, request tracking" "" "9pfid(2)" 279
.xx "synchronization" "" "rendezvous \- user level process" "" "rendezvous(2)" 511
.xx "" "/rendezvous locks, reader-writer locks," "rendezvous points, and reference counts" "" "lock(2)" 442
.xx "" "uniq \- report" "repeated lines in a file" "" "uniq(1)" 249
.xx "" "Image, draw, gendraw, drawreplxy, drawrepl," "replclipr, line, poly, fillpoly, bezier, bezspline,/" "" "draw(2)" 350
.xx "" "changes, pull, push, scan \- client-server" "replica management" "" "replica(1)" 187
.xx "" "compactdb, updatedb \- simple client-server" "replica management" "/applylog," "replica(8)" 927
.xx "" "/M, Mg, mspool, mailplumb, msgs, Arch, Spam," "Reply, Send, Post, Delmesg, Save \- file based/" "" "msgs(1)" 142
.xx "" "weather \- print weather" "report" "" "weather(1)" 262
.xx "" "uniq \-" "report repeated lines in a file" "" "uniq(1)" 249
.xx "" "cvsfs \- cvs" "repository viewer" "" "cvsfs(4)" 663
.xx "" "color \-" "representation of pixels and colors" "" "color(6)" 759
.xx "" "/allocfid, closefid, lookupfid, removefid, Req," "Reqpool, allocreqpool, freereqpool, allocreq,/" "" "9pfid(2)" 279
.xx "" "deroff, delatex \- remove formatting" "requests" "" "deroff(1)" 67
.xx "call error" "errstr," "rerrstr, werrstr \- description of last system" "" "errstr(2)" 367
.xx "" "" "resample \- resample a picture" "" "resample(1)" 190
.xx "" "iprint, hwdraw \- drawing routines for" "resident images" "/memimagestring," "memdraw(2)" 452
.xx "" "memltorear, memltorearn \- windows of" "resident images" "/memltofrontn," "memlayer(2)" 456
.xx "" "/namectlfont, namectlimage, newcontrolset," "resizecontrolset \- interactive graphical/" "" "control(2)" 321
.xx "" "fork, rfork \- manipulate process" "resources" "" "fork(2)" 391
.xx "message parsing" "Cmdbuf, parsecmd," "respondcmderror, lookupcmd \- control" "" "9pcmdbuf(2)" 278
.xx "" "postmountsrv, readbuf, readstr, respond," "responderror, threadlistensrv,/" "/postfd," "9p(2)" 273
.xx "or restore/" "backup, tobackup, dumparenas," "restore \- backup venti arenas to blu-ray discs" "" "backup(8)" 835
.xx "" "hget \-" "retrieve a web page corresponding to a url" "" "hget(1)" 105
.xx "" "error \-" "return an error" "" "error(5)" 741
.xx "descriptor" "fd2path \-" "return file name associated with file" "" "fd2path(2)" 379
.xx "" "getcallerpc \- fetch" "return PC of current function" "" "getcallerpc(2)" 404
.xx "descriptor" "iounit \-" "return size of atomic I/O unit for file" "" "iounit(2)" 436
.xx "" "/setvbuf, setbuf, fgetpos, ftell, fsetpos, fseek," "rewind, feof, ferror, clearerr \- standard/" "" "fopen(2)" 388
.xx "" "" "rewrite \- mail rewrite rules" "" "rewrite(6)" 790
.xx "daemons" "telnetd, rlogind," "rexexec, ftpd \- Internet remote access" "" "ipserv(8)" 878
.xx "" "/openfont, buildfont, freefont, Pfmt," "Rfmt, strtochan, chantostr, chantodepth \-/" "" "graphics(2)" 411
.xx "" "fork," "rfork \- manipulate process resources" "" "fork(2)" 391
.xx "language" "rc, cd, eval, exec, exit, flag," "rfork, shift, wait, whatis, ., ~ \- command" "" "rc(1)" 181
.xx "display color map" "" "RGB, readcolmap, writecolmap \- access" "" "readcolmap(2)" 506
.xx "" "cmap2rgb, cmap2rgba," "rgb2cmap \- colors and color maps" "" "color(2)" 319
.xx "" "aesXCBCmac - advanced encryption standard" "rijndael)" "/setupAESXCBCstate," "aes(2)" 288
.xx "" "" "rio \- window system files" "" "rio(4)" 708
.xx "" "" "rio, label, window, wloc \- window system" "" "rio(1)" 191
.xx "" "winwatch \- monitor" "rio windows" "" "winwatch(1)" 264
.xx "and routing" "ipconfig," "rip, linklocal, ipv6on \- Internet configuration" "" "ipconfig(8)" 874
.xx "symoff, fpformat, beieee80ftos,/" "cisctrace," "risctrace, ciscframe, riscframe, localaddr," "" "debugger(2)" 340
.xx "" "/canlock, unlock, qlock, canqlock, qunlock," "rlock, canrlock, runlock, wlock, canwlock,/" "" "lock(2)" 442
.xx "access daemons" "telnetd," "rlogind, rexexec, ftpd \- Internet remote" "" "ipserv(8)" 878
.xx "" "" "rm \- remove files" "" "rm(1)" 195
.xx "" "casv, casp, loadlink, storecond, _tas \- atomic" "RMW operations" "ainc, adec, cas," "atom(2)" 298
.xx "" "sqrt \- exponential, logarithm, power, square" "root" "exp, log, log10, pow, pow10," "exp(2)" 374
.xx "" "" "root \- the root file system" "" "root(3)" 629
.xx "" "boot \- connect to the" "root file server" "" "boot(8)" 837
.xx "" "/xformpointd, xformplane, pushmat, popmat," "rot, qrot, scale, move, xform, ixform, persp,/" "" "matrix(2)" 450
.xx "" "qball \- 3-d" "rotation controller" "" "qball(2)" 497
.xx "" "linklocal, ipv6on \- Internet configuration and" "routing" "ipconfig, rip," "ipconfig(8)" 874
.xx "" "send \- mail" "routing and delivery" "" "send(8)" 941
.xx "" "/rectclip, combinerect, Dx, Dy, Pt, Rect," "Rpt \- arithmetic on points and rectangles" "" "addpt(2)" 286
.xx "" "/regcompnl, regexec, regsub, rregexec," "rregsub, regerror \- regular expression" "" "regexp(2)" 508
.xx "" "/asn1toRSApriv, decodePEM, rsadecrypt," "rsaencrypt, rsagen, rsaprivalloc, rsaprivfree,/" "" "rsa(2)" 512
.xx "rsa2x509 \- generate and format rsa keys" "" "rsagen, rsafill, asn12rsa, rsa2pub, rsa2ssh," "" "rsa(8)" 929
.xx "" "/rsagen, rsaprivalloc, rsaprivfree, rsaprivtopub," "rsapuballoc, rsapubfree, X509toRSApub,/" "" "rsa(2)" 512
.xx "" "/canrlock, runlock, wlock, canwlock, wunlock," "rsleep, rwakeup, rwakeupall, incref, decref \-/" "" "lock(2)" 442
.xx "" "" "rtc \- real-time clock and non-volatile RAM" "" "rtc(3)" 630
.xx "" "" "rtcp, stcp \- measure TCP bandwidth" "" "rtcp(8)" 931
.xx "" "ip, esp, gre, icmp, icmpv6, ipmux," "rudp, tcp, udp \- network protocols over IP" "" "ip(3)" 606
.xx "" "plumb \- format of plumb messages and" "rules" "" "plumb(6)" 785
.xx "" "rewrite \- mail rewrite" "rules" "" "rewrite(6)" 790
.xx "" "lock \-" "run a command under lock" "" "lock(1)" 120
.xx "through IPv4" "6in4 - configure and" "run automatic or manual 6to4 tunnel of IPv6" "" "6in4(8)" 822
.xx "" "UTF, Unicode, ASCII," "rune \- character set and format" "" "utf(6)" 797
.xx "" "runestrrchr, runestrdup, runestrstr \-" "rune string operations" "/runestrchr," "runestrcat(2)" 516
.xx "" "/fmtfdinit, fmtfdflush, fmtstrinit, fmtstrflush," "runefmtstrinit, runefmtstrflush, errfmt \-/" "" "fmtinstall(2)" 385
.xx "utfrune,/" "runetochar, chartorune, runelen," "runenlen, fullrune, utfecpy, utflen, utfnlen," "" "rune(2)" 514
.xx "" "/smprint, runesprint, runesnprint, runeseprint," "runesmprint, vfprint, vsnprint, vseprint,/" "" "print(2)" 487
.xx "runestrncpy,/" "runestrcat, runestrncat," "runestrcmp, runestrncmp, runestrcpy," "" "runestrcat(2)" 516
.xx "" "/runestrlen, runestrchr, runestrrchr," "runestrdup, runestrstr \- rune string/" "" "runestrcat(2)" 516
.xx "" "/runestrncmp, runestrcpy, runestrncpy," "runestrecpy, runestrlen, runestrchr,/" "" "runestrcat(2)" 516
.xx "" "/runestring, runestringn, stringbg, stringnbg," "runestringbg, runestringnbg, _string, ARROW,/" "" "draw(2)" 350
.xx "" "/stringnwidth, runestringsize, runestringwidth," "runestringnwidth \- graphical size of strings" "" "stringsize(2)" 539
.xx "" "stringsize, stringwidth, stringnwidth," "runestringsize, runestringwidth,/" "" "stringsize(2)" 539
.xx "runestrcpy, runestrncpy,/" "runestrcat," "runestrncat, runestrcmp, runestrncmp," "" "runestrcat(2)" 516
.xx "string/" "/runestrecpy, runestrlen, runestrchr," "runestrrchr, runestrdup, runestrstr \- rune" "" "runestrcat(2)" 516
.xx "fullrune, utfecpy, utflen, utfnlen, utfrune,/" "" "runetochar, chartorune, runelen, runenlen," "" "rune(2)" 514
.xx "" "utflen, utfnlen, utfrune, utfrrune, utfutf \-" "rune/UTF conversion" "/fullrune, utfecpy," "rune(2)" 514
.xx "" "/vseprint, vsmprint, runevsnprint, runevseprint," "runevsmprint \- print formatted output" "" "print(2)" 487
.xx "" "/qlock, canqlock, qunlock, rlock, canrlock," "runlock, wlock, canwlock, wunlock, rsleep,/" "" "lock(2)" 442
.xx "" "uptime \- show how long the system has been" "running" "" "uptime(1)" 251
.xx "" "proc \-" "running processes" "" "proc(3)" 625
.xx "" "qer," "runq \- queue management for spooled files" "" "qer(8)" 924
.xx "" "/wlock, canwlock, wunlock, rsleep, rwakeup," "rwakeupall, incref, decref \- spin locks,/" "" "lock(2)" 442
.xx "directory" "" "rwd, conswdir \- maintain remote working" "" "rwd(1)" 196
.xx "execution, and XMODEM file/" "con, telnet," "rx, hayes, xms, xmr \- remote login," "" "con(1)" 48
.xx "" "" "sacfs \- compressed file system" "" "sacfs(4)" 711
.xx "s_free, s_incref, s_memappend, s_nappend,/" "" "s_alloc, s_append, s_array, s_copy, s_error," "" "string(2)" 537
.xx "" "fortune \-" "sample lines from a file" "" "fortune(1)" 90
.xx "structural regular expressions" "sam, B," "sam.save, samterm \- screen editor with" "" "sam(1)" 198
.xx "s_memappend,/" "s_alloc, s_append," "s_array, s_copy, s_error, s_free, s_incref," "" "string(2)" 537
.xx "" "/\- AHCI (Advanced Host Controller Interface)" "SATA (Serial AT) storage device drivers" "" "sdahci(3)" 633
.xx "" "msgs, Arch, Spam, Reply, Send, Post, Delmesg," "Save \- file based mail reader" "/mailplumb," "msgs(1)" 142
.xx "server" "httpd," "save, imagemap, man2html, webls \- HTTP" "" "httpd(8)" 871
.xx "" "brk," "sbrk \- change memory allocation" "" "brk(2)" 313
.xx "" "/xformplane, pushmat, popmat, rot, qrot," "scale, move, xform, ixform, persp, look,/" "" "matrix(2)" 450
.xx "" "changes, pull, push," "scan \- client-server replica management" "" "replica(1)" 187
.xx "" "fscanf," "scanf, sscanf, vfscanf \- scan formatted input" "" "fscanf(2)" 400
.xx "" "" "scanmail, testscan \- spam filters" "" "scanmail(8)" 932
.xx "" "awk \- pattern-directed" "scanning and processing language" "" "awk(1)" 26
.xx "" "" "scat \- sky catalogue and Digitized Sky Survey" "" "scat(7)" 818
.xx "" "readv, writev, preadv, pwritev \-" "scatter/gather read and write" "" "readv(2)" 507
.xx "" "/fdopen, fileno, fclose, sopenr, sopenw," "sclose, fflush, setvbuf, setbuf, fgetpos, ftell,/" "" "fopen(2)" 388
.xx "s_memappend,/" "s_alloc, s_append, s_array," "s_copy, s_error, s_free, s_incref," "" "string(2)" 537
.xx "from/to Unix or Plan 9" "ssh, sshnet," "scp, sshserve \- secure login and file copy" "" "ssh(1)" 219
.xx "allocwindow, bottomwindow,/" "" "Screen, allocscreen, publicscreen, freescreen," "" "window(2)" 576
.xx "expressions" "sam, B, sam.save, samterm \-" "screen editor with structural regular" "" "sam(1)" 198
.xx "" "draw \-" "screen graphics" "" "draw(3)" 593
.xx "" "lens \- interactive" "screen magnifier" "" "lens(1)" 118
.xx "" "" "screenlock \- disable access to a terminal" "" "screenlock(8)" 935
.xx "recognition" "" "scribblealloc, recognize \- character" "" "scribble(2)" 517
.xx "" "at, drain, expect, pass \- dialer" "scripting tools" "" "expect(1)" 81
.xx "" "cpurc, cpurc.local, termrc, termrc.local \- boot" "scripts" "" "cpurc(8)" 843
.xx "" "usage \- command-line parsing for shell" "scripts" "getflags," "getflags(8)" 867
.xx "" "na \- assembler for the Symbios Logic" "SCSI I/O Processors" "" "na(8)" 892
.xx "" "openscsi, closescsi, scsiready, scsi, scsicmd," "scsierror \- SCSI device operations" "" "scsi(2)" 519
.xx "" "" "scuzz \- SCSI target control" "" "scuzz(8)" 936
.xx "" "" "sd \- storage device interface" "" "sd(3)" 631
.xx "Interface) SATA (Serial AT) storage device/" "" "sdahci \- AHCI (Advanced Host Controller" "" "sdahci(3)" 633
.xx "device interface" "" "sdaoe \- ATA-over-Ethernet (Ao) storage" "" "sdaoe(3)" 635
.xx "" "" "sdp \- secure datagram protocol" "" "sdp(3)" 636
.xx "" "grep \-" "search a file for a pattern" "" "grep(1)" 97
.xx "" "thesaurus \-" "search online thesaurus" "" "thesaurus(1)" 239
.xx "" "time, nsec \- time in" "seconds and nanoseconds since epoch" "" "time(2)" 549
.xx "" "aescbc, ipso," "secstore \- secstore commands" "" "secstore(1)" 203
.xx "" "" "secstored, secuser \- secstore commands" "" "secstore(8)" 939
.xx "" "sdp \-" "secure datagram protocol" "" "sdp(3)" 636
.xx "" "sha1pickle, sha1unpickle \- cryptographically" "secure hashes" "/md5pickle, md5unpickle," "sechash(2)" 521
.xx "Plan 9" "ssh, sshnet, scp, sshserve \-" "secure login and file copy from/to Unix or" "" "ssh(1)" 219
.xx "remote authentication box" "" "securenet \- Digital Pathways SecureNet Key" "" "securenet(8)" 940
.xx "" "secstored," "secuser \- secstore commands" "" "secstore(8)" 939
.xx "" "" "sed \- stream editor" "" "sed(1)" 205
.xx "" "" "seek \- change file offset" "" "seek(2)" 523
.xx "" "faces," "seemail, vwhois \- mailbox interface" "" "faces(1)" 83
.xx "" "" "segbrk \- change memory allocation" "" "segbrk(2)" 526
.xx "" "" "segflush \- flush instruction and data caches" "" "segflush(2)" 527
.xx "memory" "segattach, segdetach," "segfree \- map/unmap a segment in virtual" "" "segattach(2)" 524
.xx "" "" "segment \- long lived memory segments" "" "segment(3)" 637
.xx "files" "comm \-" "select or reject lines common to two sorted" "" "comm(1)" 47
.xx "" "semacquire," "semrelease \- user level semaphores" "" "semacquire(2)" 528
.xx "" "" "send \- mail routing and delivery" "" "send(8)" 941
.xx "" "postnote \-" "send a note to a process or process group" "" "postnote(2)" 485
.xx "" "plumb \-" "send message to plumber" "" "plumb(1)" 169
.xx "" "/mspool, mailplumb, msgs, Arch, Spam, Reply," "Send, Post, Delmesg, Save \- file based mail/" "" "msgs(1)" 142
.xx "" "/procexecl, procrfork, recv, recvp, recvul," "send, sendp, sendul, nbrecv, nbrecvp,/" "" "thread(2)" 545
.xx "" "wol \-" "send wake-on-lan Ethernet packet" "" "wol(8)" 966
.xx "" "marshal \- formatting and" "sending mail" "" "marshal(1)" 129
.xx "" "/timerdispatch, timerrecall, recvt," "sendt \- worker thread management" "" "worker(2)" 578
.xx "" "/procrfork, recv, recvp, recvul, send, sendp," "sendul, nbrecv, nbrecvp, nbrecvul, nbsend,/" "" "thread(2)" 545
.xx "runeseprint,/" "print, fprint, sprint, snprint," "seprint, smprint, runesprint, runesnprint," "" "print(2)" 487
.xx "" "" "seq \- print sequences of numbers" "" "seq(1)" 208
.xx "" "(Advanced Host Controller Interface) SATA" "Serial AT) storage device drivers" "/\- AHCI" "sdahci(3)" 633
.xx "" "usbd \- Universal" "Serial Bus daemon" "" "usbd(4)" 725
.xx "" "probe, serial, usbeject, usbfat: \- Universal" "Serial Bus device drivers" "/ether, kb, print," "usb(4)" 722
.xx "" "uart, eia \-" "serial communication control" "" "uart(3)" 644
.xx "circuit (I⁲C) interface" "twsi - two-wire" "serial interface (TWS) and inter-integrated" "" "twsi(3)" 643
.xx "" "audio, ccid, disk, ether, kb, print, probe," "serial, usbeject, usbfat: \- Universal Serial Bus/" "" "usb(4)" 722
.xx "" "s_alloc, s_append, s_array, s_copy," "s_error, s_free, s_incref, s_memappend,/" "" "string(2)" 537
.xx "" "u9fs \-" "serve 9P from Unix" "" "u9fs(4)" 718
.xx "" "httpfile \-" "serve a single web file" "" "httpfile(4)" 686
.xx "" "aoesrv -" "serve data via ATA-over-Ethernet (Ao)" "" "aoesrv(8)" 829
.xx "" "partfs \-" "serve file, with partitions" "" "partfs(8)" 902
.xx "" "aquarela \- CIFS" "server" "" "aquarela(8)" 831
.xx "" "bandt2 \- Viaduct bridge-and-tunnel client and" "server" "" "bandt2(8)" 836
.xx "" "boot \- connect to the root file" "server" "" "boot(8)" 837
.xx "" "cpu \- connection to CPU" "server" "" "cpu(1)" 52
.xx "" "up authentication on a file descriptor to a file" "server" "fauth \- set" "fauth(2)" 375
.xx "" "fossil, flchk, flfmt \- archival file" "server" "" "fossil(4)" 679
.xx "" "fsconfig \- configuring a file" "server" "" "fsconfig(8)" 862
.xx "" "hxferenc, \- routines for creating an http" "server" "/hurlfmt, hurlunesc, hvprint, hwrite," "httpd(2)" 427
.xx "" "save, imagemap, man2html, webls \- HTTP" "server" "httpd," "httpd(8)" 871
.xx "" "ike \- IPsec Internet Key Exchange file" "server" "" "ike(4)" 687
.xx "" "remove \- remove a file from a" "server" "" "remove(5)" 746
.xx "" "upasfs, startupasfs \- mail file" "server" "" "upasfs(4)" 720
.xx "" "venti \- archival storage" "server" "" "venti(2)" 558
.xx "" "venti \- archival storage" "server" "" "venti(6)" 798
.xx "" "venti \- archival storage" "server" "" "venti(8)" 956
.xx "" "syncindex \- prepare and maintain a venti" "server" "/fmtbloom, fmtindex, fmtisect," "venti-fmt(8)" 961
.xx "" "vtsrvhello, vtlisten, vtgetreq, vtrespond \- Venti" "server" "" "venti-server(2)" 573
.xx "" "tlsclient, tlssrvtunnel, tlsclienttunnel \- TLS" "server and client" "tlssrv," "tlssrv(8)" 952
.xx "Computing/" "vncs, vncv \- remote frame buffer" "server and viewer for Virtual Network" "" "vnc(1)" 258
.xx "" "\- reboot the system upon loss of remote file" "server connection" "reboot" "reboot(8)" 926
.xx "" "cwfs \- cached-worm file" "server, dump" "" "cwfs(4)" 665
.xx "" "fs \- file" "server, dump" "" "fs(4)" 682
.xx "" "fs, exsort \- file" "server maintenance" "" "fs(8)" 857
.xx "" "exportfs, srvfs \- network file" "server plumbing" "" "exportfs(4)" 670
.xx "" "srv \-" "server registry" "" "srv(3)" 638
.xx "" "changes, pull, push, scan \-" "server replica management" "" "replica(1)" 187
.xx "" "applylog, compactdb, updatedb \- simple" "server replica management" "applychanges," "replica(8)" 927
.xx "" "users \- file" "server user list format" "" "users(6)" 796
.xx "" "for communicating with authentication" "servers" "/_asgetticket, _asrdresp \- routines" "authsrv(2)" 302
.xx "" "intro \- introduction to file" "servers" "" "intro(4)" 651
.xx "" "mnt \- attach to 9P" "servers" "" "mnt(3)" 619
.xx "" "pop3, imap4d \- Internet mail" "servers" "" "pop3(8)" 917
.xx "" "kijkuit, doom, kapellen \- Antwerp Plan 9" "servers" "/leffe, affligem, arend, koninck," 
.xx "" "rdarena, wrarena \- copy arenas between venti" "servers" "" "venti-backup(8)" 960
.xx "" "drawterm \- connect to Plan 9 CPU" "servers from other operating systems" "" "drawterm(8)" 849
.xx "" "threadpostmountsrv, srv \- 9P file" "service" "/responderror, threadlistensrv," "9p(2)" 273
.xx "" "gpsfs, gpsevermore \- GPS time and position" "service" "" "gpsfs(8)" 868
.xx "" "nfsserver, portmapper, pcnfsd \- NFS" "service" "" "nfsserver(8)" 900
.xx "" "srv, srvold9p, 9fs, srvssh \- start network file" "service" "" "srv(4)" 713
.xx "" "/freeimage, nameimage, namedimage," "setalpha, loadimage, cloadimage,/" "" "allocimage(2)" 289
.xx "" "/fclose, sopenr, sopenw, sclose, fflush, setvbuf," "setbuf, fgetpos, ftell, fsetpos, fseek, rewind,/" "" "fopen(2)" 388
.xx "" "moveto, getrect, drawgetrect, menuhit," "setcursor \- mouse control" "/closemouse," "mouse(2)" 461
.xx "" "getfcr, setfcr, getfsr," "setfsr \- control floating point" "" "getfcr(2)" 406
.xx "" "" "setjmp, longjmp, notejmp \- non-local goto" "" "setjmp(2)" 529
.xx "" "/mallocz, free, realloc, calloc, msize," "setmalloctag, setrealloctag, getmalloctag,/" "" "malloc(2)" 448
.xx "" "crackhdr, machbytype, machbyname, newmap," "setmap, findseg, unusemap, loadmap,/" "" "mach(2)" 445
.xx "" "/announce, listen, accept, reject, netmkaddr," "setnetmtpt, getnetconninfo, freenetconninfo/" "" "dial(2)" 345
.xx "" "/free, realloc, calloc, msize, setmalloctag," "setrealloctag, getmalloctag, getrealloctag,/" "" "malloc(2)" 448
.xx "" "cap \- capabilities for" "setting the user id of processes" "" "cap(3)" 589
.xx "" "/bootplan9, bootwin9x, bootwinnt, personalize," "setup.9fat, setup.disk, setup.kfs, update \-/" "" "update(8)" 955
.xx "aesCBCdecrypt, aesCTRencrypt,/" "" "setupAESstate, aesCBCencrypt," "" "aes(2)" 288
.xx "encryption/" "/aesCTRencrypt, aesCTRdecrypt," "setupAESXCBCstate, aesXCBCmac - advanced" "" "aes(2)" 288
.xx "bfECBencrypt, bfECBdecrypt - blowfish/" "" "setupBFstate, bfCBCencrypt, bfCBCdecrypt," "" "blowfish(2)" 312
.xx "and triple/" "/key_setup, des56to64, des64to56," "setupDES3state, triple_block_cipher - single" "" "des(2)" 343
.xx "desCBCencrypt, desCBCdecrypt,/" "" "setupDESstate, des_key_setup, block_cipher," "" "des(2)" 343
.xx "" "/bootwinnt, personalize, setup.9fat, setup.disk," "setup.kfs, update \- administration for local/" "" "update(8)" 955
.xx "alleged rc4 encryption" "" "setupRC4state, rc4, rc4skip, rc4back -" "" "rc4(2)" 504
.xx "" "/fileno, fclose, sopenr, sopenw, sclose, fflush," "setvbuf, setbuf, fgetpos, ftell, fsetpos, fseek,/" "" "fopen(2)" 388
.xx "" "s_alloc, s_append, s_array, s_copy, s_error," "s_free, s_incref, s_memappend, s_nappend,/" "" "string(2)" 537
.xx "" "s_putc, s_unique, s_grow, s_read, s_read_line," "s_getline \- extensible strings" "/s_tolower," "string(2)" 537
.xx "secure/" "/hmac_aes, md5pickle, md5unpickle," "sha1pickle, sha1unpickle \- cryptographically" "" "sechash(2)" 521
.xx "" "sum, md5sum," "sha1sum \- sum and count blocks in a file" "" "sum(1)" 225
.xx "aes, hmac_x, hmac_md5,/" "md4, md5, sha1," "sha2_224, sha2_256, sha2_384, sha2_512," "" "sechash(2)" 521
.xx "" "getflags, usage \- command-line parsing for" "shell scripts" "" "getflags(8)" 867
.xx "" "rc, cd, eval, exec, exit, flag, rfork," "shift, wait, whatis, ., ~ \- command language" "" "rc(1)" 181
.xx "" "fedex, ups, usps \- track" "shipments" "" "fedex(1)" 85
.xx "switch between them." "kbmap \-" "show a list of available keyboard maps and" "" "kbmap(1)" 113
.xx "" "uptime \-" "show how long the system has been running" "" "uptime(1)" 251
.xx "" "trace \-" "show (real-time) process behavior" "" "trace(1)" 243
.xx "" "man, lookman," "sig \- print or find pages of this manual" "" "man(1)" 128
.xx "" "dsasigalloc, dsasigfree, dsaprivtopub - digital" "signature algorithm" "/dsaprivfree," "dsa(2)" 356
.xx "" "waserror, poperror, nexterror, error, fmterror," "silenterror \- exception handling for threaded/" "" "error(2)" 365
.xx "" "loopback \- network link" "simulation" "" "loopback(3)" 617
.xx "" "disksim \- disk" "simulator" "" "disksim(8)" 848
.xx "" "5i, ki, vi, qi \- instruction" "simulators" "" "vi(1)" 256
.xx "trigonometric functions" "" "sin, cos, tan, asin, acos, atan, atan2 \-" "" "sin(2)" 530
.xx "" "time, nsec \- time in seconds and nanoseconds" "since epoch" "" "time(2)" 549
.xx "" "/s_append, s_array, s_copy, s_error, s_free," "s_incref, s_memappend, s_nappend, s_new,/" "" "string(2)" 537
.xx "" "/setupDES3state, triple_block_cipher -" "single and triple digital encryption standard" "" "des(2)" 343
.xx "" "httpfile \- serve a" "single web file" "" "httpfile(4)" 686
.xx "" "" "sinh, cosh, tanh \- hyperbolic functions" "" "sinh(2)" 531
.xx "" "" "size \- print size of executable files" "" "size(1)" 209
.xx "" "iounit \- return" "size of atomic I/O unit for file descriptor" "" "iounit(2)" 436
.xx "" "runestringwidth, runestringnwidth \- graphical" "size of strings" "/stringnwidth, runestringsize," "stringsize(2)" 539
.xx "" "/dirfmt, dirmodefmt, read9pmsg, statcheck," "sizeS2M, sizeD2M \- interface to Plan 9 File/" "" "fcall(2)" 376
.xx "" "scat \- sky catalogue and Digitized" "Sky Survey" "" "scat(7)" 818
.xx "" "/ioopen, ioproc, ioread, ioreadn, iowrite \-" "slave I/O processes for threaded programs" "" "ioproc(2)" 434
.xx "processes" "kill," "slay, broke \- print commands to kill" "" "kill(1)" 114
.xx "" "" "sleep \- suspend execution for an interval" "" "sleep(1)" 210
.xx "" "" "sleep, alarm \- delay, ask for delayed note" "" "sleep(2)" 532
.xx "" "/qsub, qneg, qmul, qdiv, qunit, qinv, qlen," "slerp, qmid, qsqrt \- Quaternion arithmetic" "" "quaternion(2)" 499
.xx "" "/genstrongprime, DSAprimes, probably_prime," "smallprimetest \- prime number generation" "" "prime(2)" 486
.xx "" "/s_array, s_copy, s_error, s_free, s_incref," "s_memappend, s_nappend, s_new,/" "" "string(2)" 537
.xx "" "print, fprint, sprint, snprint, seprint," "smprint, runesprint, runesnprint, runeseprint,/" "" "print(2)" 487
.xx "" "smtp," "smtpd \- mail transport" "" "smtp(8)" 942
.xx "" "" "smtpd \- SMTP listener configuration" "" "smtpd(6)" 791
.xx "" "" "snap \- process snapshots" "" "snap(6)" 793
.xx "" "snap," "snapfs \- create and mount process snapshots" "" "snap(4)" 712
.xx "" "/s_free, s_incref, s_memappend, s_nappend," "s_new, s_newalloc, s_parse, s_reset, s_restart,/" "" "string(2)" 537
.xx "" "" "snoopy \- spy on network packets" "" "snoopy(8)" 944
.xx "runesnprint, runeseprint,/" "print, fprint, sprint," "snprint, seprint, smprint, runesprint," "" "print(2)" 487
.xx "print formatted output" "fprintf, printf, sprintf," "snprintf, vfprintf, vprintf, vsprintf, vsnprintf \-" "" "fprintf(2)" 393
.xx "in troff input" "" "soelim \- preprocess so inclusion commands" "" "soelim(1)" 211
.xx "" "4s, 5s, festoon, juggle, life, mahjongg, memo," "sokoban, sudoku \- time wasters" "" "games(1)" 92
.xx "" "fopen, freopen, fdopen, fileno, fclose, sopenr," "sopenw, sclose, fflush, setvbuf, setbuf,/" "" "fopen(2)" 388
.xx "" "qsort \- quicker" "sort" "" "qsort(2)" 498
.xx "" "" "sort \- sort and/or merge files" "" "sort(1)" 212
.xx "" "comm \- select or reject lines common to two" "sorted files" "" "comm(1)" 47
.xx "" "look \- find lines in a" "sorted list" "" "look(1)" 121
.xx "" "audio \-" "SoundBlaster or ESS1688 audio controller" "" "audio(3)" 586
.xx "" "\- synchronize the system clock to a time" "source" "timesync" "timesync(8)" 951
.xx "" "src \- find" "source code for executable" "" "src(1)" 218
.xx "" "bind, mount, unmount \- change name" "space" "" "bind(1)" 33
.xx "" "bind, mount, unmount \- change name" "space" "" "bind(2)" 307
.xx "" "\- structure of conventional file name" "space" "namespace" "namespace(4)" 697
.xx "" "ns \- display name" "space" "" "ns(1)" 155
.xx "" "pipefile \- attach filter to file in name" "space" "" "pipefile(1)" 167
.xx "" "namespace \- name" "space description file" "" "namespace(6)" 779
.xx "" "import \- import a name" "space from a remote system" "" "import(4)" 688
.xx "" "scanmail, testscan \-" "spam filters" "" "scanmail(8)" 932
.xx "" "/M, Mg, mspool, mailplumb, msgs, Arch," "Spam, Reply, Send, Post, Delmesg, Save \- file/" "" "msgs(1)" 142
.xx "" "/s_memappend, s_nappend, s_new, s_newalloc," "s_parse, s_reset, s_restart, s_terminate,/" "" "string(2)" 537
.xx "" "arch \-" "specific information and control" "" "arch(3)" 584
.xx "" "light, pencal, keyboard, params, prompter \-" "specific utilities" "bitsyload," "bitsyload(1)" 35
.xx "" "" "spell, sprog \- find spelling errors" "" "spell(1)" 214
.xx "concurrent systems" "" "spin - verification tool for models of" "" "spin(1)" 215
.xx "" "/rsleep, rwakeup, rwakeupall, incref, decref \-" "spin locks, queueing rendezvous locks,/" "" "lock(2)" 442
.xx "" "" "split \- split a file into pieces" "" "split(1)" 217
.xx "" "frexp, ldexp, modf \-" "split into mantissa and exponent" "" "frexp(2)" 399
.xx "" "qer, runq \- queue management for" "spooled files" "" "qer(8)" 924
.xx "runesnprint, runeseprint,/" "print, fprint," "sprint, snprint, seprint, smprint, runesprint," "" "print(2)" 487
.xx "vsnprintf \- print formatted/" "fprintf, printf," "sprintf, snprintf, vfprintf, vprintf, vsprintf," "" "fprintf(2)" 393
.xx "" "spell," "sprog \- find spelling errors" "" "spell(1)" 214
.xx "" "/s_reset, s_restart, s_terminate, s_tolower," "s_putc, s_unique, s_grow, s_read, s_read_line,/" "" "string(2)" 537
.xx "" "snoopy \-" "spy on network packets" "" "snoopy(8)" 944
.xx "root" "exp, log, log10, pow, pow10," "sqrt \- exponential, logarithm, power, square" "" "exp(2)" 374
.xx "fastrand,/" "rand, lrand, frand, nrand, lnrand," "srand, truerand, ntruerand, genrandom, prng," "" "rand(2)" 502
.xx "" "" "src \- find source code for executable" "" "src(1)" 218
.xx "strings" "/s_tolower, s_putc, s_unique, s_grow," "s_read, s_read_line, s_getline \- extensible" "" "string(2)" 537
.xx "" "/s_tolower, s_putc, s_unique, s_grow, s_read," "s_read_line, s_getline \- extensible strings" "" "string(2)" 537
.xx "" "/s_nappend, s_new, s_newalloc, s_parse," "s_reset, s_restart, s_terminate, s_tolower,/" "" "string(2)" 537
.xx "" "" "srv \- server registry" "" "srv(3)" 638
.xx "estrdup9p, listensrv, postfd, postmountsrv,/" "" "Srv, dirread9p, emalloc9p, erealloc9p," "" "9p(2)" 273
.xx "" "exportfs," "srvfs \- network file server plumbing" "" "exportfs(4)" 670
.xx "service" "srv," "srvold9p, 9fs, srvssh \- start network file" "" "srv(4)" 713
.xx "" "fscanf, scanf," "sscanf, vfscanf \- scan formatted input" "" "fscanf(2)" 400
.xx "copy from/to Unix or Plan 9" "ssh," "sshnet, scp, sshserve \- secure login and file" "" "ssh(1)" 219
.xx "" "" "ssl \- SSL record layer" "" "ssl(3)" 639
.xx "channel" "pushssl \- attach" "SSL version 2 encryption to a communication" "" "pushssl(2)" 493
.xx "" "/readcert, readcertchain \- attach TLS1 or" "SSL3 encryption to a communication channel" "" "pushtls(2)" 494
.xx "" "tls \- TLS1 and" "SSL3 record layer" "" "tls(3)" 641
.xx "" "ktrace \- interpret kernel" "stack dumps" "" "ktrace(1)" 115
.xx "" "- single and triple digital encryption" "standard" "/triple_block_cipher" "des(2)" 343
.xx "" "/fsetpos, fseek, rewind, feof, ferror, clearerr \-" "standard buffered input/output package" "" "fopen(2)" 388
.xx "" "aesXCBCmac - advanced encryption" "standard (rijndael)" "/setupAESXCBCstate," "aes(2)" 288
.xx "processes" "stop," "start \- print commands to stop and start" "" "stop(1)" 222
.xx "" "srv, srvold9p, 9fs, srvssh \-" "start network file service" "" "srv(4)" 713
.xx "" "/matchdevcsp, opendev, opendevdata, openep," "startdevs, unstall, class, subclass, proto, CSP/" "" "usb(2)" 551
.xx "" "upasfs," "startupasfs \- mail file server" "" "upasfs(4)" 720
.xx "dirwstat, dirfwstat, nulldir \- get and put file/" "" "stat, fstat, wstat, fwstat, dirstat, dirfstat," "" "stat(2)" 533
.xx "" "" "stat, wstat \- inquire or change file attributes" "" "stat(5)" 747
.xx "" "/fcallfmt, dirfmt, dirmodefmt, read9pmsg," "statcheck, sizeS2M, sizeD2M \- interface to/" "" "fcall(2)" 376
.xx "" "" "stats \- display graphs of system activity" "" "stats(8)" 946
.xx "" "ps, psu \- process" "status" "" "ps(1)" 176
.xx "" "dirwstat, dirfwstat, nulldir \- get and put file" "status" "/fstat, wstat, fwstat, dirstat, dirfstat," "stat(2)" 533
.xx "" "test \- set" "status according to condition" "" "test(1)" 237
.xx "" "changeuser, convkeys, convkeys2, printnetkey," "status, enable, disable, authsrv, guard.srv,/" "" "auth(8)" 833
.xx "" "" "statusbar \- display a bar graph status window" "" "statusbar(8)" 948
.xx "" "rtcp," "stcp \- measure TCP bandwidth" "" "rtcp(8)" 931
.xx "" "ungetc, fgets, gets, fputs, puts, fread, fwrite \-" "Stdio input and output" "/fputc, putc, putchar," "fgetc(2)" 380
.xx "" "tmpfile, tmpnam \-" "Stdio temporary files" "" "tmpfile(2)" 550
.xx "" "/s_parse, s_reset, s_restart, s_terminate," "s_tolower, s_putc, s_unique, s_grow, s_read,/" "" "string(2)" 537
.xx "processes" "" "stop, start \- print commands to stop and start" "" "stop(1)" 222
.xx "" "Host Controller Interface) SATA (Serial AT)" "storage device drivers" "/\- AHCI (Advanced" "sdahci(3)" 633
.xx "" "sd \-" "storage device interface" "" "sd(3)" 631
.xx "" "sdaoe \- ATA-over-Ethernet (Ao)" "storage device interface" "" "sdaoe(3)" 635
.xx "" "privalloc, privfree \- per-process private" "storage management" "" "privalloc(2)" 490
.xx "" "venti \- archival" "storage server" "" "venti(2)" 558
.xx "" "venti \- archival" "storage server" "" "venti(6)" 798
.xx "" "venti \- archival" "storage server" "" "venti(8)" 956
.xx "" "ainc, adec, cas, casv, casp, loadlink," "storecond, _tas \- atomic RMW operations" "" "atom(2)" 298
.xx "strncpy, strecpy, strlen,/" "strcat, strncat," "strcmp, strncmp, cistrcmp, cistrncmp, strcpy," "" "strcat(2)" 535
.xx "" "/strecpy, strlen, strchr, strrchr, strpbrk, strspn," "strcspn, strtok, strdup, strstr, cistrstr \- string/" "" "strcat(2)" 535
.xx "" "sed \-" "stream editor" "" "sed(1)" 205
.xx "" "/stringnbg, runestringbg, runestringnbg," "_string, ARROW, drawsetdebug \- graphics/" "" "draw(2)" 350
.xx "" "getfields, gettokens, tokenize \- break a" "string into fields" "" "getfields(2)" 407
.xx "" "runestrrchr, runestrdup, runestrstr \- rune" "string operations" "/runestrlen, runestrchr," "runestrcat(2)" 516
.xx "" "strspn, strcspn, strtok, strdup, strstr, cistrstr \-" "string operations" "/strchr, strrchr, strpbrk," "strcat(2)" 535
.xx "" "string, stringn, runestring, runestringn," "stringbg, stringnbg, runestringbg,/" "/border," "draw(2)" 350
.xx "runestringnwidth \-/" "stringsize, stringwidth," "stringnwidth, runestringsize, runestringwidth," "" "stringsize(2)" 539
.xx "" "enc16, encodefmt \- encoding byte arrays as" "strings" "dec64, enc64, dec32, enc32, dec16," "encode(2)" 363
.xx "" "doquote, needsrcquote \- quoted character" "strings" "/quoterunestrfmt, quotefmtinstall," "quote(2)" 501
.xx "" "s_read, s_read_line, s_getline \- extensible" "strings" "/s_tolower, s_putc, s_unique, s_grow," "string(2)" 537
.xx "" "" "strings \- extract printable strings" "" "strings(1)" 223
.xx "runestringsize, runestringwidth,/" "" "stringsize, stringwidth, stringnwidth," "" "stringsize(2)" 539
.xx "" "/readsubfont, readsubfonti, writesubfont," "stringsubfont, strsubfontwidth, mkfont \-/" "" "subfont(2)" 540
.xx "" "" "strip \- remove symbols from binary files" "" "strip(1)" 224
.xx "" "basename \-" "strip file name affixes" "" "basename(1)" 30
.xx "cistrncmp, strcpy, strncpy, strecpy,/" "strcat," "strncat, strcmp, strncmp, cistrcmp," "" "strcat(2)" 535
.xx "" "/strcpy, strncpy, strecpy, strlen, strchr, strrchr," "strpbrk, strspn, strcspn, strtok, strdup, strstr,/" "" "strcat(2)" 535
.xx "" "/readsubfonti, writesubfont, stringsubfont," "strsubfontwidth, mkfont \- subfont/" "" "subfont(2)" 540
.xx "" "/openfont, buildfont, freefont, Pfmt, Rfmt," "strtochan, chantostr, chantodepth \-/" "" "graphics(2)" 411
.xx "" "/strlen, strchr, strrchr, strpbrk, strspn, strcspn," "strtok, strdup, strstr, cistrstr \- string/" "" "strcat(2)" 535
.xx "" "/mpbits, mpnorm, mpcopy, mpassign, mprand," "strtomp, mpfmt,mptoa, betomp, mptobe,/" "" "mp(2)" 463
.xx "" "atoll, charstod, strtod, strtol, strtoll, strtoul," "strtoull \- convert text to numbers" "/atoi, atol," "atof(2)" 297
.xx "" "B, sam.save, samterm \- screen editor with" "structural regular expressions" "sam," "sam(1)" 198
.xx "" "lookupkey, deletekey \- integer to data" "structure maps" "/insertkey, caninsertkey," "intmap(2)" 433
.xx "" "namespace \-" "structure of conventional file name space" "" "namespace(4)" 697
.xx "" "" "stub \- provide mount point stubs" "" "stub(8)" 949
.xx "" "" "style \- Plan 9 coding conventions for C" "" "style(6)" 794
.xx "" "archfs \- mount" "style archive" "" "archfs(4)" 655
.xx "dot3, cross3, len3, dist3, unit3,/" "add3," "sub3, neg3, div3, mul3, eqpt3, closept3," "" "arith3(2)" 294
.xx "" "/vrem3, pn2f3, ppp2f3, fff2p3, pdiv4, add4," "sub4 \- operations on 3-d points and planes" "" "arith3(2)" 294
.xx "" "/opendevdata, openep, startdevs, unstall, class," "subclass, proto, CSP \- USB device driver/" "" "usb(2)" 551
.xx "subfonts" "font," "subfont \- external format for fonts and" "" "font(6)" 762
.xx "" "tweak \- edit image files," "subfont files, face files, etc." "" "tweak(1)" 247
.xx "" "cachechars, agefont, loadchar," "Subfont, Fontchar, Font \- font utilities" "" "cachechars(2)" 314
.xx "" "/lookupsubfont, uninstallsubfont," "subfontname, readsubfont, readsubfonti,/" "" "subfont(2)" 540
.xx "" "font, subfont \- external format for fonts and" "subfonts" "" "font(6)" 762
.xx "insetrect, canonrect, eqpt, eqrect,/" "addpt," "subpt, mulpt, divpt, rectaddpt, rectsubpt," "" "addpt(2)" 286
.xx "" "juggle, life, mahjongg, memo, sokoban," "sudoku \- time wasters" "4s, 5s, festoon," "games(1)" 92
.xx "blocks in a file" "" "sum, md5sum, sha1sum \- sum and count" "" "sum(1)" 225
.xx "" "nfs \-" "Sun network file system client" "" "nfs(4)" 700
.xx "" "/s_restart, s_terminate, s_tolower, s_putc," "s_unique, s_grow, s_read, s_read_line,/" "" "string(2)" 537
.xx "" "/runefmtstrinit, runefmtstrflush, errfmt \-" "support for user-defined print formats and/" "" "fmtinstall(2)" 385
.xx "" "scat \- sky catalogue and Digitized Sky" "Survey" "" "scat(7)" 818
.xx "" "sleep \-" "suspend execution for an interval" "" "sleep(1)" 210
.xx "" "" "swap \- establish a swap file" "" "swap(8)" 950
.xx "" "\- show a list of available keyboard maps and" "switch between them." "kbmap" "kbmap(1)" 113
.xx "lookup, findlocal, getauto,/" "syminit, getsym," "symbase, pc2sp, pc2line, textseg, line2addr," "" "symbol(2)" 542
.xx "" "na \- assembler for the" "Symbios Logic PCI-SCSI I/O Processors" "" "na(8)" 892
.xx "" "nm \- name list" "symbol table)" "" "nm(1)" 154
.xx "" "strip \- remove" "symbols from binary files" "" "strip(1)" 224
.xx "textseg, line2addr, lookup, findlocal,/" "" "syminit, getsym, symbase, pc2sp, pc2line," "" "symbol(2)" 542
.xx "" "/risctrace, ciscframe, riscframe, localaddr," "symoff, fpformat, beieee80ftos, beieeesftos,/" "" "debugger(2)" 340
.xx "" "rendezvous \- user level process" "synchronization" "" "rendezvous(2)" 511
.xx "source" "timesync \-" "synchronize the system clock to a time" "" "timesync(8)" 951
.xx "" "/conf, fmtarenas, fmtbloom, fmtindex, fmtisect," "syncindex \- prepare and maintain a venti/" "" "venti-fmt(8)" 961
.xx "" "" "syscall \- test a system call" "" "syscall(1)" 226
.xx "" "perror," "syslog, sysfatal \- system error messages" "" "perror(2)" 478
.xx "" "getuser," "sysname \- get user or system name" "" "getuser(2)" 409
.xx "" "disc (CD, DVD, B) track reader and writer file" "system" "cdfs, cddb \- optical" "cdfs(4)" 656
.xx "" "cfs \- cache file" "system" "" "cfs(4)" 658
.xx "" "ext2srv \- ext2 file" "system" "" "ext2srv(4)" 672
.xx "" "any local file systems and optionally reboot the" "system" "fshalt, reboot \- halt" "fshalt(8)" 866
.xx "" "ftpfs \- file transfer protocol (FT) file" "system" "" "ftpfs(4)" 684
.xx "" "import \- import a name space from a remote" "system" "" "import(4)" 688
.xx "" "ipokfs \- terrorist IP address file" "system" "" "ipokfs(4)" 691
.xx "" "kfs \- disk file" "system" "" "kfs(4)" 694
.xx "" "lnfs \- long name file" "system" "" "lnfs(4)" 695
.xx "" "mkfs, mkext \- archive or update a file" "system" "" "mkfs(8)" 888
.xx "" "mkpaqfs \- make a compressed read-only file" "system" "" "mkpaqfs(8)" 889
.xx "" "mksacfs \- make a compressed file" "system" "" "mksacfs(8)" 890
.xx "" "\- network news transport protocol (NNT) file" "system" "nntpfs" "nntpfs(4)" 702
.xx "" "paqfs \- compressed read-only file" "system" "" "paqfs(4)" 703
.xx "" "patch \- simple patch creation and tracking" "system" "" "patch(1)" 160
.xx "" "playlistfs \- playlist file" "system" "" "playlistfs(7)" 816
.xx "" "ramfs \- memory file" "system" "" "ramfs(4)" 705
.xx "" "ratfs \- mail address ratification file" "system" "" "ratfs(4)" 706
.xx "" "rdbfs \- remote kernel debugging file" "system" "" "rdbfs(4)" 707
.xx "" "rio, label, window, wloc \- window" "system" "" "rio(1)" 191
.xx "" "root \- the root file" "system" "" "root(3)" 629
.xx "" "sacfs \- compressed file" "system" "" "sacfs(4)" 711
.xx "" "vacfs \- a Venti-based file" "system" "" "vacfs(4)" 727
.xx "" "webfs \- world wide web file" "system" "" "webfs(4)" 730
.xx "" "wikifs, wikipost \- wiki file" "system" "" "wikifs(4)" 733
.xx "" "stats \- display graphs of" "system activity" "" "stats(8)" 946
.xx "" "intro \- introduction to" "system administration" "" "intro(8)" 821
.xx "" "syscall \- test a" "system call" "" "syscall(1)" 226
.xx "" "errstr, rerrstr, werrstr \- description of last" "system call error" "" "errstr(2)" 367
.xx "" "ratrace \- trace process" "system calls" "" "ratrace(1)" 180
.xx "" "nfs \- Sun network file" "system client" "" "nfs(4)" 700
.xx "" "timesync \- synchronize the" "system clock to a time source" "" "timesync(8)" 951
.xx "" "fs \- file" "system devices" "" "fs(3)" 603
.xx "" "perror, syslog, sysfatal \-" "system error messages" "" "perror(2)" 478
.xx "" "rio \- window" "system files" "" "rio(4)" 708
.xx "" "consolefs, C, clog \- file" "system for console access" "" "consolefs(4)" 661
.xx "" "flashfs \- journalling file" "system for flash memory" "" "flashfs(4)" 678
.xx "" "mkflashfs \- make a journalling file" "system for flash memory" "" "mkflashfs(8)" 887
.xx "" "plumber \- file" "system for interprocess messaging" "" "plumber(4)" 704
.xx "" "uptime \- show how long the" "system has been running" "" "uptime(1)" 251
.xx "" "usbdirfs, usbfs \- USB device driver file" "system library" "/usbdirread, usbfsinit," "usbfs(2)" 555
.xx "" "getuser, sysname \- get user or" "system name" "" "getuser(2)" 409
.xx "" "iostats \- file" "system to measure I/O" "" "iostats(4)" 690
.xx "connection" "reboot \- reboot the" "system upon loss of remote file server" "" "reboot(8)" 926
.xx "" "aliasmail \- expand" "system wide mail aliases" "" "aliasmail(8)" 828
.xx "" "d:, 9fat:, dosmnt, eject \- DOS and ISO9660 file" "systems" "dossrv, 9660srv, a:, b:, c:," "dossrv(4)" 667
.xx "" "to Plan 9 CPU servers from other operating" "systems" "drawterm \- connect" "drawterm(8)" 849
.xx "" "\- automatically generate mount points for file" "systems" "mntgen" "mntgen(4)" 696
.xx "" "- verification tool for models of concurrent" "systems" "spin" "spin(1)" 215
.xx "" "tpfs, v6fs, v10fs, zipfs \- mount archival file" "systems" "32vfs, cpiofs, tapfs, tarfs," "tapefs(4)" 715
.xx "" "setup.kfs, update \- administration for local file" "systems" "/personalize, setup.9fat, setup.disk," "update(8)" 955
.xx "" "fshalt, reboot \- halt any local file" "systems and optionally reboot the system" "" "fshalt(8)" 866
.xx "" "nm \- name list (symbol" "table)" "" "nm(1)" 154
.xx "" "fileelem, filesym, fileline, fnbound \- symbol" "table access functions" "/textsym, file2pc," "symbol(2)" 542
.xx "" "tbl \- format" "tables for nroff or troff" "" "tbl(1)" 231
.xx "" "" "tagrd \- plumb a Mifare Ultralight tag" "" "tagrd(1)" 227
.xx "" "" "tail \- deliver the last part of a file" "" "tail(1)" 228
.xx "functions" "sin, cos," "tan, asin, acos, atan, atan2 \- trigonometric" "" "sin(2)" 530
.xx "" "sinh, cosh," "tanh \- hyperbolic functions" "" "sinh(2)" 531
.xx "" "" "tar, dircp \- archiver" "" "tar(1)" 229
.xx "file systems" "32vfs, cpiofs, tapfs," "tarfs, tpfs, v6fs, v10fs, zipfs \- mount archival" "" "tapefs(4)" 715
.xx "" "scuzz \- SCSI" "target control" "" "scuzz(8)" 936
.xx "" "/freedocinfo, dimenkind, dimenspec, targetid," "targetname, fromStr, toStr \- HTML parser" "" "html(2)" 415
.xx "" "ainc, adec, cas, casv, casp, loadlink, storecond," "_tas \- atomic RMW operations" "" "atom(2)" 298
.xx "" "" "tbl \- format tables for nroff or troff" "" "tbl(1)" 231
.xx "" "rtcp, stcp \- measure" "TCP bandwidth" "" "rtcp(8)" 931
.xx "" "ip, esp, gre, icmp, icmpv6, ipmux, rudp," "tcp, udp \- network protocols over IP" "" "ip(3)" 606
.xx "" "/tcp9, tcp19, tcp21, tcp22, tcp23, tcp25, tcp53," "tcp110, tcp113, tcp143, tcp513, tcp515,/" "" "listen(8)" 882
.xx "" "/tcp21, tcp22, tcp23, tcp25, tcp53, tcp110," "tcp113, tcp143, tcp513, tcp515, tcp564,/" "" "listen(8)" 882
.xx "" "/tcp566, tcp567, tcp993, tcp995, tcp1723," "tcp17007, tcp17008, tcp17009, tcp17010,/" "" "listen(8)" 882
.xx "" "/tcp17007, tcp17008, tcp17009, tcp17010," "tcp17013 \- listen for calls on a network/" "" "listen(8)" 882
.xx "" "/tcp565, tcp566, tcp567, tcp993, tcp995," "tcp1723, tcp17007, tcp17008, tcp17009,/" "" "listen(8)" 882
.xx "tcp110, tcp113,/" "listen, listen1, tcp7, tcp9," "tcp19, tcp21, tcp22, tcp23, tcp25, tcp53," "" "listen(8)" 882
.xx "" "/tcp23, tcp25, tcp53, tcp110, tcp113, tcp143," "tcp513, tcp515, tcp564, tcp565, tcp566,/" "" "listen(8)" 882
.xx "" "/tcp513, tcp515, tcp564, tcp565, tcp566," "tcp567, tcp993, tcp995, tcp1723, tcp17007,/" "" "listen(8)" 882
.xx "tcp53, tcp110, tcp113,/" "listen, listen1," "tcp7, tcp9, tcp19, tcp21, tcp22, tcp23, tcp25," "" "listen(8)" 882
.xx "" "/tcp515, tcp564, tcp565, tcp566, tcp567," "tcp993, tcp995, tcp1723, tcp17007,/" "" "listen(8)" 882
.xx "" "" "tcs \- translate character sets" "" "tcs(1)" 233
.xx "" "" "tee \- pipe fitting" "" "tee(1)" 235
.xx "" "" "tel, iwhois \- look in phone book" "" "tel(1)" 236
.xx "" "telco, faxreceive, faxsend, fax, telcofax," "telcodata \- telephone dialer network" "" "telco(4)" 716
.xx "execution, and XMODEM file transfer" "con," "telnet, rx, hayes, xms, xmr \- remote login," "" "con(1)" 48
.xx "remote access daemons" "" "telnetd, rlogind, rexexec, ftpd \- Internet" "" "ipserv(8)" 878
.xx "" "tmpfile, tmpnam \- Stdio" "temporary files" "" "tmpfile(2)" 550
.xx "" "screenlock \- disable access to a" "terminal" "" "screenlock(8)" 935
.xx "" "vt \- emulate a VT-100 or VT-220" "terminal" "" "vt(1)" 260
.xx "" "exits, _exits, atexit, atexitdont, terminate \-" "terminate process, process cleanup" "" "exits(2)" 373
.xx "" "cpurc, cpurc.local, termrc," "termrc.local \- boot scripts" "" "cpurc(8)" 843
.xx "" "ipokfs \-" "terrorist IP address file system" "" "ipokfs(4)" 691
.xx "" "" "test \- set status according to condition" "" "test(1)" 237
.xx "" "syscall \-" "test a system call" "" "syscall(1)" 226
.xx "" "scanmail," "testscan \- spam filters" "" "scanmail(8)" 932
.xx "" "pic, tpic \- troff and" "tex preprocessors for drawing pictures" "" "pic(1)" 164
.xx "" "frdrawsel, frdrawsel0, frgetmouse \- frames of" "text" "/frdelete, frselect, frtick, frselectpaint," "frame(2)" 396
.xx "" "ed \-" "text editor" "" "ed(1)" 74
.xx "" "fmt, htmlfmt \- simple" "text formatters" "" "fmt(1)" 89
.xx "" "troff, nroff, dpost \-" "text formatting and typesetting" "" "troff(1)" 244
.xx "" "/msexceltables \- extract printable" "text from Microsoft documents" "" "doc2txt(1)" 69
.xx "" "strtod, strtol, strtoll, strtoul, strtoull \- convert" "text to numbers" "/atoi, atol, atoll, charstod," "atof(2)" 297
.xx "" "9pcon \- 9P to" "text translator" "" "9pcon(8)" 826
.xx "" "acme, win, awd \- interactive" "text windows" "" "acme(1)" 15
.xx "" "acme \- control files for" "text windows" "" "acme(4)" 652
.xx "" "syminit, getsym, symbase, pc2sp, pc2line," "textseg, line2addr, lookup, findlocal, getauto,/" "" "symbol(2)" 542
.xx "" "/getauto, findsym, localsym, globalsym," "textsym, file2pc, fileelem, filesym, fileline,/" "" "symbol(2)" 542
.xx "" "dhcpd, dhcpleases, rarpd," "tftpd \- Internet booting" "" "dhcpd(8)" 845
.xx "approved of by the US/" "ipok \- verify" "that an IP address belongs to a country" "" "ipok(8)" 877
.xx "" "venti arenas to blu-ray discs or restore from" "them" "/dumparenas, restore \- backup" "backup(8)" 835
.xx "" "available keyboard maps and switch between" "them." "kbmap \- show a list of" "kbmap(1)" 113
.xx "" "" "thesaurus \- search online thesaurus" "" "thesaurus(1)" 239
.xx "" "timerrecall, recvt, sendt \- worker" "thread management" "/timerdispatch," "worker(2)" 578
.xx "" "/nbrecvul, nbsend, nbsendp, nbsendul," "threadcreate, threaddata, threadexits,/" "" "thread(2)" 545
.xx "" "fmterror, silenterror \- exception handling for" "threaded programs" "/nexterror, error," "error(2)" 365
.xx "" "ioreadn, iowrite \- slave I/O processes for" "threaded programs" "/ioopen, ioproc, ioread," "ioproc(2)" 434
.xx "" "/nbsendp, nbsendul, threadcreate, threaddata," "threadexits, threadexitsall, threadgetgrp,/" "" "thread(2)" 545
.xx "" "/threadcreate, threaddata, threadexits," "threadexitsall, threadgetgrp, threadgetname,/" "" "thread(2)" 545
.xx "" "/threadkillgrp, threadmain, threadnotify," "threadid, threadpid, threadsetgrp,/" "" "thread(2)" 545
.xx "" "/threadexitsall, threadgetgrp, threadgetname," "threadint, threadintgrp, threadkill,/" "" "thread(2)" 545
.xx "threadid,/" "/threadint, threadintgrp, threadkill," "threadkillgrp, threadmain, threadnotify," "" "thread(2)" 545
.xx "" "/respond, responderror, threadlistensrv," "threadpostmountsrv, srv \- 9P file service" "" "9p(2)" 273
.xx "thread/" "/threadid, threadpid, threadsetgrp," "threadsetname, threadwaitchan, yield \-" "" "thread(2)" 545
.xx "" "run automatic or manual 6to4 tunnel of IPv6" "through IPv4" "6in4 - configure and" "6in4(8)" 822
.xx "" "" "thumbprint \- public key thumbprints" "" "thumbprint(6)" 795
.xx "" "asctime, tm2sec, timezone \- convert date and" "time" "ctime, localtime, gmtime," "ctime(2)" 337
.xx "" "date, clock \- date and" "time" "" "date(1)" 55
.xx "" "mtime \- print file modification" "time" "" "mtime(1)" 147
.xx "" "" "time \- time a command" "" "time(1)" 240
.xx "" "gpsfs, gpsevermore \- GPS" "time and position service" "" "gpsfs(8)" 868
.xx "" "rtc \-" "time clock and non-volatile RAM" "" "rtc(3)" 630
.xx "" "cputime, times, cycles \- cpu" "time in this process and children" "" "cputime(2)" 336
.xx "nanoseconds since epoch" "" "time, nsec \- time in seconds and" "" "time(2)" 549
.xx "" "trace \- show" "time) process behavior" "" "trace(1)" 243
.xx "" "timesync \- synchronize the system clock to a" "time source" "" "timesync(8)" 951
.xx "" "life, mahjongg, memo, sokoban, sudoku \-" "time wasters" "4s, 5s, festoon, juggle," "games(1)" 92
.xx "management" "workerdispatch, timerdispatch," "timerrecall, recvt, sendt \- worker thread" "" "worker(2)" 578
.xx "children" "cputime," "times, cycles \- cpu time in this process and" "" "cputime(2)" 336
.xx "time source" "" "timesync \- synchronize the system clock to a" "" "timesync(8)" 951
.xx "" "ctime, localtime, gmtime, asctime, tm2sec," "timezone \- convert date and time" "" "ctime(2)" 337
.xx "" "" "tls \- TLS1 and SSL3 record layer" "" "tls(3)" 641
.xx "" "tlssrv, tlsclient, tlssrvtunnel," "tlsclienttunnel \- TLS server and client" "" "tlssrv(8)" 952
.xx "okThumbprint, readcert,/" "pushtls, tlsClient," "tlsServer, initThumbprints, freeThumbprints," "" "pushtls(2)" 494
.xx "" "ctime, localtime, gmtime, asctime," "tm2sec, timezone \- convert date and time" "" "ctime(2)" 337
.xx "" "tmpfile," "tmpnam \- Stdio temporary files" "" "tmpfile(2)" 550
.xx "ASCII/" "/ispunct, isprint, isgraph, iscntrl, isascii," "toascii, _toupper, _tolower, toupper, tolower \-" "" "ctype(2)" 339
.xx "venti arenas to blu-ray discs or/" "backup," "tobackup, dumparenas, restore \- backup" "" "backup(8)" 835
.xx "" "ppm, bmp, v210, yuv, ico, togif, toppm, topng," "toico \- view and convert pictures" "/gif, png," "jpg(1)" 111
.xx "" "filter, list, deliver," "token, vf \- filtering mail" "" "filter(1)" 87
.xx "" "getfields, gettokens," "tokenize \- break a string into fields" "" "getfields(2)" 407
.xx "" "/isgraph, iscntrl, isascii, toascii, _toupper," "_tolower, toupper, tolower \- ASCII character/" "" "ctype(2)" 339
.xx "Unicode/" "/istitlerune, isupperrune, isdigitrune," "tolowerrune, totitlerune, toupperrune \-" "" "isalpharune(2)" 440
.xx "" "spin - verification" "tool for models of concurrent systems" "" "spin(1)" 215
.xx "" "at, drain, expect, pass \- dialer scripting" "tools" "" "expect(1)" 81
.xx "" "jpg, gif, png, ppm, bmp, v210, yuv, ico, togif," "toppm, topng, toico \- view and convert/" "" "jpg(1)" 111
.xx "window/" "/bottomwindow, bottomnwindows," "topwindow, topnwindows, originwindow \-" "" "window(2)" 576
.xx "" "exec, execl, _privates, _nprivates," "_tos \- execute a file" "" "exec(2)" 371
.xx "" "dimenspec, targetid, targetname, fromStr," "toStr \- HTML parser" "/freedocinfo, dimenkind," "html(2)" 415
.xx "" "/isupperrune, isdigitrune, tolowerrune," "totitlerune, toupperrune \- Unicode character/" "" "isalpharune(2)" 440
.xx "" "" "touch \- set modification date of a file" "" "touch(1)" 241
.xx "" "/ispunct, isprint, isgraph, iscntrl, isascii, toascii," "_toupper, _tolower, toupper, tolower \- ASCII/" "" "ctype(2)" 339
.xx "cases" "/isdigitrune, tolowerrune, totitlerune," "toupperrune \- Unicode character classes and" "" "isalpharune(2)" 440
.xx "systems" "32vfs, cpiofs, tapfs, tarfs," "tpfs, v6fs, v10fs, zipfs \- mount archival file" "" "tapefs(4)" 715
.xx "pictures" "pic," "tpic \- troff and tex preprocessors for drawing" "" "pic(1)" 164
.xx "" "prof," "tprof, kprof \- display profiling data" "" "prof(1)" 173
.xx "" "" "tr \- translate characters" "" "tr(1)" 242
.xx "" "" "trace \- show (real-time) process behavior" "" "trace(1)" 243
.xx "" "ratrace \-" "trace process system calls" "" "ratrace(1)" 180
.xx "" "ping, gping," "traceroute, hogports \- probe the Internet" "" "ping(8)" 906
.xx "" "cdfs, cddb \- optical disc (CD, DVD, B)" "track reader and writer file system" "" "cdfs(4)" 656
.xx "" "fedex, ups, usps \-" "track shipments" "" "fedex(1)" 85
.xx "" "lookupreq, removereq \- 9P fid, request" "tracking" "/freereqpool, allocreq, closereq," "9pfid(2)" 279
.xx "" "patch \- simple patch creation and" "tracking system" "" "patch(1)" 160
.xx "another address" "" "trampoline \- forward incoming calls to" "" "trampoline(8)" 953
.xx "" "\- remote login, execution, and XMODEM file" "transfer" "con, telnet, rx, hayes, xms, xmr" "con(1)" 48
.xx "" "read, write \-" "transfer data from and to a file" "" "read(5)" 745
.xx "" "ftpfs \- file" "transfer protocol (FT) file system" "" "ftpfs(4)" 684
.xx "" "ixform, persp, look, viewport \- Geometric" "transformations" "/qrot, scale, move, xform," "matrix(2)" 450
.xx "" "tcs \-" "translate character sets" "" "tcs(1)" 233
.xx "" "tr \-" "translate characters" "" "tr(1)" 242
.xx "" "ansitize \-" "translate Plan 9 C to ANSI C" "" "ansitize(1)" 20
.xx "" "9pcon \- 9P to text" "translator" "" "9pcon(8)" 826
.xx "closefile, removefile, walkfile, opendirfile,/" "" "Tree, alloctree, freetree, File, createfile," "" "9pfile(2)" 281
.xx "" "avlwalk, avlnext, avlprev, endwalk - AVL" "tree routines" "/insertavl, lookupavl, deleteavl," "avl(2)" 304
.xx "" "sin, cos, tan, asin, acos, atan, atan2 \-" "trigonometric functions" "" "sin(2)" 530
.xx "" "/des56to64, des64to56, setupDES3state," "triple_block_cipher - single and triple digital/" "" "des(2)" 343
.xx "" "tbl \- format tables for nroff or" "troff" "" "tbl(1)" 231
.xx "pictures" "pic, tpic \-" "troff and tex preprocessors for drawing" "" "pic(1)" 164
.xx "" "soelim \- preprocess so inclusion commands in" "troff input" "" "soelim(1)" 211
.xx "typesetting" "" "troff, nroff, dpost \- text formatting and" "" "troff(1)" 244
.xx "" "proof \-" "troff output interpreter" "" "proof(1)" 175
.xx "" "" "troff2html \- convert troff output into HTML" "" "troff2html(1)" 246
.xx "" "ms2html, html2ms \- convert between" "troff's ms macros and html" "" "ms2html(1)" 141
.xx "" "rand, lrand, frand, nrand, lnrand, srand," "truerand, ntruerand, genrandom, prng,/" "" "rand(2)" 502
.xx "" "vtzeroextend, vtzeroscore \- Venti block" "truncation" "vtzerotruncate," "venti-zero(2)" 574
.xx "" "acid," "truss, trump \- debugger" "" "acid(1)" 11
.xx "" "bandt2 \- Viaduct" "tunnel client and server" "" "bandt2(8)" 836
.xx "" "- configure and run automatic or manual 6to4" "tunnel of IPv6 through IPv4" "6in4" "6in4(8)" 822
.xx "" "findviaduct \- look up data about Viaduct" "tunnelling clients" "" "findviaduct(8)" 850
.xx "files, etc." "" "tweak \- edit image files, subfont files, face" "" "tweak(1)" 247
.xx "inter-integrated circuit (I⁲C) interface" "" "twsi - two-wire serial interface (TWS) and" "" "twsi(3)" 643
.xx "" "file \- determine file" "type" "" "file(1)" 86
.xx "" "keyboard \- how to" "type characters" "" "keyboard(6)" 768
.xx "" "man \- macros to" "typeset manual" "" "man(6)" 771
.xx "" "eqn \-" "typeset mathematics" "" "eqn(1)" 79
.xx "" "view FAX, image, graphic, PostScript, PDF, and" "typesetter output files" "page \-" "page(1)" 157
.xx "" "htmlroff \- HTML formatting and" "typesetting" "" "htmlroff(1)" 108
.xx "" "htmlroff \- HTML formatting and" "typesetting" "" "htmlroff(6)" 763
.xx "" "troff, nroff, dpost \- text formatting and" "typesetting" "" "troff(1)" 244
.xx "" "mnihongo \- macros for" "typesetting Japanese" "" "mnihongo(6)" 775
.xx "" "" "u9fs \- serve 9P from Unix" "" "u9fs(4)" 718
.xx "" "" "uart, eia \- serial communication control" "" "uart(3)" 644
.xx "" "ip, esp, gre, icmp, icmpv6, ipmux, rudp, tcp," "udp \- network protocols over IP" "" "ip(3)" 606
.xx "" "" "udpecho \- echo UDP packets" "" "udpecho(8)" 954
.xx "" "/betomp, mptobe, letomp, mptole, mptoui," "uitomp, mptoi, itomp, uvtomp, mptouv,/" "" "mp(2)" 463
.xx "" "tagrd \- plumb a Mifare" "Ultralight tag" "" "tagrd(1)" 227
.xx "" "leak, kmem," "umem \- help find memory leaks" "" "leak(1)" 116
.xx "division" "muldiv," "umuldiv \- high-precision multiplication and" "" "muldiv(2)" 467
.xx "" "gzip, gunzip, bzip2, bunzip2, compress," "uncompress, zip, unzip \- compress and/" "" "gzip(1)" 103
.xx "" "lock \- run a command" "under lock" "" "lock(1)" 120
.xx "" "fgetc, getc, getchar, fputc, putc, putchar," "ungetc, fgets, gets, fputs, puts, fread, fwrite \-/" "" "fgetc(2)" 380
.xx "" "ascii," "unicode \- interpret ASCII, Unicode characters" "" "ascii(1)" 25
.xx "format" "UTF," "Unicode, ASCII, rune \- character set and" "" "utf(6)" 797
.xx "" "/tolowerrune, totitlerune, toupperrune \-" "Unicode character classes and cases" "" "isalpharune(2)" 440
.xx "" "ascii, unicode \- interpret ASCII," "Unicode characters" "" "ascii(1)" 25
.xx "" "/freesubfont, installsubfont, lookupsubfont," "uninstallsubfont, subfontname, readsubfont,/" "" "subfont(2)" 540
.xx "" "" "uniq \- report repeated lines in a file" "" "uniq(1)" 249
.xx "" "mktemp \- make a" "unique file name" "" "mktemp(2)" 460
.xx "" "iounit \- return size of atomic I/O" "unit for file descriptor" "" "iounit(2)" 436
.xx "" "/eqpt3, closept3, dot3, cross3, len3, dist3," "unit3, midpt3, lerp3, reflect3, nearseg3,/" "" "arith3(2)" 294
.xx "" "" "units \- conversion program" "" "units(1)" 250
.xx "" "usbd \-" "Universal Serial Bus daemon" "" "usbd(4)" 725
.xx "" "kb, print, probe, serial, usbeject, usbfat: \-" "Universal Serial Bus device drivers" "/ether," "usb(4)" 722
.xx "" "u9fs \- serve 9P from" "Unix" "" "u9fs(4)" 718
.xx "" "sshserve \- secure login and file copy from/to" "Unix or Plan 9" "ssh, sshnet, scp," "ssh(1)" 219
.xx "" "/setalpha, loadimage, cloadimage," "unloadimage, readimage, writeimage,/" "" "allocimage(2)" 289
.xx "mempoly,/" "/loadmemimage, cloadmemimage," "unloadmemimage, memfillcolor, memarc," "" "memdraw(2)" 452
.xx "canrlock, runlock, wlock,/" "lock, canlock," "unlock, qlock, canqlock, qunlock, rlock," "" "lock(2)" 442
.xx "Pfmt,/" "/flushimage, bufimage, lockdisplay," "unlockdisplay, openfont, buildfont, freefont," "" "graphics(2)" 411
.xx "" "segattach, segdetach, segfree \-" "unmap a segment in virtual memory" "" "segattach(2)" 524
.xx "" "ml, mlmgr, mlowner \-" "unmoderated mailing lists" "" "mlmgr(1)" 137
.xx "" "bind, mount," "unmount \- change name space" "" "bind(1)" 33
.xx "" "bind, mount," "unmount \- change name space" "" "bind(2)" 307
.xx "quotestrfmt,/" "quotestrdup, quoterunestrdup," "unquotestrdup, unquoterunestrdup," "" "quote(2)" 501
.xx "" "/opendev, opendevdata, openep, startdevs," "unstall, class, subclass, proto, CSP \- USB/" "" "usb(2)" 551
.xx "" "/machbyname, newmap, setmap, findseg," "unusemap, loadmap, attachproc, get1, get2,/" "" "mach(2)" 445
.xx "" "vac," "unvac \- create, extract a vac archive on Venti" "" "vac(1)" 253
.xx "" "bzip2, bunzip2, compress, uncompress, zip," "unzip \- compress and expand data" "/gunzip," "gzip(1)" 103
.xx "" "" "upasfs, startupasfs \- mail file server" "" "upasfs(4)" 720
.xx "" "/personalize, setup.9fat, setup.disk, setup.kfs," "update \- administration for local file systems" "" "update(8)" 955
.xx "" "mkfs, mkext \- archive or" "update a file system" "" "mkfs(8)" 888
.xx "" "applychanges, applylog, compactdb," "updatedb \- simple client-server replica/" "" "replica(8)" 927
.xx "" "init \- initialize machine" "upon booting" "" "init(8)" 873
.xx "" "reboot \- reboot the system" "upon loss of remote file server connection" "" "reboot(8)" 926
.xx "" "fedex," "ups, usps \- track shipments" "" "fedex(1)" 85
.xx "running" "" "uptime \- show how long the system has been" "" "uptime(1)" 251
.xx "" "hget \- retrieve a web page corresponding to a" "url" "" "hget(1)" 105
.xx "" "belongs to a country approved of by the" "US government" "/\- verify that an IP address" "ipok(8)" 877
.xx "" "du \- disk" "usage" "" "du(1)" 71
.xx "scripts" "getflags," "usage \- command-line parsing for shell" "" "getflags(8)" 867
.xx "" "" "usb \- USB Host Controller Interface" "" "usb(3)" 645
.xx "" "/usbdirread, usbfsinit, usbdirfs, usbfs \-" "USB device driver file system library" "" "usbfs(2)" 555
.xx "devctl, finddevs, loaddevstr, matchdevcsp,/" "" "usbcmd, classname, closedev, configdev," "" "usb(2)" 551
.xx "" "" "usbd \- Universal Serial Bus daemon" "" "usbd(4)" 725
.xx "" "/disk, ether, kb, print, probe, serial, usbeject," "usbfat: \- Universal Serial Bus device drivers" "" "usb(4)" 722
.xx "usbdirfs, usbfs \- USB device/" "usbreadbuf," "usbfsadd, usbfsdel, usbdirread, usbfsinit," "" "usbfs(2)" 555
.xx "" "newuser \- adding a new" "user" "" "newuser(8)" 898
.xx "" "cap \- capabilities for setting the" "user id of processes" "" "cap(3)" 589
.xx "" "rendezvous \-" "user level process synchronization" "" "rendezvous(2)" 511
.xx "" "semacquire, semrelease \-" "user level semaphores" "" "semacquire(2)" 528
.xx "" "users \- file server" "user list format" "" "users(6)" 796
.xx "" "\- console, clocks, process/process group ids," "user, null, reboot, etc." "cons" "cons(3)" 590
.xx "" "getuser, sysname \- get" "user or system name" "" "getuser(2)" 409
.xx "" "passwd, netkey \- change or verify" "user password" "" "passwd(1)" 159
.xx "" "/runefmtstrflush, errfmt \- support for" "user-defined print formats and output/" "" "fmtinstall(2)" 385
.xx "" "auth_getinfo \- routines for authenticating" "users" "/auth_getuserpasswd," "auth(2)" 299
.xx "" "" "users \- file server user list format" "" "users(6)" 796
.xx "" "who, whois \- who is" "using the machine" "" "who(1)" 263
.xx "" "fedex, ups," "usps \- track shipments" "" "fedex(1)" 85
.xx "format" "" "UTF, Unicode, ASCII, rune \- character set and" "" "utf(6)" 797
.xx "" "utfecpy, utflen, utfnlen, utfrune, utfrrune," "utfutf \- rune/UTF conversion" "/fullrune," "rune(2)" 514
.xx "" "keyboard, params, prompter \- bitsy-specific" "utilities" "bitsyload, light, pencal," "bitsyload(1)" 35
.xx "" "loadchar, Subfont, Fontchar, Font \- font" "utilities" "cachechars, agefont," "cachechars(2)" 314
.xx "as printable ASCII" "" "uuencode, uudecode \- encode/decode a file" "" "uuencode(1)" 252
.xx "" "/letomp, mptole, mptoui, uitomp, mptoi, itomp," "uvtomp, mptouv, vtomp, mptov, mpdigdiv,/" "" "mp(2)" 463
.xx "" "32vfs, cpiofs, tapfs, tarfs, tpfs, v6fs," "v10fs, zipfs \- mount archival file systems" "" "tapefs(4)" 715
.xx "view and convert/" "jpg, gif, png, ppm, bmp," "v210, yuv, ico, togif, toppm, topng, toico \-" "" "jpg(1)" 111
.xx "" "eipfmt, parseip, parseipmask, v4parseip," "v4parsecidr, parseether, myipaddr,/" "" "ip(2)" 437
.xx "myetheraddr,/" "eipfmt, parseip, parseipmask," "v4parseip, v4parsecidr, parseether, myipaddr," "" "ip(2)" 437
.xx "" "/maskip, equivip4, equivip6, defmask, isv4," "v4tov6, v6tov4, nhgetv, nhgetl, nhgets,/" "" "ip(2)" 437
.xx "systems" "32vfs, cpiofs, tapfs, tarfs, tpfs," "v6fs, v10fs, zipfs \- mount archival file" "" "tapefs(4)" 715
.xx "" "/equivip4, equivip6, defmask, isv4, v4tov6," "v6tov4, nhgetv, nhgetl, nhgets, hnputv,/" "" "ip(2)" 437
.xx "" "0a, 1a, 2a, 5a, 6a, 7a, 8a, ka, qa," "va \- assemblers" "" "2a(1)" 4
.xx "Venti" "" "vac, unvac \- create, extract a vac archive on" "" "vac(1)" 253
.xx "" "" "vacfs \- a Venti-based file system" "" "vacfs(4)" 727
.xx "dimenspec, targetid,/" "parsehtml, printitems," "validitems, freeitems, freedocinfo, dimenkind," "" "html(2)" 415
.xx "" "env \- environment" "variables" "" "env(3)" 598
.xx "" "getenv, putenv \- access environment" "variables" "" "getenv(2)" 405
.xx "" "0c, 1c, 2c, 5c, 6c, 7c, 8c, kc, qc," "vc \- C compilers" "" "2c(1)" 5
.xx "" "/midpt3, lerp3, reflect3, nearseg3, pldist3," "vdiv3, vrem3, pn2f3, ppp2f3, fff2p3, pdiv4,/" "" "arith3(2)" 294
.xx "" "vac, unvac \- create, extract a vac archive on" "Venti" "" "vac(1)" 253
.xx "" "" "venti \- archival storage server" "" "venti(2)" 558
.xx "" "" "venti \- archival storage server" "" "venti(6)" 798
.xx "" "" "venti \- archival storage server" "" "venti(8)" 956
.xx "" "/tobackup, dumparenas, restore \- backup" "venti arenas to blu-ray discs or restore from/" "" "backup(8)" 835
.xx "" "vtglobaltolocal, vtlocaltoglobal \-" "Venti block cache" "/vtcachesetwrite," "venti-cache(2)" 559
.xx "" "vtzerotruncate, vtzeroextend, vtzeroscore \-" "Venti block truncation" "" "venti-zero(2)" 574
.xx "" "vtsync, vtping, vtrpc, ventidoublechecksha1 \-" "Venti client" "/vtreadpacket, vtwritepacket," "venti-client(2)" 561
.xx "" "read, write, copy \- simple" "Venti clients" "" "venti(1)" 255
.xx "" "venti.conf \- a" "venti configuration file" "" "venti.conf(6)" 801
.xx "" "vtrootunpack, vtparsescore, vtscorefmt \-" "venti data formats" "/vtputstring, vtrootpack," "venti-fcall(2)" 565
.xx "" "vtfiletruncate, vtfileunlock, vtfilewrite \-" "Venti files" "/vtfilesetentry, vtfilesetsize," "venti-file(2)" 567
.xx "" "vtlogremove, vtlogopen, ventilogging \-" "Venti logs" "/vtlogopen, vtlogprint," "venti-log(2)" 569
.xx "" "vtsend, vtrecv, vtversion, vtdebug, vthangup \-" "Venti network connections" "/vtfreeconn," "venti-conn(2)" 563
.xx "" "fmtisect, syncindex \- prepare and maintain a" "venti server" "/fmtarenas, fmtbloom, fmtindex," "venti-fmt(8)" 961
.xx "" "vtsrvhello, vtlisten, vtgetreq, vtrespond \-" "Venti server" "" "venti-server(2)" 573
.xx "" "rdarena, wrarena \- copy arenas between" "venti servers" "" "venti-backup(8)" 960
.xx "" "vacfs \- a" "Venti-based file system" "" "vacfs(4)" 727
.xx "" "" "venti.conf \- a venti configuration file" "" "venti.conf(6)" 801
.xx "" "/vtwritepacket, vtsync, vtping, vtrpc," "ventidoublechecksha1 \- Venti client" "" "venti-client(2)" 561
.xx "" "vtlogopen, vtlogprint, vtlogremove, vtlogopen," "ventilogging \- Venti logs" "/vtlognames," "venti-log(2)" 569
.xx "systems" "spin -" "verification tool for models of concurrent" "" "spin(1)" 215
.xx "approved of by the US government" "ipok \-" "verify that an IP address belongs to a country" "" "ipok(8)" 877
.xx "" "passwd, netkey \- change or" "verify user password" "" "passwd(1)" 159
.xx "" "\- initialize 9P connection and negotiate" "version" "fversion" "fversion(2)" 403
.xx "" "" "version \- negotiate protocol version" "" "version(5)" 749
.xx "channel" "pushssl \- attach SSL" "version 2 encryption to a communication" "" "pushssl(2)" 493
.xx "" "filter, list, deliver, token," "vf \- filtering mail" "" "filter(1)" 87
.xx "" "/runesnprint, runeseprint, runesmprint," "vfprint, vsnprint, vseprint, vsmprint,/" "" "print(2)" 487
.xx "formatted/" "fprintf, printf, sprintf, snprintf," "vfprintf, vprintf, vsprintf, vsnprintf \- print" "" "fprintf(2)" 393
.xx "" "fscanf, scanf, sscanf," "vfscanf \- scan formatted input" "" "fscanf(2)" 400
.xx "" "" "vga \- configure a VGA card" "" "vga(8)" 964
.xx "" "" "vga \- VGA controller device" "" "vga(3)" 649
.xx "" "" "vgadb \- VGA controller and monitor database" "" "vgadb(6)" 802
.xx "" "5i, ki," "vi, qi \- instruction simulators" "" "vi(1)" 256
.xx "" "bandt2 \-" "Viaduct bridge-and-tunnel client and server" "" "bandt2(8)" 836
.xx "" "findviaduct \- look up data about" "Viaduct bridging-and-tunnelling clients" "" "findviaduct(8)" 850
.xx "" "v210, yuv, ico, togif, toppm, topng, toico \-" "view and convert pictures" "/png, ppm, bmp," "jpg(1)" 111
.xx "and typesetter output files" "page \-" "view FAX, image, graphic, PostScript, PDF," "" "page(1)" 157
.xx "" "cvsfs \- cvs repository" "viewer" "" "cvsfs(4)" 663
.xx "" "gview \- interactive graph" "viewer" "" "gview(1)" 101
.xx "" "vncs, vncv \- remote frame buffer server and" "viewer for Virtual Network Computing (VN)" "" "vnc(1)" 258
.xx "" "qrot, scale, move, xform, ixform, persp, look," "viewport \- Geometric transformations" "/rot," "matrix(2)" 450
.xx "" "segdetach, segfree \- map/unmap a segment in" "virtual memory" "segattach," "segattach(2)" 524
.xx "" "0l, 1l, 2l, 5l, 6l, 7l, 8l, kl, ql," "vl \- loaders" "" "2l(1)" 8
.xx "viewer for Virtual Network Computing (VN)" "" "vncs, vncv \- remote frame buffer server and" "" "vnc(1)" 258
.xx "" "rtc \- real-time clock and" "volatile RAM" "" "rtc(3)" 630
.xx "" "fprintf, printf, sprintf, snprintf, vfprintf," "vprintf, vsprintf, vsnprintf \- print formatted/" "" "fprintf(2)" 393
.xx "" "/lerp3, reflect3, nearseg3, pldist3, vdiv3," "vrem3, pn2f3, ppp2f3, fff2p3, pdiv4, add4,/" "" "arith3(2)" 294
.xx "" "/runesmprint, vfprint, vsnprint, vseprint," "vsmprint, runevsnprint, runevseprint,/" "" "print(2)" 487
.xx "" "/printf, sprintf, snprintf, vfprintf, vprintf," "vsprintf, vsnprintf \- print formatted output" "" "fprintf(2)" 393
.xx "" "vt \- emulate a" "VT-100 or VT-220 terminal" "" "vt(1)" 260
.xx "vtblockput, vtblockwrite,/" "VtBlock, VtCache," "vtblockcopy, vtblockdirty, vtblockduplock," "" "venti-cache(2)" 559
.xx "vtfree \- error-checking memory allocators" "" "vtbrk, vtmalloc, vtmallocz, vtrealloc, vtstrdup," "" "venti-mem(2)" 570
.xx "" "/vtblockduplock, vtblockput, vtblockwrite," "vtcachealloc, vtcacheallocblock,/" "" "venti-cache(2)" 559
.xx "" "/vtblockwrite, vtcachealloc, vtcacheallocblock," "vtcacheblocksize, vtcachefree, vtcacheglobal,/" "" "venti-cache(2)" 559
.xx "" "/vtcacheblocksize, vtcachefree, vtcacheglobal," "vtcachelocal, vtcachesetwrite, vtglobaltolocal,/" "" "venti-cache(2)" 559
.xx "vtversion, vtdebug, vthangup \- Venti/" "VtConn," "vtconn, vtdial, vtfreeconn, vtsend, vtrecv," "" "venti-conn(2)" 563
.xx "vtreadpacket, vtwritepacket, vtsync, vtping,/" "" "vtconnect, vthello, vtread, vtwrite," "" "venti-client(2)" 561
.xx "vtentryunpack, vtfcallclear, vtfcallfmt,/" "" "VtEntry, VtFcall, VtRoot, vtentrypack," "" "venti-fcall(2)" 565
.xx "vtfcallfmt,/" "VtEntry, VtFcall, VtRoot," "vtentrypack, vtentryunpack, vtfcallclear," "" "venti-fcall(2)" 565
.xx "" "/vtentryunpack, vtfcallclear, vtfcallfmt," "vtfcallpack, vtfcallunpack, vtfromdisktype,/" "" "venti-fcall(2)" 565
.xx "vtfilecreate, vtfilecreateroot, vtfileflush,/" "" "VtFile, vtfileblock, vtfileblockscore, vtfileclose," "" "venti-file(2)" 567
.xx "vtfilecreate, vtfilecreateroot,/" "VtFile," "vtfileblock, vtfileblockscore, vtfileclose," "" "venti-file(2)" 567
.xx "" "/vtfileclose, vtfilecreate, vtfilecreateroot," "vtfileflush, vtfileflushbefore, vtfilegetdirsize,/" "" "venti-file(2)" 567
.xx "" "/vtfileflush, vtfileflushbefore, vtfilegetdirsize," "vtfilegetentry, vtfilegetsize, vtfileincref,/" "" "venti-file(2)" 567
.xx "" "/vtfilegetentry, vtfilegetsize, vtfileincref," "vtfilelock, vtfilelock2, vtfileopen,/" "" "venti-file(2)" 567
.xx "" "/vtfileincref, vtfilelock, vtfilelock2, vtfileopen," "vtfileopenroot, vtfileread, vtfileremove,/" "" "venti-file(2)" 567
.xx "" "/vtfileopenroot, vtfileread, vtfileremove," "vtfilesetdirsize, vtfilesetentry, vtfilesetsize,/" "" "venti-file(2)" 567
.xx "" "/vtfilesetdirsize, vtfilesetentry, vtfilesetsize," "vtfiletruncate, vtfileunlock, vtfilewrite \- Venti/" "" "venti-file(2)" 567
.xx "" "vtbrk, vtmalloc, vtmallocz, vtrealloc, vtstrdup," "vtfree \- error-checking memory allocators" "" "venti-mem(2)" 570
.xx "vtdebug, vthangup \-/" "VtConn, vtconn, vtdial," "vtfreeconn, vtsend, vtrecv, vtversion," "" "venti-conn(2)" 563
.xx "" "vtsrvhello, vtlisten," "vtgetreq, vtrespond \- Venti server" "" "venti-server(2)" 573
.xx "" "/vtfcallunpack, vtfromdisktype, vttodisktype," "vtgetstring, vtputstring, vtrootpack,/" "" "venti-fcall(2)" 565
.xx "" "/vtcacheglobal, vtcachelocal, vtcachesetwrite," "vtglobaltolocal, vtlocaltoglobal \- Venti block/" "" "venti-cache(2)" 559
.xx "" "/vtfreeconn, vtsend, vtrecv, vtversion, vtdebug," "vthangup \- Venti network connections" "" "venti-conn(2)" 563
.xx "vtwritepacket, vtsync, vtping,/" "vtconnect," "vthello, vtread, vtwrite, vtreadpacket," "" "venti-client(2)" 561
.xx "" "vtsrvhello," "vtlisten, vtgetreq, vtrespond \- Venti server" "" "venti-server(2)" 573
.xx "" "/vtcachelocal, vtcachesetwrite, vtglobaltolocal," "vtlocaltoglobal \- Venti block cache" "" "venti-cache(2)" 559
.xx "vtlogdump, vtlognames, vtlogopen,/" "" "VtLog, VtLogChunk, vtlog, vtlogclose," "" "venti-log(2)" 569
.xx "vtlogopen, vtlogprint,/" "VtLog, VtLogChunk," "vtlog, vtlogclose, vtlogdump, vtlognames," "" "venti-log(2)" 569
.xx "" "/vtlogdump, vtlognames, vtlogopen, vtlogprint," "vtlogremove, vtlogopen, ventilogging \- Venti/" "" "venti-log(2)" 569
.xx "error-checking memory/" "vtbrk, vtmalloc," "vtmallocz, vtrealloc, vtstrdup, vtfree \-" "" "venti-mem(2)" 570
.xx "" "/uitomp, mptoi, itomp, uvtomp, mptouv," "vtomp, mptov, mpdigdiv, mpadd, mpsub,/" "" "mp(2)" 463
.xx "" "/vtputstring, vtrootpack, vtrootunpack," "vtparsescore, vtscorefmt \- venti data formats" "" "venti-fcall(2)" 565
.xx "" "/vtfromdisktype, vttodisktype, vtgetstring," "vtputstring, vtrootpack, vtrootunpack,/" "" "venti-fcall(2)" 565
.xx "vtsync, vtping, vtrpc,/" "vtconnect, vthello," "vtread, vtwrite, vtreadpacket, vtwritepacket," "" "venti-client(2)" 561
.xx "memory allocators" "vtbrk, vtmalloc, vtmallocz," "vtrealloc, vtstrdup, vtfree \- error-checking" "" "venti-mem(2)" 570
.xx "" "VtConn, vtconn, vtdial, vtfreeconn, vtsend," "vtrecv, vtversion, vtdebug, vthangup \- Venti/" "" "venti-conn(2)" 563
.xx "" "vtsrvhello, vtlisten, vtgetreq," "vtrespond \- Venti server" "" "venti-server(2)" 573
.xx "vtfcallclear, vtfcallfmt,/" "VtEntry, VtFcall," "VtRoot, vtentrypack, vtentryunpack," "" "venti-fcall(2)" 565
.xx "" "/vttodisktype, vtgetstring, vtputstring," "vtrootpack, vtrootunpack, vtparsescore,/" "" "venti-fcall(2)" 565
.xx "" "/vtreadpacket, vtwritepacket, vtsync, vtping," "vtrpc, ventidoublechecksha1 \- Venti client" "" "venti-client(2)" 561
.xx "" "vtrootpack, vtrootunpack, vtparsescore," "vtscorefmt \- venti data formats" "/vtputstring," "venti-fcall(2)" 565
.xx "Venti/" "VtConn, vtconn, vtdial, vtfreeconn," "vtsend, vtrecv, vtversion, vtdebug, vthangup \-" "" "venti-conn(2)" 563
.xx "Venti server" "" "vtsrvhello, vtlisten, vtgetreq, vtrespond \-" "" "venti-server(2)" 573
.xx "" "vtbrk, vtmalloc, vtmallocz, vtrealloc," "vtstrdup, vtfree \- error-checking memory/" "" "venti-mem(2)" 570
.xx "" "/vtread, vtwrite, vtreadpacket, vtwritepacket," "vtsync, vtping, vtrpc, ventidoublechecksha1 \-/" "" "venti-client(2)" 561
.xx "" "/vtfcallpack, vtfcallunpack, vtfromdisktype," "vttodisktype, vtgetstring, vtputstring,/" "" "venti-fcall(2)" 565
.xx "" "/vtconn, vtdial, vtfreeconn, vtsend, vtrecv," "vtversion, vtdebug, vthangup \- Venti network/" "" "venti-conn(2)" 563
.xx "" "/vthello, vtread, vtwrite, vtreadpacket," "vtwritepacket, vtsync, vtping, vtrpc,/" "" "venti-client(2)" 561
.xx "" "vtzerotruncate, vtzeroextend," "vtzeroscore \- Venti block truncation" "" "venti-zero(2)" 574
.xx "" "faces, seemail," "vwhois \- mailbox interface" "" "faces(1)" 83
.xx "" "await," "wait, waitpid \- wait for a process to exit" "" "wait(2)" 575
.xx "" "rc, cd, eval, exec, exit, flag, rfork, shift," "wait, whatis, ., ~ \- command language" "" "rc(1)" 181
.xx "" "wol \- send" "wake-on-lan Ethernet packet" "" "wol(8)" 966
.xx "" "" "walk \- descend a directory hierarchy" "" "walk(5)" 750
.xx "" "/freetree, File, createfile, closefile, removefile," "walkfile, opendirfile, readdirfile, closedirfile,/" "" "9pfile(2)" 281
.xx "" "keyfs," "warning \- authentication database files" "" "keyfs(4)" 692
.xx "silenterror \- exception handling for threaded/" "" "waserror, poperror, nexterror, error, fmterror," "" "error(2)" 365
.xx "" "life, mahjongg, memo, sokoban, sudoku \- time" "wasters" "4s, 5s, festoon, juggle," "games(1)" 92
.xx "" "" "wc \- word count" "" "wc(1)" 261
.xx "msexceltables \- extract/" "doc2txt, doc2ps," "wdoc2txt, xls2txt, olefs, mswordstrings," "" "doc2txt(1)" 69
.xx "" "" "weather \- print weather report" "" "weather(1)" 262
.xx "" "abaco, readweb \- browse the World-Wide" "Web" "" "abaco(1)" 10
.xx "" "httpfile \- serve a single" "web file" "" "httpfile(4)" 686
.xx "" "webfs \- world wide" "web file system" "" "webfs(4)" 730
.xx "" "hget \- retrieve a" "web page corresponding to a url" "" "hget(1)" 105
.xx "" "" "webcookies \- HTTP cookie manager" "" "webcookies(4)" 728
.xx "" "" "webfs \- world wide web file system" "" "webfs(4)" 730
.xx "" "httpd, save, imagemap, man2html," "webls \- HTTP server" "" "httpd(8)" 871
.xx "" "errstr, rerrstr," "werrstr \- description of last system call error" "" "errstr(2)" 367
.xx "" "rc, cd, eval, exec, exit, flag, rfork, shift, wait," "whatis, ., ~ \- command language" "" "rc(1)" 181
.xx "" "" "who, whois \- who is using the machine" "" "who(1)" 263
.xx "" "aliasmail \- expand system" "wide mail aliases" "" "aliasmail(8)" 828
.xx "" "abaco, readweb \- browse the" "Wide Web" "" "abaco(1)" 10
.xx "" "webfs \- world" "wide web file system" "" "webfs(4)" 730
.xx "" "" "wikifs, wikipost \- wiki file system" "" "wikifs(4)" 733
.xx "" "acme," "win, awd \- interactive text windows" "" "acme(1)" 15
.xx "" "statusbar \- display a bar graph status" "window" "" "statusbar(8)" 948
.xx "" "topwindow, topnwindows, originwindow \-" "window management" "/bottomnwindows," "window(2)" 576
.xx "" "rio \-" "window system files" "" "rio(4)" 708
.xx "" "rio, label," "window, wloc \- window system" "" "rio(1)" 191
.xx "" "acme, win, awd \- interactive text" "windows" "" "acme(1)" 15
.xx "" "acme \- control files for text" "windows" "" "acme(4)" 652
.xx "" "winwatch \- monitor rio" "windows" "" "winwatch(1)" 264
.xx "" "cifs - Microsoft™" "Windows network filesystem client" "" "cifs(4)" 659
.xx "" "/memltofrontn, memltorear, memltorearn \-" "windows of memory-resident images" "" "memlayer(2)" 456
.xx "" "" "winwatch \- monitor rio windows" "" "winwatch(1)" 264
.xx "inter-integrated circuit (I⁲C) interface" "twsi -" "wire serial interface (TWS) and" "" "twsi(3)" 643
.xx "" "rio, label, window," "wloc \- window system" "" "rio(1)" 191
.xx "" "/canqlock, qunlock, rlock, canrlock, runlock," "wlock, canwlock, wunlock, rsleep, rwakeup,/" "" "lock(2)" 442
.xx "" "" "wol \- send wake-on-lan Ethernet packet" "" "wol(8)" 966
.xx "" "wc \-" "word count" "" "wc(1)" 261
.xx "" "/Memdata, Memdrawparam, memimageinit," "wordaddr, byteaddr, memimagemove,/" "" "memdraw(2)" 452
.xx "writing/" "/readimage, writeimage, bytesperline," "wordsperline \- allocating, freeing, reading," "" "allocimage(2)" 289
.xx "recvt, sendt \- worker thread management" "" "workerdispatch, timerdispatch, timerrecall," "" "worker(2)" 578
.xx "" "chdir \- change" "working directory" "" "chdir(2)" 317
.xx "" "pwd, pbd \-" "working directory" "" "pwd(1)" 179
.xx "" "rwd, conswdir \- maintain remote" "working directory" "" "rwd(1)" 196
.xx "" "webfs \-" "world wide web file system" "" "webfs(4)" 730
.xx "" "abaco, readweb \- browse the" "World-Wide Web" "" "abaco(1)" 10
.xx "" "cwfs \-" "worm file server, dump" "" "cwfs(4)" 665
.xx "" "rdarena," "wrarena \- copy arenas between venti servers" "" "venti-backup(8)" 960
.xx "" "preadv, pwritev \- scatter/gather read and" "write" "readv, writev," "readv(2)" 507
.xx "" "read," "write \- transfer data from and to a file" "" "read(5)" 745
.xx "" "read," "write, copy \- simple Venti clients" "" "venti(1)" 255
.xx "" "read, readn," "write, pread, pwrite \- read or write file" "" "read(2)" 505
.xx "" "RGB, readcolmap," "writecolmap \- access display color map" "" "readcolmap(2)" 506
.xx "" "/cloadimage, unloadimage, readimage," "writeimage, bytesperline, wordsperline \-/" "" "allocimage(2)" 289
.xx "" "/readmemimage, creadmemimage," "writememimage, freememimage,/" "" "memdraw(2)" 452
.xx "" "\- optical disc (CD, DVD, B) track reader and" "writer file system" "cdfs, cddb" "cdfs(4)" 656
.xx "" "\- spin locks, queueing rendezvous locks," "writer locks, rendezvous points, and/" "/decref" "lock(2)" 442
.xx "" "/subfontname, readsubfont, readsubfonti," "writesubfont, stringsubfont, strsubfontwidth,/" "" "subfont(2)" 540
.xx "and write" "readv," "writev, preadv, pwritev \- scatter/gather read" "" "readv(2)" 507
.xx "" "open, create, close \- open a file for reading or" "writing, create file" "" "open(2)" 477
.xx "" "wordsperline \- allocating, freeing, reading," "writing images" "/writeimage, bytesperline," "allocimage(2)" 289
.xx "" "/enable, disable, authsrv, guard.srv, debug," "wrkey, login, newns, none, as \- maintain or/" "" "auth(8)" 833
.xx "" "stat," "wstat \- inquire or change file attributes" "" "stat(5)" 747
.xx "dirfwstat, nulldir \- get and put file/" "stat, fstat," "wstat, fwstat, dirstat, dirfstat, dirwstat," "" "stat(2)" 533
.xx "" "/rlock, canrlock, runlock, wlock, canwlock," "wunlock, rsleep, rwakeup, rwakeupall, incref,/" "" "lock(2)" 442
.xx "" "/rsaprivtopub, rsapuballoc, rsapubfree," "X509toRSApub, X509gen, X509verify \- RSA/" "" "rsa(2)" 512
.xx "" "" "xd \- hex, octal, decimal, or ASCII dump" "" "xd(1)" 265
.xx "" "/adjoint, invertmat, xformpoint, xformpointd," "xformplane, pushmat, popmat, rot, qrot,/" "" "matrix(2)" 450
.xx "\- extract/" "doc2txt, doc2ps, wdoc2txt," "xls2txt, olefs, mswordstrings, msexceltables" "" "doc2txt(1)" 69
.xx "file transfer" "con, telnet, rx, hayes, xms," "xmr \- remote login, execution, and XMODEM" "" "con(1)" 48
.xx "" "" "yacc \- yet another compiler-compiler" "" "yacc(1)" 266
.xx "dump" "" "yesterday, diffy \- print file names from the" "" "yesterday(1)" 268
.xx "" "/threadsetgrp, threadsetname, threadwaitchan," "yield \- thread and proc management" "" "thread(2)" 545
.xx "convert/" "jpg, gif, png, ppm, bmp, v210," "yuv, ico, togif, toppm, topng, toico \- view and" "" "jpg(1)" 111
.xx "" "packetstats, packettrailer, packettrim \-" "zero-copy network buffers" "/packetsplit," "venti-packet(2)" 571
.xx "" "/bzip2, bunzip2, compress, uncompress," "zip, unzip \- compress and expand data" "" "gzip(1)" 103
.xx "" "32vfs, cpiofs, tapfs, tarfs, tpfs, v6fs, v10fs," "zipfs \- mount archival file systems" "" "tapefs(4)" 715