This file is indexed.

/usr/share/doc/perl-doc-html/perlport.html is in perl-doc-html 5.22.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>perlport - perldoc.perl.org</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <meta http-equiv="Content-Language" content="en-gb">
  <link rel="search" type="application/opensearchdescription+xml" title="Search perldoc.perl.org" href="/static/search.xml"/>
  <link href="static/css-20100830.css" rel="stylesheet" rev="stylesheet" type="text/css" media="screen">
  <link href="static/exploreperl.css" rel="stylesheet" rev="stylesheet" type="text/css">
</head>

<body onLoad="perldoc.startup();" onPageShow="if (event.persisted) perldoc.startup();">
    <div id="page">
      
      <div id="header">
	<div id="homepage_link">
	  <a href="index.html"></a>
	</div>
	<div id="strapline">
	  Perl Programming Documentation
	</div>
	<div id="download_link" class="download">
	  <a href="http://www.perl.org/get.html">Download Perl</a>
	</div>
	<div id="explore_link" class="download">
	  <a id="explore_anchor" href="#">Explore</a>
	</div>
      </div>
      
      <div id="body">
        <div id="left_column">
          <div class="side_group">
            
	    <div class="side_panel doc_panel">
              <p>Manual</p>
              <ul>
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">History / Changes</a>
                <li><a href="index-licence.html">License</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Reference</p>
              <ul>
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Special Variables</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platform Specific</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Modules</p>
              <ul>
		<li>
		
                
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		
                  
		
		
                    <a href="index-modules-A.html">A</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-B.html">B</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-C.html">C</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-D.html">D</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-E.html">E</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-F.html">F</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-G.html">G</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-H.html">H</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-I.html">I</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-L.html">L</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-M.html">M</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-N.html">N</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-O.html">O</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-P.html">P</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-S.html">S</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-T.html">T</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-U.html">U</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-X.html">X</a>
                    
                
              </ul>
            </div>
            
	      <div class="side_panel doc_panel">
		<p>Tools</p>
		<ul>
		  <li><a href="preferences.html">Preferences</a>
		</ul>
	      </div>
            
          </div>
        </div>
        <div id="centre_column">
          <div id="content_header">
            <div id="title_bar">
              <div id="page_name">
                <h1>perlport</h1>
              </div>
              <div id="perl_version">
                Perl 5 version 22.0 documentation
              </div>
              <div class="page_links" id="page_links_top">
                <a href="#" onClick="toolbar.goToTop();return false;">Go to top</a>
		
              </div>
	      <div class="page_links" id="page_links_bottom">
		
                  <a href="#" id="page_index_toggle">Show page index</a> &bull;
		
                <a href="#" id="recent_pages_toggle">Show recent pages</a>		
	      </div>
	      <div id="search_form">
		<form action="search.html" method="GET" id="search">
		  <input type="text" name="q" id="search_box" alt="Search">
		</form>
	      </div>
            </div>
            <div id="breadcrumbs">
                
    <a href="index.html">Home</a> &gt;
    
      
        <a href="index-language.html">Language reference</a> &gt;
      
    
    perlport
  

            </div>
          </div>
          <div id="content_body">
	    <!--[if lt IE 7]>
 <div class="noscript">
   <p>
     <strong>It looks like you're using Internet Explorer 6. This is a very old
     browser which does not offer full support for modern websites.</strong>
   </p>
   <p>
     Unfortunately this means that this website will not work on
     your computer.
   </p>
   <p>
     Don't miss out though! To view the site (and get a better experience from
     many other websites), simply upgrade to
     <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet
Explorer 8</a>
     or download an alternative browser such as
     <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>,
     <a href="http://www.apple.com/safari/download/">Safari</a>, or
     <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
   </p>
   <p>
     All of these browsers are free. If you're using a PC at work, you may
     need to contact your IT administrator.
   </p>
 </div>
<![endif]-->
	    <noscript>
	      <div class="noscript">
	      <p>
                <strong>Please note: Many features of this site require JavaScript. You appear to have JavaScript disabled,
	        or are running a non-JavaScript capable web browser.</strong>
	      </p>
	      <p>
		To get the best experience, please enable JavaScript or download a modern web browser such as <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet Explorer 8</a>, <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>, <a href="http://www.apple.com/safari/download/">Safari</a>, or <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
              </p>
	      </div>
	    </noscript>

	    <div id="recent_pages" class="hud_container">
	      <div id="recent_pages_header" class="hud_header">
		<div id="recent_pages_close" class="hud_close"><a href="#" onClick="recentPages.hide();return false;"></a></div>
		<div id="recent_pages_title" class="hud_title"><span class="hud_span_top">Recently read</span></div>
		<div id="recent_pages_topright" class="hud_topright"></div>
	      </div>
	      <div id="recent_pages_content" class="hud_content">
	      </div>
	      <div id="recent_pages_footer" class="hud_footer">
		<div id="recent_pages_bottomleft" class="hud_bottomleft"></div>
		<div id="recent_pages_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
		<div id="recent_pages_resize" class="hud_resize"></div>
	      </div>
	    </div>
  
	    <div id="from_search"></div>
            <h1>perlport</h1>


  <!--    -->
<ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#ISSUES">ISSUES</a><ul><li><a href="#Newlines">Newlines</a><li><a href="#Numbers-endianness-and-Width">Numbers endianness and Width</a><li><a href="#Files-and-Filesystems">Files and Filesystems</a><li><a href="#System-Interaction">System Interaction</a><li><a href="#Command-names-versus-file-pathnames">Command names versus file pathnames</a><li><a href="#Networking">Networking</a><li><a href="#Interprocess-Communication-(IPC)">Interprocess Communication (IPC)</a><li><a href="#External-Subroutines-(XS)">External Subroutines (XS)</a><li><a href="#Standard-Modules">Standard Modules</a><li><a href="#Time-and-Date">Time and Date</a><li><a href="#Character-sets-and-character-encoding">Character sets and character encoding</a><li><a href="#Internationalisation">Internationalisation</a><li><a href="#System-Resources">System Resources</a><li><a href="#Security">Security</a><li><a href="#Style">Style</a></ul><li><a href="#CPAN-Testers">CPAN Testers</a><li><a href="#PLATFORMS">PLATFORMS</a><ul><li><a href="#Unix">Unix</a><li><a href="#DOS-and-Derivatives">DOS and Derivatives</a><li><a href="#VMS">VMS</a><li><a href="#VOS">VOS</a><li><a href="#EBCDIC-Platforms">EBCDIC Platforms</a><li><a href="#Acorn-RISC-OS">Acorn RISC OS</a><li><a href="#Other-perls">Other perls</a></ul><li><a href="#FUNCTION-IMPLEMENTATIONS">FUNCTION IMPLEMENTATIONS</a><ul><li><a href="#Alphabetical-Listing-of-Perl-Functions">Alphabetical Listing of Perl Functions</a></ul><li><a href="#Supported-Platforms">Supported Platforms</a><li><a href="#EOL-Platforms">EOL Platforms</a><ul><li><a href="#(Perl-5.20)">(Perl 5.20)</a><li><a href="#(Perl-5.14)">(Perl 5.14)</a><li><a href="#(Perl-5.12)">(Perl 5.12)</a></ul><li><a href="#Supported-Platforms-(Perl-5.8)">Supported Platforms (Perl 5.8)</a><li><a href="#SEE-ALSO">SEE ALSO</a><li><a href="#AUTHORS-%2f-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</a></ul><a name="NAME"></a><h1>NAME</h1>
<p>perlport - Writing portable Perl</p>
<a name="DESCRIPTION"></a><h1>DESCRIPTION</h1>
<p>Perl runs on numerous operating systems.  While most of them share
much in common, they also have their own unique features.</p>
<p>This document is meant to help you to find out what constitutes portable
Perl code.  That way once you make a decision to write portably,
you know where the lines are drawn, and you can stay within them.</p>
<p>There is a tradeoff between taking full advantage of one particular
type of computer and taking advantage of a full range of them.
Naturally, as you broaden your range and become more diverse, the
common factors drop, and you are left with an increasingly smaller
area of common ground in which you can operate to accomplish a
particular task.  Thus, when you begin attacking a problem, it is
important to consider under which part of the tradeoff curve you
want to operate.  Specifically, you must decide whether it is
important that the task that you are coding has the full generality
of being portable, or whether to just get the job done right now.
This is the hardest choice to be made.  The rest is easy, because
Perl provides many choices, whichever way you want to approach your
problem.</p>
<p>Looking at it another way, writing portable code is usually about
willfully limiting your available choices.  Naturally, it takes
discipline and sacrifice to do that.  The product of portability
and convenience may be a constant.  You have been warned.</p>
<p>Be aware of two important points:</p>
<ul>
<li><a name="Not-all-Perl-programs-have-to-be-portable"></a><b>Not all Perl programs have to be portable</b>
<p>There is no reason you should not use Perl as a language to glue Unix
tools together, or to prototype a Macintosh application, or to manage the
Windows registry.  If it makes no sense to aim for portability for one
reason or another in a given program, then don't bother.</p>
</li>
<li><a name="Nearly-all-of-Perl-already-_is_-portable"></a><b>Nearly all of Perl already <i>is</i> portable</b>
<p>Don't be fooled into thinking that it is hard to create portable Perl
code.  It isn't.  Perl tries its level-best to bridge the gaps between
what's available on different platforms, and all the means available to
use those features.  Thus almost all Perl code runs on any machine
without modification.  But there are some significant issues in
writing portable code, and this document is entirely about those issues.</p>
</li>
</ul>
<p>Here's the general rule: When you approach a task commonly done
using a whole range of platforms, think about writing portable
code.  That way, you don't sacrifice much by way of the implementation
choices you can avail yourself of, and at the same time you can give
your users lots of platform choices.  On the other hand, when you have to
take advantage of some unique feature of a particular platform, as is
often the case with systems programming (whether for Unix, Windows,
VMS, etc.), consider writing platform-specific code.</p>
<p>When the code will run on only two or three operating systems, you
may need to consider only the differences of those particular systems.
The important thing is to decide where the code will run and to be
deliberate in your decision.</p>
<p>The material below is separated into three main sections: main issues of
portability (<a href="#ISSUES">ISSUES</a>), platform-specific issues (<a href="#PLATFORMS">PLATFORMS</a>), and
built-in Perl functions that behave differently on various ports
(<a href="#FUNCTION-IMPLEMENTATIONS">FUNCTION IMPLEMENTATIONS</a>).</p>
<p>This information should not be considered complete; it includes possibly
transient information about idiosyncrasies of some of the ports, almost
all of which are in a state of constant evolution.  Thus, this material
should be considered a perpetual work in progress
(<code class="inline"><span class="q">&lt;IMG SRC=&quot;yellow_sign.gif&quot; ALT=&quot;Under Construction&quot;&gt;</span></code>
).</p>
<a name="ISSUES"></a><h1>ISSUES</h1>
<a name="Newlines"></a><h2>Newlines</h2>
<p>In most operating systems, lines in files are terminated by newlines.
Just what is used as a newline may vary from OS to OS.  Unix
traditionally uses <code class="inline">\<span class="n">012</span></code>
, one type of DOSish I/O uses <code class="inline">\<span class="n">015</span>\<span class="n">012</span></code>
,
Mac OS uses <code class="inline">\<span class="n">015</span></code>
, and z/OS uses <code class="inline">\<span class="n">025</span></code>
.</p>
<p>Perl uses <code class="inline">\<span class="w">n</span></code>
 to represent the "logical" newline, where what is
logical may depend on the platform in use.  In MacPerl, <code class="inline">\<span class="w">n</span></code>
 always
means <code class="inline">\<span class="n">015</span></code>
.  On EBCDIC platforms, <code class="inline">\<span class="w">n</span></code>
 could be <code class="inline">\<span class="n">025</span></code>
 or <code class="inline">\<span class="n">045</span></code>
.
In DOSish perls, <code class="inline">\<span class="w">n</span></code>
 usually means <code class="inline">\<span class="n">012</span></code>
, but when
accessing a file in "text" mode, perl uses the <code class="inline"><span class="j">:</span><span class="w">crlf</span></code>
 layer that
translates it to (or from) <code class="inline">\<span class="n">015</span>\<span class="n">012</span></code>
, depending on whether you're
reading or writing. Unix does the same thing on ttys in canonical
mode.  <code class="inline">\<span class="n">015</span>\<span class="n">012</span></code>
 is commonly referred to as CRLF.</p>
<p>To trim trailing newlines from text lines use <code class="inline"><a class="l_k" href="functions/chomp.html">chomp()</a></code>.  With default
settings that function looks for a trailing <code class="inline">\<span class="w">n</span></code>
 character and thus
trims in a portable way.</p>
<p>When dealing with binary files (or text files in binary mode) be sure
to explicitly set $/ to the appropriate value for your file format
before using <code class="inline"><a class="l_k" href="functions/chomp.html">chomp()</a></code>.</p>
<p>Because of the "text" mode translation, DOSish perls have limitations
in using <code class="inline"><a class="l_k" href="functions/seek.html">seek</a></code> and <code class="inline"><a class="l_k" href="functions/tell.html">tell</a></code> on a file accessed in "text" mode.
Stick to <code class="inline"><a class="l_k" href="functions/seek.html">seek</a></code>-ing to locations you got from <code class="inline"><a class="l_k" href="functions/tell.html">tell</a></code> (and no
others), and you are usually free to use <code class="inline"><a class="l_k" href="functions/seek.html">seek</a></code> and <code class="inline"><a class="l_k" href="functions/tell.html">tell</a></code> even
in "text" mode.  Using <code class="inline"><a class="l_k" href="functions/seek.html">seek</a></code> or <code class="inline"><a class="l_k" href="functions/tell.html">tell</a></code> or other file operations
may be non-portable.  If you use <code class="inline"><a class="l_k" href="functions/binmode.html">binmode</a></code> on a file, however, you
can usually <code class="inline"><a class="l_k" href="functions/seek.html">seek</a></code> and <code class="inline"><a class="l_k" href="functions/tell.html">tell</a></code> with arbitrary values safely.</p>
<p>A common misconception in socket programming is that <code class="inline">\<span class="w">n</span> <a class="l_k" href="functions/eq.html">eq</a> \<span class="n">012</span></code>

everywhere.  When using protocols such as common Internet protocols,
<code class="inline">\<span class="n">012</span></code>
 and <code class="inline">\<span class="n">015</span></code>
 are called for specifically, and the values of
the logical <code class="inline">\<span class="w">n</span></code>
 and <code class="inline">\<span class="w">r</span></code>
 (carriage return) are not reliable.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/print.html">print</a> <span class="i">SOCKET</span> <span class="q">&quot;Hi there, client!\r\n&quot;</span><span class="sc">;</span>      <span class="c"># WRONG</span></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="i">SOCKET</span> <span class="q">&quot;Hi there, client!\015\012&quot;</span><span class="sc">;</span>  <span class="c"># RIGHT</span></li></ol></pre><p>However, using <code class="inline">\<span class="n">015</span>\<span class="n">012</span></code>
 (or <code class="inline">\<span class="w">cM</span>\<span class="w">cJ</span></code>
, or <code class="inline">\<span class="w">x0D</span>\<span class="w">x0A</span></code>
) can be tedious
and unsightly, as well as confusing to those maintaining the code.  As
such, the <code class="inline"><span class="w">Socket</span></code>
 module supplies the Right Thing for those who want it.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Socket</span> <span class="q">qw(:DEFAULT :crlf)</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="i">SOCKET</span> <span class="q">&quot;Hi there, client!$CRLF&quot;</span>      <span class="c"># RIGHT</span></li></ol></pre><p>When reading from a socket, remember that the default input record
separator <code class="inline"><span class="i">$/</span></code>
 is <code class="inline">\<span class="w">n</span></code>
, but robust socket code will recognize as
either <code class="inline">\<span class="n">012</span></code>
 or <code class="inline">\<span class="n">015</span>\<span class="n">012</span></code>
 as end of line:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/while.html">while</a> <span class="s">(</span><span class="q">&lt;SOCKET&gt;</span><span class="s">)</span> <span class="s">{</span>  <span class="c"># NOT ADVISABLE!</span></li><li>        <span class="c"># ...</span></li><li>    <span class="s">}</span></li></ol></pre><p>Because both CRLF and LF end in LF, the input record separator can
be set to LF and any CR stripped later.  Better to write:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">Socket</span> <span class="q">qw(:DEFAULT :crlf)</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/local.html">local</a><span class="s">(</span><span class="i">$/</span><span class="s">)</span> = <span class="w">LF</span><span class="sc">;</span>      <span class="c"># not needed if $/ is already \012</span></li><li></li><li>    while <span class="s">(</span><span class="q">&lt;SOCKET&gt;</span><span class="s">)</span> <span class="s">{</span></li><li>        <span class="q">s/$CR?$LF/\n/</span><span class="sc">;</span>   <span class="c"># not sure if socket uses LF or CRLF, OK</span></li><li>    <span class="c">#   s/\015?\012/\n/; # same thing</span></li><li>    <span class="s">}</span></li></ol></pre><p>This example is preferred over the previous one--even for Unix
platforms--because now any <code class="inline">\<span class="n">015</span></code>
's (<code class="inline">\<span class="w">cM</span></code>
's) are stripped out
(and there was much rejoicing).</p>
<p>Similarly, functions that return text data--such as a function that
fetches a web page--should sometimes translate newlines before
returning the data, if they've not yet been translated to the local
newline representation.  A single line of code will often suffice:</p>
<pre class="verbatim"><ol><li>    <span class="i">$data</span> =~ <span class="q">s/\015?\012/\n/g</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/return.html">return</a> <span class="i">$data</span><span class="sc">;</span></li></ol></pre><p>Some of this may be confusing.  Here's a handy reference to the ASCII CR
and LF characters.  You can print it out and stick it in your wallet.</p>
<pre class="verbatim"><ol><li>    LF  eq  \012  eq  \x0A  eq  \cJ  eq  chr(10)  eq  ASCII 10</li><li>    CR  eq  \015  eq  \x0D  eq  \cM  eq  chr(13)  eq  ASCII 13</li><li></li><li>             | Unix | DOS  | Mac  |</li><li>        ---------------------------</li><li>        \n   |  LF  |  LF  |  CR  |</li><li>        \r   |  CR  |  CR  |  LF  |</li><li>        \n * |  LF  | CRLF |  CR  |</li><li>        \r * |  CR  |  CR  |  LF  |</li><li>        ---------------------------</li><li>        * text-mode STDIO</li></ol></pre><p>The Unix column assumes that you are not accessing a serial line
(like a tty) in canonical mode.  If you are, then CR on input becomes
"\n", and "\n" on output becomes CRLF.</p>
<p>These are just the most common definitions of <code class="inline">\<span class="w">n</span></code>
 and <code class="inline">\<span class="w">r</span></code>
 in Perl.
There may well be others.  For example, on an EBCDIC implementation
such as z/OS (OS/390) or OS/400 (using the ILE, the PASE is ASCII-based)
the above material is similar to "Unix" but the code numbers change:</p>
<pre class="verbatim"><ol><li>    LF  eq  \025  eq  \x15  eq  \cU  eq  chr(21)  eq  CP-1047 21</li><li>    LF  eq  \045  eq  \x25  eq           chr(37)  eq  CP-0037 37</li><li>    CR  eq  \015  eq  \x0D  eq  \cM  eq  chr(13)  eq  CP-1047 13</li><li>    CR  eq  \015  eq  \x0D  eq  \cM  eq  chr(13)  eq  CP-0037 13</li><li></li><li>             | z/OS | OS/400 |</li><li>        ----------------------</li><li>        \n   |  LF  |  LF    |</li><li>        \r   |  CR  |  CR    |</li><li>        \n * |  LF  |  LF    |</li><li>        \r * |  CR  |  CR    |</li><li>        ----------------------</li><li>        * text-mode STDIO</li></ol></pre><a name="Numbers-endianness-and-Width"></a><h2>Numbers endianness and Width</h2>
<p>Different CPUs store integers and floating point numbers in different
orders (called <i>endianness</i>) and widths (32-bit and 64-bit being the
most common today).  This affects your programs when they attempt to transfer
numbers in binary format from one CPU architecture to another,
usually either "live" via network connection, or by storing the
numbers to secondary storage such as a disk file or tape.</p>
<p>Conflicting storage orders make an utter mess out of the numbers.  If a
little-endian host (Intel, VAX) stores 0x12345678 (305419896 in
decimal), a big-endian host (Motorola, Sparc, PA) reads it as
0x78563412 (2018915346 in decimal).  Alpha and MIPS can be either:
Digital/Compaq used/uses them in little-endian mode; SGI/Cray uses
them in big-endian mode.  To avoid this problem in network (socket)
connections use the <code class="inline"><a class="l_k" href="functions/pack.html">pack</a></code> and <code class="inline"><a class="l_k" href="functions/unpack.html">unpack</a></code> formats <code class="inline"><span class="w">n</span></code>
 and <code class="inline"><span class="w">N</span></code>
, the
"network" orders.  These are guaranteed to be portable.</p>
<p>As of Perl 5.10.0, you can also use the <code class="inline">&gt;</code> and <code class="inline">&lt;</code>
 modifiers
to force big- or little-endian byte-order.  This is useful if you want
to store signed integers or 64-bit integers, for example.</p>
<p>You can explore the endianness of your platform by unpacking a
data structure packed in native format such as:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/print.html">print</a> <a class="l_k" href="functions/unpack.html">unpack</a><span class="s">(</span><span class="q">&quot;h*&quot;</span><span class="cm">,</span> <a class="l_k" href="functions/pack.html">pack</a><span class="s">(</span><span class="q">&quot;s2&quot;</span><span class="cm">,</span> <span class="n">1</span><span class="cm">,</span> <span class="n">2</span><span class="s">)</span><span class="s">)</span><span class="cm">,</span> <span class="q">&quot;\n&quot;</span><span class="sc">;</span></li><li>    <span class="c"># &#39;10002000&#39; on e.g. Intel x86 or Alpha 21064 in little-endian mode</span></li><li>    <span class="c"># &#39;00100020&#39; on e.g. Motorola 68040</span></li></ol></pre><p>If you need to distinguish between endian architectures you could use
either of the variables set like so:</p>
<pre class="verbatim"><ol><li>    <span class="i">$is_big_endian</span>   = <a class="l_k" href="functions/unpack.html">unpack</a><span class="s">(</span><span class="q">&quot;h*&quot;</span><span class="cm">,</span> <a class="l_k" href="functions/pack.html">pack</a><span class="s">(</span><span class="q">&quot;s&quot;</span><span class="cm">,</span> <span class="n">1</span><span class="s">)</span><span class="s">)</span> =~ <span class="q">/01/</span><span class="sc">;</span></li><li>    <span class="i">$is_little_endian</span> = <a class="l_k" href="functions/unpack.html">unpack</a><span class="s">(</span><span class="q">&quot;h*&quot;</span><span class="cm">,</span> <a class="l_k" href="functions/pack.html">pack</a><span class="s">(</span><span class="q">&quot;s&quot;</span><span class="cm">,</span> <span class="n">1</span><span class="s">)</span><span class="s">)</span> =~ <span class="q">/^1/</span><span class="sc">;</span></li></ol></pre><p>Differing widths can cause truncation even between platforms of equal
endianness.  The platform of shorter width loses the upper parts of the
number.  There is no good solution for this problem except to avoid
transferring or storing raw binary numbers.</p>
<p>One can circumnavigate both these problems in two ways.  Either
transfer and store numbers always in text format, instead of raw
binary, or else consider using modules like <code class="inline"><span class="w">Data::Dumper</span></code>
 and
<code class="inline"><span class="w">Storable</span></code>

(included as of Perl 5.8).  Keeping all data as text significantly
simplifies matters.</p>
<p>The v-strings are portable only up to v2147483647 (0x7FFF_FFFF), that's
how far EBCDIC, or more precisely UTF-EBCDIC will go.</p>
<a name="Files-and-Filesystems"></a><h2>Files and Filesystems</h2>
<p>Most platforms these days structure files in a hierarchical fashion.
So, it is reasonably safe to assume that all platforms support the
notion of a "path" to uniquely identify a file on the system.  How
that path is really written, though, differs considerably.</p>
<p>Although similar, file path specifications differ between Unix,
Windows, Mac OS, OS/2, VMS, VOS, RISC OS, and probably others.
Unix, for example, is one of the few OSes that has the elegant idea
of a single root directory.</p>
<p>DOS, OS/2, VMS, VOS, and Windows can work similarly to Unix with <code class="inline">/</code>
as path separator, or in their own idiosyncratic ways (such as having
several root directories and various "unrooted" device files such NIL:
and LPT:).</p>
<p>Mac OS 9 and earlier used <code class="inline"><span class="j">:</span></code>
 as a path separator instead of <code class="inline">/</code>.</p>
<p>The filesystem may support neither hard links (<code class="inline"><a class="l_k" href="functions/link.html">link</a></code>) nor
symbolic links (<code class="inline"><a class="l_k" href="functions/symlink.html">symlink</a></code>, <code class="inline"><a class="l_k" href="functions/readlink.html">readlink</a></code>, <code class="inline"><a class="l_k" href="functions/lstat.html">lstat</a></code>).</p>
<p>The filesystem may support neither access timestamp nor change
timestamp (meaning that about the only portable timestamp is the
modification timestamp), or one second granularity of any timestamps
(e.g. the FAT filesystem limits the time granularity to two seconds).</p>
<p>The "inode change timestamp" (the <code class="inline">-C</code>
 filetest) may really be the
"creation timestamp" (which it is not in Unix).</p>
<p>VOS perl can emulate Unix filenames with <code class="inline">/</code> as path separator.  The
native pathname characters greater-than, less-than, number-sign, and
percent-sign are always accepted.</p>
<p>RISC OS perl can emulate Unix filenames with <code class="inline">/</code> as path
separator, or go native and use <code class="inline">.</code> for path separator and <code class="inline"><span class="j">:</span></code>
 to
signal filesystems and disk names.</p>
<p>Don't assume Unix filesystem access semantics: that read, write,
and execute are all the permissions there are, and even if they exist,
that their semantics (for example what do <code class="inline"><span class="q">&quot;r&quot;</span></code>
, <code class="inline"><span class="q">&quot;w&quot;</span></code>
, and <code class="inline"><span class="q">&quot;x&quot;</span></code>
 mean on
a directory) are the Unix ones.  The various Unix/POSIX compatibility
layers usually try to make interfaces like <code class="inline"><a class="l_k" href="functions/chmod.html">chmod()</a></code> work, but sometimes
there simply is no good mapping.</p>
<p>If all this is intimidating, have no (well, maybe only a little)
fear.  There are modules that can help.  The <code class="inline"><span class="w">File::Spec</span></code>
 modules
provide methods to do the Right Thing on whatever platform happens
to be running the program.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">File::Spec::Functions</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/chdir.html">chdir</a><span class="s">(</span><span class="i">updir</span><span class="s">(</span><span class="s">)</span><span class="s">)</span><span class="sc">;</span>        <span class="c"># go up one directory</span></li><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">$file</span> = <span class="i">catfile</span><span class="s">(</span><span class="i">curdir</span><span class="s">(</span><span class="s">)</span><span class="cm">,</span> <span class="q">&#39;temp&#39;</span><span class="cm">,</span> <span class="q">&#39;file.txt&#39;</span><span class="s">)</span><span class="sc">;</span></li><li>    <span class="c"># on Unix and Win32, &#39;./temp/file.txt&#39;</span></li><li>    <span class="c"># on Mac OS Classic, &#39;:temp:file.txt&#39;</span></li><li>    <span class="c"># on VMS, &#39;[.temp]file.txt&#39;</span></li></ol></pre><p><code class="inline"><span class="w">File::Spec</span></code>
 is available in the standard distribution as of version
5.004_05.  <code class="inline"><span class="w">File::Spec::Functions</span></code>
 is only in <code class="inline"><span class="w">File::Spec</span></code>
 0.7 and later,
and some versions of Perl come with version 0.6.  If <code class="inline"><span class="w">File::Spec</span></code>

is not updated to 0.7 or later, you must use the object-oriented
interface from <code class="inline"><span class="w">File::Spec</span></code>
 (or upgrade <code class="inline"><span class="w">File::Spec</span></code>
).</p>
<p>In general, production code should not have file paths hardcoded.
Making them user-supplied or read from a configuration file is
better, keeping in mind that file path syntax varies on different
machines.</p>
<p>This is especially noticeable in scripts like Makefiles and test suites,
which often assume <code class="inline">/</code> as a path separator for subdirectories.</p>
<p>Also of use is <code class="inline"><span class="w">File::Basename</span></code>
 from the standard distribution, which
splits a pathname into pieces (base filename, full path to directory,
and file suffix).</p>
<p>Even when on a single platform (if you can call Unix a single platform),
remember not to count on the existence or the contents of particular
system-specific files or directories, like <i>/etc/passwd</i>,
<i>/etc/sendmail.conf</i>, <i>/etc/resolv.conf</i>, or even <i>/tmp/</i>.  For
example, <i>/etc/passwd</i> may exist but not contain the encrypted
passwords, because the system is using some form of enhanced security.
Or it may not contain all the accounts, because the system is using NIS.
If code does need to rely on such a file, include a description of the
file and its format in the code's documentation, then make it easy for
the user to override the default location of the file.</p>
<p>Don't assume a text file will end with a newline.  They should,
but people forget.</p>
<p>Do not have two files or directories of the same name with different
case, like <i>test.pl</i> and <i>Test.pl</i>, as many platforms have
case-insensitive (or at least case-forgiving) filenames.  Also, try
not to have non-word characters (except for <code class="inline">.</code>) in the names, and
keep them to the 8.3 convention, for maximum portability, onerous a
burden though this may appear.</p>
<p>Likewise, when using the <code class="inline"><span class="w">AutoSplit</span></code>
 module, try to keep your functions to
8.3 naming and case-insensitive conventions; or, at the least,
make it so the resulting files have a unique (case-insensitively)
first 8 characters.</p>
<p>Whitespace in filenames is tolerated on most systems, but not all,
and even on systems where it might be tolerated, some utilities
might become confused by such whitespace.</p>
<p>Many systems (DOS, VMS ODS-2) cannot have more than one <code class="inline">.</code> in their
filenames.</p>
<p>Don't assume <code class="inline">&gt;</code> won't be the first character of a filename.
Always use <code class="inline">&lt;</code>
 explicitly to open a file for reading, or even
better, use the three-arg version of <code class="inline"><a class="l_k" href="functions/open.html">open</a></code>, unless you want the user to
be able to specify a pipe open.</p>
<pre class="verbatim"><ol><li>    open my $fh, '&lt;', $existing_file) or die $!;</li></ol></pre><p>If filenames might use strange characters, it is safest to open it
with <code class="inline"><a class="l_k" href="functions/sysopen.html">sysopen</a></code> instead of <code class="inline"><a class="l_k" href="functions/open.html">open</a></code>.  <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> is magic and can
translate characters like <code class="inline">&gt;</code>, <code class="inline">&lt;</code>
, and <code class="inline">|</code>, which may
be the wrong thing to do.  (Sometimes, though, it's the right thing.)
Three-arg open can also help protect against this translation in cases
where it is undesirable.</p>
<p>Don't use <code class="inline"><span class="j">:</span></code>
 as a part of a filename since many systems use that for
their own semantics (Mac OS Classic for separating pathname components,
many networking schemes and utilities for separating the nodename and
the pathname, and so on).  For the same reasons, avoid <code class="inline"><span class="i">@</span></code>
, <code class="inline"><span class="sc">;</span></code>
 and
<code class="inline">|</code>.</p>
<p>Don't assume that in pathnames you can collapse two leading slashes
<code class="inline"><span class="q">//</span></code>
 into one: some networking and clustering filesystems have special
semantics for that.  Let the operating system sort it out.</p>
<p>The <i>portable filename characters</i> as defined by ANSI C are</p>
<pre class="verbatim"><ol><li> a b c d e f g h i j k l m n o p q r t u v w x y z</li><li> A B C D E F G H I J K L M N O P Q R T U V W X Y Z</li><li> 0 1 2 3 4 5 6 7 8 9</li><li> . _ -</li></ol></pre><p>and the <code class="inline"><span class="q">&quot;-&quot;</span></code>
 shouldn't be the first character.  If you want to be
hypercorrect, stay case-insensitive and within the 8.3 naming
convention (all the files and directories have to be unique within one
directory if their names are lowercased and truncated to eight
characters before the <code class="inline">.</code>, if any, and to three characters after the
<code class="inline">.</code>, if any).  (And do not use <code class="inline">.</code>s in directory names.)</p>
<a name="System-Interaction"></a><h2>System Interaction</h2>
<p>Not all platforms provide a command line.  These are usually platforms
that rely primarily on a Graphical User Interface (GUI) for user
interaction.  A program requiring a command line interface might
not work everywhere.  This is probably for the user of the program
to deal with, so don't stay up late worrying about it.</p>
<p>Some platforms can't delete or rename files held open by the system,
this limitation may also apply to changing filesystem metainformation
like file permissions or owners.  Remember to <code class="inline"><a class="l_k" href="functions/close.html">close</a></code> files when you
are done with them.  Don't <code class="inline"><a class="l_k" href="functions/unlink.html">unlink</a></code> or <code class="inline"><a class="l_k" href="functions/rename.html">rename</a></code> an open file.  Don't
<code class="inline"><a class="l_k" href="functions/tie.html">tie</a></code> or <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> a file already tied or opened; <code class="inline"><a class="l_k" href="functions/untie.html">untie</a></code> or <code class="inline"><a class="l_k" href="functions/close.html">close</a></code>
it first.</p>
<p>Don't open the same file more than once at a time for writing, as some
operating systems put mandatory locks on such files.</p>
<p>Don't assume that write/modify permission on a directory gives the
right to add or delete files/directories in that directory.  That is
filesystem specific: in some filesystems you need write/modify
permission also (or even just) in the file/directory itself.  In some
filesystems (AFS, DFS) the permission to add/delete directory entries
is a completely separate permission.</p>
<p>Don't assume that a single <code class="inline"><a class="l_k" href="functions/unlink.html">unlink</a></code> completely gets rid of the file:
some filesystems (most notably the ones in VMS) have versioned
filesystems, and <code class="inline"><a class="l_k" href="functions/unlink.html">unlink()</a></code> removes only the most recent one (it doesn't
remove all the versions because by default the native tools on those
platforms remove just the most recent version, too).  The portable
idiom to remove all the versions of a file is</p>
<pre class="verbatim"><ol><li>    <span class="n">1</span> while <a class="l_k" href="functions/unlink.html">unlink</a> <span class="q">&quot;file&quot;</span><span class="sc">;</span></li></ol></pre><p>This will terminate if the file is undeleteable for some reason
(protected, not there, and so on).</p>
<p>Don't count on a specific environment variable existing in <code class="inline"><span class="i">%ENV</span></code>
.
Don't count on <code class="inline"><span class="i">%ENV</span></code>
 entries being case-sensitive, or even
case-preserving.  Don't try to clear <code class="inline"><span class="i">%ENV</span></code>
 by saying <code class="inline"><span class="i">%ENV</span> = <span class="s">(</span><span class="s">)</span><span class="sc">;</span></code>
, or,
if you really have to, make it conditional on <code class="inline"><span class="i">$^O</span> ne <span class="q">&#39;VMS&#39;</span></code>
 since in
VMS the <code class="inline"><span class="i">%ENV</span></code>
 table is much more than a per-process key-value string
table.</p>
<p>On VMS, some entries in the <code class="inline"><span class="i">%ENV</span></code>
 hash are dynamically created when
their key is used on a read if they did not previously exist.  The
values for <code class="inline"><span class="i">$ENV</span>{<span class="w">HOME</span>}</code>
, <code class="inline"><span class="i">$ENV</span>{<span class="w">TERM</span>}</code>
, <code class="inline"><span class="i">$ENV</span>{<span class="w">PATH</span>}</code>
, and <code class="inline"><span class="i">$ENV</span>{<span class="w">USER</span>}</code>
,
are known to be dynamically generated.  The specific names that are
dynamically generated may vary with the version of the C library on VMS,
and more may exist than are documented.</p>
<p>On VMS by default, changes to the %ENV hash persist after perl exits.
Subsequent invocations of perl in the same process can inadvertently
inherit environment settings that were meant to be temporary.</p>
<p>Don't count on signals or <code class="inline"><span class="i">%SIG</span></code>
 for anything.</p>
<p>Don't count on filename globbing.  Use <code class="inline"><a class="l_k" href="functions/opendir.html">opendir</a></code>, <code class="inline"><a class="l_k" href="functions/readdir.html">readdir</a></code>, and
<code class="inline"><a class="l_k" href="functions/closedir.html">closedir</a></code> instead.</p>
<p>Don't count on per-program environment variables, or per-program current
directories.</p>
<p>Don't count on specific values of <code class="inline"><span class="i">$!</span></code>
, neither numeric nor
especially the string values. Users may switch their locales causing
error messages to be translated into their languages.  If you can
trust a POSIXish environment, you can portably use the symbols defined
by the <code class="inline"><span class="w">Errno</span></code>
 module, like <code class="inline"><span class="w">ENOENT</span></code>
.  And don't trust on the values of <code class="inline"><span class="i">$!</span></code>

at all except immediately after a failed system call.</p>
<a name="Command-names-versus-file-pathnames"></a><h2>Command names versus file pathnames</h2>
<p>Don't assume that the name used to invoke a command or program with
<code class="inline"><a class="l_k" href="functions/system.html">system</a></code> or <code class="inline"><a class="l_k" href="functions/exec.html">exec</a></code> can also be used to test for the existence of the
file that holds the executable code for that command or program.
First, many systems have "internal" commands that are built-in to the
shell or OS and while these commands can be invoked, there is no
corresponding file.  Second, some operating systems (e.g., Cygwin,
DJGPP, OS/2, and VOS) have required suffixes for executable files;
these suffixes are generally permitted on the command name but are not
required.  Thus, a command like <i>"perl"</i> might exist in a file named
<i>"perl"</i>, <i>"perl.exe"</i>, or <i>"perl.pm"</i>, depending on the operating system.
The variable <code class="inline"><span class="q">&quot;_exe&quot;</span></code>
 in the <code class="inline"><span class="w">Config</span></code>
 module holds the executable suffix,
if any.  Third, the VMS port carefully sets up <code class="inline"><span class="i">$^X</span></code>
 and
<code class="inline"><span class="i">$Config</span>{<span class="w">perlpath</span>}</code>
 so that no further processing is required.  This is
just as well, because the matching regular expression used below would
then have to deal with a possible trailing version number in the VMS
file name.</p>
<p>To convert <code class="inline"><span class="i">$^X</span></code>
 to a file pathname, taking account of the requirements
of the various operating system possibilities, say:</p>
<pre class="verbatim"><ol><li> <a class="l_k" href="functions/use.html">use</a> <span class="w">Config</span><span class="sc">;</span></li><li> <a class="l_k" href="functions/my.html">my</a> <span class="i">$thisperl</span> = <span class="i">$^X</span><span class="sc">;</span></li><li> if <span class="s">(</span><span class="i">$^O</span> ne <span class="q">&#39;VMS&#39;</span><span class="s">)</span></li><li>    <span class="s">{</span><span class="i">$thisperl</span> .= <span class="i">$Config</span>{<span class="w">_exe</span>} unless <span class="i">$thisperl</span> =~ <span class="q">m/$Config{_exe}$/i</span><span class="sc">;</span><span class="s">}</span></li></ol></pre><p>To convert <code class="inline"><span class="i">$Config</span>{<span class="w">perlpath</span>}</code>
 to a file pathname, say:</p>
<pre class="verbatim"><ol><li> <a class="l_k" href="functions/use.html">use</a> <span class="w">Config</span><span class="sc">;</span></li><li> <a class="l_k" href="functions/my.html">my</a> <span class="i">$thisperl</span> = <span class="i">$Config</span>{<span class="w">perlpath</span>}<span class="sc">;</span></li><li> if <span class="s">(</span><span class="i">$^O</span> ne <span class="q">&#39;VMS&#39;</span><span class="s">)</span></li><li>    <span class="s">{</span><span class="i">$thisperl</span> .= <span class="i">$Config</span>{<span class="w">_exe</span>} unless <span class="i">$thisperl</span> =~ <span class="q">m/$Config{_exe}$/i</span><span class="sc">;</span><span class="s">}</span></li></ol></pre><a name="Networking"></a><h2>Networking</h2>
<p>Don't assume that you can reach the public Internet.</p>
<p>Don't assume that there is only one way to get through firewalls
to the public Internet.</p>
<p>Don't assume that you can reach outside world through any other port
than 80, or some web proxy.  ftp is blocked by many firewalls.</p>
<p>Don't assume that you can send email by connecting to the local SMTP port.</p>
<p>Don't assume that you can reach yourself or any node by the name
'localhost'.  The same goes for '127.0.0.1'.  You will have to try both.</p>
<p>Don't assume that the host has only one network card, or that it
can't bind to many virtual IP addresses.</p>
<p>Don't assume a particular network device name.</p>
<p>Don't assume a particular set of <code class="inline"><a class="l_k" href="functions/ioctl.html">ioctl()</a></code>s will work.</p>
<p>Don't assume that you can ping hosts and get replies.</p>
<p>Don't assume that any particular port (service) will respond.</p>
<p>Don't assume that <code class="inline"><span class="w">Sys::Hostname</span></code>
 (or any other API or command) returns
either a fully qualified hostname or a non-qualified hostname: it all
depends on how the system had been configured.  Also remember that for
things such as DHCP and NAT, the hostname you get back might not be
very useful.</p>
<p>All the above "don't":s may look daunting, and they are, but the key
is to degrade gracefully if one cannot reach the particular network
service one wants.  Croaking or hanging do not look very professional.</p>
<a name="Interprocess-Communication-(IPC)"></a><h2>Interprocess Communication (IPC)</h2>
<p>In general, don't directly access the system in code meant to be
portable.  That means, no <code class="inline"><a class="l_k" href="functions/system.html">system</a></code>, <code class="inline"><a class="l_k" href="functions/exec.html">exec</a></code>, <code class="inline"><a class="l_k" href="functions/fork.html">fork</a></code>, <code class="inline"><a class="l_k" href="functions/pipe.html">pipe</a></code>,
<code class="inline"><span class="q">``</span></code>
, <code class="inline"><a class="l_k" href="functions/qx.html">qx//</a></code>, <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> with a <code class="inline">|</code>, nor any of the other things
that makes being a Perl hacker worth being.</p>
<p>Commands that launch external processes are generally supported on
most platforms (though many of them do not support any type of
forking).  The problem with using them arises from what you invoke
them on.  External tools are often named differently on different
platforms, may not be available in the same location, might accept
different arguments, can behave differently, and often present their
results in a platform-dependent way.  Thus, you should seldom depend
on them to produce consistent results. (Then again, if you're calling
<i>netstat -a</i>, you probably don't expect it to run on both Unix and CP/M.)</p>
<p>One especially common bit of Perl code is opening a pipe to <b>sendmail</b>:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="w">MAIL</span><span class="cm">,</span> <span class="q">&#39;|/usr/lib/sendmail -t&#39;</span><span class="s">)</span></li><li>	<a class="l_k" href="functions/or.html">or</a> <a class="l_k" href="functions/die.html">die</a> <span class="q">&quot;cannot fork sendmail: $!&quot;</span><span class="sc">;</span></li></ol></pre><p>This is fine for systems programming when sendmail is known to be
available.  But it is not fine for many non-Unix systems, and even
some Unix systems that may not have sendmail installed.  If a portable
solution is needed, see the various distributions on CPAN that deal
with it.  <code class="inline"><span class="w">Mail::Mailer</span></code>
 and <code class="inline"><span class="w">Mail::Send</span></code>
 in the <code class="inline"><span class="w">MailTools</span></code>
 distribution are
commonly used, and provide several mailing methods, including <code class="inline"><span class="w">mail</span></code>
,
<code class="inline"><span class="w">sendmail</span></code>
, and direct SMTP (via <code class="inline"><span class="w">Net::SMTP</span></code>
) if a mail transfer agent is
not available.  <code class="inline"><span class="w">Mail::Sendmail</span></code>
 is a standalone module that provides
simple, platform-independent mailing.</p>
<p>The Unix System V IPC (<code class="inline"><span class="w">msg</span>*<span class="s">(</span><span class="s">)</span><span class="cm">,</span> <span class="w">sem</span>*<span class="s">(</span><span class="s">)</span><span class="cm">,</span> <span class="w">shm</span>*<span class="s">(</span><span class="s">)</span></code>
) is not available
even on all Unix platforms.</p>
<p>Do not use either the bare result of <code class="inline"><a class="l_k" href="functions/pack.html">pack</a><span class="s">(</span><span class="q">&quot;N&quot;</span><span class="cm">,</span> <span class="n">10</span><span class="cm">,</span> <span class="n">20</span><span class="cm">,</span> <span class="n">30</span><span class="cm">,</span> <span class="n">40</span><span class="s">)</span></code>
 or
bare v-strings (such as <code class="inline"><span class="v">v10.20.30.40</span></code>
) to represent IPv4 addresses:
both forms just pack the four bytes into network order.  That this
would be equal to the C language <code class="inline"><span class="w">in_addr</span></code>
 struct (which is what the
socket code internally uses) is not guaranteed.  To be portable use
the routines of the <code class="inline"><span class="w">Socket</span></code>
 extension, such as <code class="inline"><span class="i">inet_aton</span><span class="s">(</span><span class="s">)</span></code>
,
<code class="inline"><span class="i">inet_ntoa</span><span class="s">(</span><span class="s">)</span></code>
, and <code class="inline"><span class="i">sockaddr_in</span><span class="s">(</span><span class="s">)</span></code>
.</p>
<p>The rule of thumb for portable code is: Do it all in portable Perl, or
use a module (that may internally implement it with platform-specific
code, but exposes a common interface).</p>
<a name="External-Subroutines-(XS)"></a><h2>External Subroutines (XS)</h2>
<p>XS code can usually be made to work with any platform, but dependent
libraries, header files, etc., might not be readily available or
portable, or the XS code itself might be platform-specific, just as Perl
code might be.  If the libraries and headers are portable, then it is
normally reasonable to make sure the XS code is portable, too.</p>
<p>A different type of portability issue arises when writing XS code:
availability of a C compiler on the end-user's system.  C brings
with it its own portability issues, and writing XS code will expose
you to some of those.  Writing purely in Perl is an easier way to
achieve portability.</p>
<a name="Standard-Modules"></a><h2>Standard Modules</h2>
<p>In general, the standard modules work across platforms.  Notable
exceptions are the <code class="inline"><span class="w">CPAN</span></code>
 module (which currently makes connections to external
programs that may not be available), platform-specific modules (like
<code class="inline"><span class="w">ExtUtils::MM_VMS</span></code>
), and DBM modules.</p>
<p>There is no one DBM module available on all platforms.
<code class="inline"><span class="w">SDBM_File</span></code>
 and the others are generally available on all Unix and DOSish
ports, but not in MacPerl, where only <code class="inline"><span class="w">NDBM_File</span></code>
 and <code class="inline"><span class="w">DB_File</span></code>
 are
available.</p>
<p>The good news is that at least some DBM module should be available, and
<code class="inline"><span class="w">AnyDBM_File</span></code>
 will use whichever module it can find.  Of course, then
the code needs to be fairly strict, dropping to the greatest common
factor (e.g., not exceeding 1K for each record), so that it will
work with any DBM module.  See <a href="AnyDBM_File.html">AnyDBM_File</a> for more details.</p>
<a name="Time-and-Date"></a><h2>Time and Date</h2>
<p>The system's notion of time of day and calendar date is controlled in
widely different ways.  Don't assume the timezone is stored in <code class="inline"><span class="i">$ENV</span>{<span class="w">TZ</span>}</code>
,
and even if it is, don't assume that you can control the timezone through
that variable.  Don't assume anything about the three-letter timezone
abbreviations (for example that MST would be the Mountain Standard Time,
it's been known to stand for Moscow Standard Time).  If you need to
use timezones, express them in some unambiguous format like the
exact number of minutes offset from UTC, or the POSIX timezone
format.</p>
<p>Don't assume that the epoch starts at 00:00:00, January 1, 1970,
because that is OS- and implementation-specific.  It is better to
store a date in an unambiguous representation.  The ISO 8601 standard
defines YYYY-MM-DD as the date format, or YYYY-MM-DDTHH:MM:SS
(that's a literal "T" separating the date from the time).
Please do use the ISO 8601 instead of making us guess what
date 02/03/04 might be.  ISO 8601 even sorts nicely as-is.
A text representation (like "1987-12-18") can be easily converted
into an OS-specific value using a module like <code class="inline"><span class="w">Date::Parse</span></code>
.
An array of values, such as those returned by <code class="inline"><a class="l_k" href="functions/localtime.html">localtime</a></code>, can be
converted to an OS-specific representation using <code class="inline"><span class="w">Time::Local</span></code>
.</p>
<p>When calculating specific times, such as for tests in time or date modules,
it may be appropriate to calculate an offset for the epoch.</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/require.html">require</a> <span class="w">Time::Local</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">$offset</span> = <span class="i">Time::Local::timegm</span><span class="s">(</span><span class="n">0</span><span class="cm">,</span> <span class="n">0</span><span class="cm">,</span> <span class="n">0</span><span class="cm">,</span> <span class="n">1</span><span class="cm">,</span> <span class="n">0</span><span class="cm">,</span> <span class="n">70</span><span class="s">)</span><span class="sc">;</span></li></ol></pre><p>The value for <code class="inline"><span class="i">$offset</span></code>
 in Unix will be <code class="inline"><span class="n">0</span></code>
, but in Mac OS Classic
will be some large number.  <code class="inline"><span class="i">$offset</span></code>
 can then be added to a Unix time
value to get what should be the proper value on any system.</p>
<a name="Character-sets-and-character-encoding"></a><h2>Character sets and character encoding</h2>
<p>Assume very little about character sets.</p>
<p>Assume nothing about numerical values (<code class="inline"><a class="l_k" href="functions/ord.html">ord</a></code>, <code class="inline"><a class="l_k" href="functions/chr.html">chr</a></code>) of characters.
Do not use explicit code point ranges (like <code class="inline">\<span class="w">xHH</span>-\<span class="w">xHH</span><span class="p">)</span></code>
.  However,
starting in Perl v5.22, regular expression pattern bracketed character
class ranges specified like <code class="inline"><a class="l_k" href="functions/qr.html">qr/[\N{U+HH}-\N{U+HH}]/</a></code> are portable.
You can portably use symbolic character classes like <code class="inline">[:print:]</code>.</p>
<p>Do not assume that the alphabetic characters are encoded contiguously
(in the numeric sense).  There may be gaps.  Special coding in Perl,
however, guarantees that all subsets of <code class="inline"><a class="l_k" href="functions/qr.html">qr/[A-Z]/</a></code>, <code class="inline"><a class="l_k" href="functions/qr.html">qr/[a-z]/</a></code>, and
<code class="inline"><a class="l_k" href="functions/qr.html">qr/[0-9]/</a></code> behave as expected.  <code class="inline"><a class="l_k" href="functions/tr.html">tr///</a></code> behaves the same for these
ranges.  In patterns, any ranges specified with end points using the
<code class="inline">\<span class="i">N</span><span class="s">{</span>...<span class="s">}</span></code>
 notations ensures character set portability, but it is a bug
in Perl v5.22, that this isn't true of <code class="inline"><a class="l_k" href="functions/tr.html">tr///</a></code>.</p>
<p>Do not assume anything about the ordering of the characters.
The lowercase letters may come before or after the uppercase letters;
the lowercase and uppercase may be interlaced so that both "a" and "A"
come before "b"; the accented and other international characters may
be interlaced so that &#xe4; comes before "b".
<a href="Unicode/Collate.html">Unicode::Collate</a> can be used to sort this all out.</p>
<a name="Internationalisation"></a><h2>Internationalisation</h2>
<p>If you may assume POSIX (a rather large assumption), you may read
more about the POSIX locale system from <a href="perllocale.html">perllocale</a>.  The locale
system at least attempts to make things a little bit more portable,
or at least more convenient and native-friendly for non-English
users.  The system affects character sets and encoding, and date
and time formatting--amongst other things.</p>
<p>If you really want to be international, you should consider Unicode.
See <a href="perluniintro.html">perluniintro</a> and <a href="perlunicode.html">perlunicode</a> for more information.</p>
<p>If you want to use non-ASCII bytes (outside the bytes 0x00..0x7f) in
the "source code" of your code, to be portable you have to be explicit
about what bytes they are.  Someone might for example be using your
code under a UTF-8 locale, in which case random native bytes might be
illegal ("Malformed UTF-8 ...")  This means that for example embedding
ISO 8859-1 bytes beyond 0x7f into your strings might cause trouble
later.  If the bytes are native 8-bit bytes, you can use the <code class="inline"><span class="w">bytes</span></code>

pragma.  If the bytes are in a string (regular expressions being
curious strings), you can often also use the <code class="inline">\<span class="w">xHH</span></code>
 or more portably,
the <code class="inline">\<span class="i">N</span><span class="s">{</span><span class="w">U</span>+<span class="w">HH</span><span class="s">}</span></code>
 notations instead
of embedding the bytes as-is.  If you want to write your code in UTF-8,
you can use <a href="utf8.html">utf8</a>.</p>
<a name="System-Resources"></a><h2>System Resources</h2>
<p>If your code is destined for systems with severely constrained (or
missing!) virtual memory systems then you want to be <i>especially</i> mindful
of avoiding wasteful constructs such as:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">@lines</span> = <span class="q">&lt;$very_large_file&gt;</span><span class="sc">;</span>            <span class="c"># bad</span></li><li></li><li>    <a class="l_k" href="functions/while.html">while</a> <span class="s">(</span><span class="q">&lt;$fh&gt;</span><span class="s">)</span> <span class="s">{</span><span class="i">$file</span> .= <span class="i">$_</span><span class="s">}</span>                <span class="c"># sometimes bad</span></li><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">$file</span> = <a class="l_k" href="functions/join.html">join</a><span class="s">(</span><span class="q">&#39;&#39;</span><span class="cm">,</span> <span class="q">&lt;$fh&gt;</span><span class="s">)</span><span class="sc">;</span>                <span class="c"># better</span></li></ol></pre><p>The last two constructs may appear unintuitive to most people.  The
first repeatedly grows a string, whereas the second allocates a
large chunk of memory in one go.  On some systems, the second is
more efficient than the first.</p>
<a name="Security"></a><h2>Security</h2>
<p>Most multi-user platforms provide basic levels of security, usually
implemented at the filesystem level.  Some, however, unfortunately do
not.  Thus the notion of user id, or "home" directory,
or even the state of being logged-in, may be unrecognizable on many
platforms.  If you write programs that are security-conscious, it
is usually best to know what type of system you will be running
under so that you can write code explicitly for that platform (or
class of platforms).</p>
<p>Don't assume the Unix filesystem access semantics: the operating
system or the filesystem may be using some ACL systems, which are
richer languages than the usual <code class="inline"><span class="w">rwx</span></code>
.  Even if the <code class="inline"><span class="w">rwx</span></code>
 exist,
their semantics might be different.</p>
<p>(From the security viewpoint, testing for permissions before attempting to
do something is silly anyway: if one tries this, there is potential
for race conditions. Someone or something might change the
permissions between the permissions check and the actual operation.
Just try the operation.)</p>
<p>Don't assume the Unix user and group semantics: especially, don't
expect <code class="inline"><span class="i">$&lt;</span></code>
 and <code class="inline"><span class="i">$&gt;</span></code>
 (or <code class="inline"><span class="i">$(</span></code>
 and <code class="inline"><span class="i">$)</span></code>
) to work
for switching identities (or memberships).</p>
<p>Don't assume set-uid and set-gid semantics. (And even if you do,
think twice: set-uid and set-gid are a known can of security worms.)</p>
<a name="Style"></a><h2>Style</h2>
<p>For those times when it is necessary to have platform-specific code,
consider keeping the platform-specific code in one place, making porting
to other platforms easier.  Use the <code class="inline"><span class="w">Config</span></code>
 module and the special
variable <code class="inline"><span class="i">$^O</span></code>
 to differentiate platforms, as described in
<a href="#PLATFORMS">PLATFORMS</a>.</p>
<p>Be careful in the tests you supply with your module or programs.
Module code may be fully portable, but its tests might not be.  This
often happens when tests spawn off other processes or call external
programs to aid in the testing, or when (as noted above) the tests
assume certain things about the filesystem and paths.  Be careful not
to depend on a specific output style for errors, such as when checking
<code class="inline"><span class="i">$!</span></code>
 after a failed system call.  Using <code class="inline"><span class="i">$!</span></code>
 for anything else than
displaying it as output is doubtful (though see the <code class="inline"><span class="w">Errno</span></code>
 module for
testing reasonably portably for error value). Some platforms expect
a certain output format, and Perl on those platforms may have been
adjusted accordingly.  Most specifically, don't anchor a regex when
testing an error value.</p>
<a name="CPAN-Testers"></a><h1>CPAN Testers</h1>
<p>Modules uploaded to CPAN are tested by a variety of volunteers on
different platforms.  These CPAN testers are notified by mail of each
new upload, and reply to the list with PASS, FAIL, NA (not applicable to
this platform), or UNKNOWN (unknown), along with any relevant notations.</p>
<p>The purpose of the testing is twofold: one, to help developers fix any
problems in their code that crop up because of lack of testing on other
platforms; two, to provide users with information about whether
a given module works on a given platform.</p>
<p>Also see:</p>
<ul>
<li>
<p>Mailing list: cpan-testers-discuss@perl.org</p>
</li>
<li>
<p>Testing results: <a href="http://www.cpantesters.org/">http://www.cpantesters.org/</a></p>
</li>
</ul>
<a name="PLATFORMS"></a><h1>PLATFORMS</h1>
<p>Perl is built with a <code class="inline"><span class="i">$^O</span></code>
 variable that indicates the operating
system it was built on.  This was implemented
to help speed up code that would otherwise have to <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">Config</span></code>

and use the value of <code class="inline"><span class="i">$Config</span>{<span class="w">osname</span>}</code>
.  Of course, to get more
detailed information about the system, looking into <code class="inline"><span class="i">%Config</span></code>
 is
certainly recommended.</p>
<p><code class="inline"><span class="i">%Config</span></code>
 cannot always be trusted, however, because it was built
at compile time.  If perl was built in one place, then transferred
elsewhere, some values may be wrong.  The values may even have been
edited after the fact.</p>
<a name="Unix"></a><h2>Unix</h2>
<p>Perl works on a bewildering variety of Unix and Unix-like platforms (see
e.g. most of the files in the <i>hints/</i> directory in the source code kit).
On most of these systems, the value of <code class="inline"><span class="i">$^O</span></code>
 (hence <code class="inline"><span class="i">$Config</span>{<span class="q">&#39;osname&#39;</span>}</code>
,
too) is determined either by lowercasing and stripping punctuation from the
first field of the string returned by typing <code class="inline"><span class="w">uname</span> -<span class="w">a</span></code>
 (or a similar command)
at the shell prompt or by testing the file system for the presence of
uniquely named files such as a kernel or header file.  Here, for example,
are a few of the more popular Unix flavors:</p>
<pre class="verbatim"><ol><li>    <span class="w">uname</span>         <span class="i">$^O</span>        <span class="i">$Config</span>{<span class="q">&#39;archname&#39;</span>}</li><li>    --------------------------------------------</li><li>    <span class="w">AIX</span>           <span class="w">aix</span>        <span class="w">aix</span></li><li>    <span class="w">BSD</span>/<span class="w">OS</span>        <span class="w">bsdos</span>      <span class="w">i386</span>-<span class="w">bsdos</span></li><li>    <span class="w">Darwin</span>        <span class="w">darwin</span>     <span class="w">darwin</span></li><li>    <span class="w">DYNIX</span>/<span class="w">ptx</span>     <span class="w">dynixptx</span>   <span class="w">i386</span>-<span class="w">dynixptx</span></li><li>    <span class="w">FreeBSD</span>       <span class="w">freebsd</span>    <span class="w">freebsd</span>-<span class="w">i386</span></li><li>    <span class="w">Haiku</span>         <span class="w">haiku</span>      <span class="w">BePC</span>-<span class="w">haiku</span></li><li>    <span class="w">Linux</span>         <span class="w">linux</span>      <span class="w">arm</span>-<span class="w">linux</span></li><li>    <span class="w">Linux</span>         <span class="w">linux</span>      <span class="w">armv5tel</span>-<span class="w">linux</span></li><li>    <span class="w">Linux</span>         <span class="w">linux</span>      <span class="w">i386</span>-<span class="w">linux</span></li><li>    <span class="w">Linux</span>         <span class="w">linux</span>      <span class="w">i586</span>-<span class="w">linux</span></li><li>    <span class="w">Linux</span>         <span class="w">linux</span>      <span class="w">ppc</span>-<span class="w">linux</span></li><li>    <span class="w">HP</span>-<span class="w">UX</span>         <span class="w">hpux</span>       <span class="w">PA</span>-<span class="w">RISC1</span><span class="n">.1</span></li><li>    <span class="w">IRIX</span>          <span class="w">irix</span>       <span class="w">irix</span></li><li>    <span class="w">Mac</span> <span class="w">OS</span> <span class="w">X</span>      <span class="w">darwin</span>     <span class="w">darwin</span></li><li>    <span class="w">NeXT</span> <span class="n">3</span>        <a class="l_k" href="functions/next.html">next</a>       <a class="l_k" href="functions/next.html">next</a>-<span class="w">fat</span></li><li>    <span class="w">NeXT</span> <span class="n">4</span>        <a class="l_k" href="functions/next.html">next</a>       <span class="j">OPENSTEP</span>-<span class="w">Mach</span></li><li>    <span class="w">openbsd</span>       <span class="w">openbsd</span>    <span class="w">i386</span>-<span class="w">openbsd</span></li><li>    <span class="w">OSF1</span>          <span class="w">dec_osf</span>    <span class="w">alpha</span>-<span class="w">dec_osf</span></li><li>    <span class="w">reliantunix</span>-<span class="w">n</span> <span class="w">svr4</span>       <span class="w">RM400</span>-<span class="w">svr4</span></li><li>    <span class="w">SCO_SV</span>        <span class="w">sco_sv</span>     <span class="w">i386</span>-<span class="w">sco_sv</span></li><li>    <span class="w">SINIX</span>-<span class="w">N</span>       <span class="w">svr4</span>       <span class="w">RM400</span>-<span class="w">svr4</span></li><li>    <span class="w">sn4609</span>        <span class="w">unicos</span>     <span class="w">CRAY_C90</span>-<span class="w">unicos</span></li><li>    <span class="w">sn6521</span>        <span class="w">unicosmk</span>   <span class="w">t3e</span>-<span class="w">unicosmk</span></li><li>    <span class="w">sn9617</span>        <span class="w">unicos</span>     <span class="w">CRAY_J90</span>-<span class="w">unicos</span></li><li>    <span class="w">SunOS</span>         <span class="w">solaris</span>    <span class="w">sun4</span>-<span class="w">solaris</span></li><li>    <span class="w">SunOS</span>         <span class="w">solaris</span>    <span class="w">i86pc</span>-<span class="w">solaris</span></li><li>    <span class="w">SunOS4</span>        <span class="w">sunos</span>      <span class="w">sun4</span>-<span class="w">sunos</span></li></ol></pre><p>Because the value of <code class="inline"><span class="i">$Config</span>{<span class="w">archname</span>}</code>
 may depend on the
hardware architecture, it can vary more than the value of <code class="inline"><span class="i">$^O</span></code>
.</p>
<a name="DOS-and-Derivatives"></a><h2>DOS and Derivatives</h2>
<p>Perl has long been ported to Intel-style microcomputers running under
systems like PC-DOS, MS-DOS, OS/2, and most Windows platforms you can
bring yourself to mention (except for Windows CE, if you count that).
Users familiar with <i>COMMAND.COM</i> or <i>CMD.EXE</i> style shells should
be aware that each of these file specifications may have subtle
differences:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">$filespec0</span> = <span class="q">&quot;c:/foo/bar/file.txt&quot;</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">$filespec1</span> = <span class="q">&quot;c:\\foo\\bar\\file.txt&quot;</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">$filespec2</span> = <span class="q">&#39;c:\foo\bar\file.txt&#39;</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/my.html">my</a> <span class="i">$filespec3</span> = <span class="q">&#39;c:\\foo\\bar\\file.txt&#39;</span><span class="sc">;</span></li></ol></pre><p>System calls accept either <code class="inline">/</code> or <code class="inline">\</code>
 as the path separator.
However, many command-line utilities of DOS vintage treat <code class="inline">/</code> as
the option prefix, so may get confused by filenames containing <code class="inline">/</code>.
Aside from calling any external programs, <code class="inline">/</code> will work just fine,
and probably better, as it is more consistent with popular usage,
and avoids the problem of remembering what to backwhack and what
not to.</p>
<p>The DOS FAT filesystem can accommodate only "8.3" style filenames.  Under
the "case-insensitive, but case-preserving" HPFS (OS/2) and NTFS (NT)
filesystems you may have to be careful about case returned with functions
like <code class="inline"><a class="l_k" href="functions/readdir.html">readdir</a></code> or used with functions like <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> or <code class="inline"><a class="l_k" href="functions/opendir.html">opendir</a></code>.</p>
<p>DOS also treats several filenames as special, such as AUX, PRN,
NUL, CON, COM1, LPT1, LPT2, etc.  Unfortunately, sometimes these
filenames won't even work if you include an explicit directory
prefix.  It is best to avoid such filenames, if you want your code
to be portable to DOS and its derivatives.  It's hard to know what
these all are, unfortunately.</p>
<p>Users of these operating systems may also wish to make use of
scripts such as <i>pl2bat.bat</i> or <i>pl2cmd</i> to
put wrappers around your scripts.</p>
<p>Newline (<code class="inline">\<span class="w">n</span></code>
) is translated as <code class="inline">\<span class="n">015</span>\<span class="n">012</span></code>
 by STDIO when reading from
and writing to files (see <a href="#Newlines">Newlines</a>).  <code class="inline"><a class="l_k" href="functions/binmode.html">binmode(FILEHANDLE)</a></code>
will keep <code class="inline">\<span class="w">n</span></code>
 translated as <code class="inline">\<span class="n">012</span></code>
 for that filehandle.  Since it is a
no-op on other systems, <code class="inline"><a class="l_k" href="functions/binmode.html">binmode</a></code> should be used for cross-platform code
that deals with binary data.  That's assuming you realize in advance
that your data is in binary.  General-purpose programs should
often assume nothing about their data.</p>
<p>The <code class="inline"><span class="i">$^O</span></code>
 variable and the <code class="inline"><span class="i">$Config</span>{<span class="w">archname</span>}</code>
 values for various
DOSish perls are as follows:</p>
<pre class="verbatim"><ol><li>     <span class="w">OS</span>            <span class="i">$^O</span>      <span class="i">$Config</span>{<span class="w">archname</span>}   <span class="w">ID</span>    <span class="w">Version</span></li><li>     --------------------------------------------------------</li><li>     <span class="w">MS</span>-<span class="w">DOS</span>        <span class="w">dos</span>        ?</li><li>     <span class="w">PC</span>-<span class="w">DOS</span>        <span class="w">dos</span>        ?</li><li>     <span class="w">OS</span>/<span class="n">2</span>          <span class="w">os2</span>        ?</li><li>     <span class="w">Windows</span> <span class="n">3.1</span>   ?          <span class="q">?                 0      3 01</span></li><li>     <span class="q">     Windows 95    MSWin32    MSWin32-x86       1      4 00</span></li><li>     <span class="q">     Windows 98    MSWin32    MSWin32-x86       1      4 10</span></li><li>     <span class="q">     Windows ME    MSWin32    MSWin32-x86       1      ?</span></li><li>     <span class="w">Windows</span> <span class="w">NT</span>    <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x86</span>       <span class="n">2</span>      <span class="n">4</span> <span class="w">xx</span></li><li>     <span class="w">Windows</span> <span class="w">NT</span>    <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">ALPHA</span>     <span class="n">2</span>      <span class="n">4</span> <span class="w">xx</span></li><li>     <span class="w">Windows</span> <span class="w">NT</span>    <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">ppc</span>       <span class="n">2</span>      <span class="n">4</span> <span class="w">xx</span></li><li>     <span class="w">Windows</span> <span class="n">2000</span>  <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x86</span>       <span class="n">2</span>      <span class="n">5</span> <span class="n">00</span></li><li>     <span class="w">Windows</span> <span class="w">XP</span>    <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x86</span>       <span class="n">2</span>      <span class="n">5</span> <span class="n">01</span></li><li>     <span class="w">Windows</span> <span class="n">2003</span>  <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x86</span>       <span class="n">2</span>      <span class="n">5</span> <span class="n">02</span></li><li>     <span class="w">Windows</span> <span class="w">Vista</span> <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x86</span>       <span class="n">2</span>      <span class="n">6</span> <span class="n">00</span></li><li>     <span class="w">Windows</span> <span class="n">7</span>     <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x86</span>       <span class="n">2</span>      <span class="n">6</span> <span class="n">01</span></li><li>     <span class="w">Windows</span> <span class="n">7</span>     <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x64</span>       <span class="n">2</span>      <span class="n">6</span> <span class="n">01</span></li><li>     <span class="w">Windows</span> <span class="n">2008</span>  <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x86</span>       <span class="n">2</span>      <span class="n">6</span> <span class="n">01</span></li><li>     <span class="w">Windows</span> <span class="n">2008</span>  <span class="w">MSWin32</span>    <span class="w">MSWin32</span>-<span class="w">x64</span>       <span class="n">2</span>      <span class="n">6</span> <span class="n">01</span></li><li>     <span class="w">Windows</span> <span class="w">CE</span>    <span class="w">MSWin32</span>    ?                 <span class="n">3</span></li><li>     <span class="w">Cygwin</span>        <span class="w">cygwin</span>     <span class="w">cygwin</span></li></ol></pre><p>The various MSWin32 Perl's can distinguish the OS they are running on
via the value of the fifth element of the list returned from
<code class="inline"><span class="i">Win32::GetOSVersion</span><span class="s">(</span><span class="s">)</span></code>
.  For example:</p>
<pre class="verbatim"><ol><li>    if <span class="s">(</span><span class="i">$^O</span> eq <span class="q">&#39;MSWin32&#39;</span><span class="s">)</span> <span class="s">{</span></li><li>        <a class="l_k" href="functions/my.html">my</a> <span class="i">@os_version_info</span> = <span class="i">Win32::GetOSVersion</span><span class="s">(</span><span class="s">)</span><span class="sc">;</span></li><li>        <a class="l_k" href="functions/print.html">print</a> +<span class="s">(</span><span class="q">&#39;3.1&#39;</span><span class="cm">,</span><span class="q">&#39;95&#39;</span><span class="cm">,</span><span class="q">&#39;NT&#39;</span><span class="s">)</span>[<span class="i">$os_version_info</span>[<span class="n">4</span>]]<span class="cm">,</span><span class="q">&quot;\n&quot;</span><span class="sc">;</span></li><li>    <span class="s">}</span></li></ol></pre><p>There are also <code class="inline"><span class="i">Win32::IsWinNT</span><span class="s">(</span><span class="s">)</span></code>
 and <code class="inline"><span class="i">Win32::IsWin95</span><span class="s">(</span><span class="s">)</span></code>
; try <code class="inline"><span class="w">perldoc</span> <span class="w">Win32</span></code>
,
and as of libwin32 0.19 (not part of the core Perl distribution)
<code class="inline"><span class="i">Win32::GetOSName</span><span class="s">(</span><span class="s">)</span></code>
.  The very portable <code class="inline"><span class="i">POSIX::uname</span><span class="s">(</span><span class="s">)</span></code>
 will work too:</p>
<pre class="verbatim"><ol><li>    c:\&gt; perl -MPOSIX -we "print join '|', uname"</li><li>    Windows NT|moonru|5.0|Build 2195 (Service Pack 2)|x86</li></ol></pre><p>Also see:</p>
<ul>
<li>
<p>The djgpp environment for DOS, <a href="http://www.delorie.com/djgpp/">http://www.delorie.com/djgpp/</a>
and <a href="perldos.html">perldos</a>.</p>
</li>
<li>
<p>The EMX environment for DOS, OS/2, etc. emx@iaehv.nl,
<a href="ftp://hobbes.nmsu.edu/pub/os2/dev/emx/">ftp://hobbes.nmsu.edu/pub/os2/dev/emx/</a>  Also <a href="perlos2.html">perlos2</a>.</p>
</li>
<li>
<p>Build instructions for Win32 in <a href="perlwin32.html">perlwin32</a>, or under the Cygnus environment
in <a href="perlcygwin.html">perlcygwin</a>.</p>
</li>
<li>
<p>The <code class="inline"><span class="w">Win32::</span>*</code>
 modules in <a href="http://search.cpan.org/perldoc/Win32">Win32</a>.</p>
</li>
<li>
<p>The ActiveState Pages, <a href="http://www.activestate.com/">http://www.activestate.com/</a></p>
</li>
<li>
<p>The Cygwin environment for Win32; <i>README.cygwin</i> (installed
as <a href="perlcygwin.html">perlcygwin</a>), <a href="http://www.cygwin.com/">http://www.cygwin.com/</a></p>
</li>
<li>
<p>The U/WIN environment for Win32,
<a href="http://www.research.att.com/sw/tools/uwin/">http://www.research.att.com/sw/tools/uwin/</a></p>
</li>
<li>
<p>Build instructions for OS/2, <a href="perlos2.html">perlos2</a></p>
</li>
</ul>
<a name="VMS"></a><h2>VMS</h2>
<p>Perl on VMS is discussed in <a href="perlvms.html">perlvms</a> in the Perl distribution.</p>
<p>The official name of VMS as of this writing is OpenVMS.</p>
<p>Interacting with Perl from the Digital Command Language (DCL) shell
often requires a different set of quotation marks than Unix shells do.
For example:</p>
<pre class="verbatim"><ol><li>    $ perl -e "print ""Hello, world.\n"""</li><li>    Hello, world.</li></ol></pre><p>There are several ways to wrap your Perl scripts in DCL <i>.COM</i> files, if
you are so inclined.  For example:</p>
<pre class="verbatim"><ol><li>    $ write sys$output "Hello from DCL!"</li><li>    $ if p1 .eqs. ""</li><li>    $ then perl -x 'f$environment("PROCEDURE")</li><li>    $ else perl -x - 'p1 'p2 'p3 'p4 'p5 'p6 'p7 'p8</li><li>    $ deck/dollars="__END__"</li><li>    #!/usr/bin/perl</li><li></li><li>    print "Hello from Perl!\n";</li><li></li><li>    __END__</li><li>    $ endif</li></ol></pre><p>Do take care with <code class="inline">$ ASSIGN/nolog/user SYS$COMMAND: SYS$INPUT</code> if your
Perl-in-DCL script expects to do things like <code class="inline"><span class="i">$read</span> = <span class="q">&lt;STDIN&gt;</span><span class="sc">;</span></code>
.</p>
<p>The VMS operating system has two filesystems, designated by their
on-disk structure (ODS) level: ODS-2 and its successor ODS-5.  The
initial port of Perl to VMS pre-dates ODS-5, but all current testing and
development assumes ODS-5 and its capabilities, including case
preservation, extended characters in filespecs, and names up to 8192
bytes long.</p>
<p>Perl on VMS can accept either VMS- or Unix-style file
specifications as in either of the following:</p>
<pre class="verbatim"><ol><li>    $ perl -ne "print if /perl_setup/i" SYS$LOGIN:LOGIN.COM</li><li>    $ perl -ne "print if /perl_setup/i" /sys$login/login.com</li></ol></pre><p>but not a mixture of both as in:</p>
<pre class="verbatim"><ol><li>    $ perl -ne "print if /perl_setup/i" sys$login:/login.com</li><li>    Can't open sys$login:/login.com: file specification syntax error</li></ol></pre><p>In general, the easiest path to portability is always to specify
filenames in Unix format unless they will need to be processed by native
commands or utilities.  Because of this latter consideration, the
File::Spec module by default returns native format specifications
regardless of input format.  This default may be reversed so that
filenames are always reported in Unix format by specifying the
<code class="inline"><span class="w">DECC</span><span class="i">$FILENAME_UNIX_REPORT</span></code>
 feature logical in the environment.</p>
<p>The file type, or extension, is always present in a VMS-format file
specification even if it's zero-length.  This means that, by default,
<code class="inline"><a class="l_k" href="functions/readdir.html">readdir</a></code> will return a trailing dot on a file with no extension, so
where you would see <code class="inline"><span class="q">&quot;a&quot;</span></code>
 on Unix you'll see <code class="inline"><span class="q">&quot;a.&quot;</span></code>
 on VMS.  However,
the trailing dot may be suppressed by enabling the
<code class="inline"><span class="w">DECC</span><span class="i">$READDIR_DROPDOTNOTYPE</span></code>
 feature in the environment (see the CRTL
documentation on feature logical names).</p>
<p>What <code class="inline">\<span class="w">n</span></code>
 represents depends on the type of file opened.  It usually
represents <code class="inline">\<span class="n">012</span></code>
 but it could also be <code class="inline">\<span class="n">015</span></code>
, <code class="inline">\<span class="n">012</span></code>
, <code class="inline">\<span class="n">015</span>\<span class="n">012</span></code>
,
<code class="inline">\<span class="n">000</span></code>
, <code class="inline">\<span class="n">040</span></code>
, or nothing depending on the file organization and
record format.  The <code class="inline"><span class="w">VMS::Stdio</span></code>
 module provides access to the
special <code class="inline"><span class="i">fopen</span><span class="s">(</span><span class="s">)</span></code>
 requirements of files with unusual attributes on VMS.</p>
<p>The value of <code class="inline"><span class="i">$^O</span></code>
 on OpenVMS is "VMS".  To determine the architecture
that you are running on refer to <code class="inline"><span class="i">$Config</span>{<span class="q">&#39;archname&#39;</span>}</code>
.</p>
<p>On VMS, perl determines the UTC offset from the <code class="inline"><span class="w">SYS</span><span class="i">$TIMEZONE_DIFFERENTIAL</span></code>

logical name.  Although the VMS epoch began at 17-NOV-1858 00:00:00.00,
calls to <code class="inline"><a class="l_k" href="functions/localtime.html">localtime</a></code> are adjusted to count offsets from
01-JAN-1970 00:00:00.00, just like Unix.</p>
<p>Also see:</p>
<ul>
<li>
<p><i>README.vms</i> (installed as <i>README_vms</i>), <a href="perlvms.html">perlvms</a></p>
</li>
<li>
<p>vmsperl list, vmsperl-subscribe@perl.org</p>
</li>
<li>
<p>vmsperl on the web, <a href="http://www.sidhe.org/vmsperl/index.html">http://www.sidhe.org/vmsperl/index.html</a></p>
</li>
<li>
<p>VMS Software Inc. web site, <a href="http://www.vmssoftware.com">http://www.vmssoftware.com</a></p>
</li>
</ul>
<a name="VOS"></a><h2>VOS</h2>
<p>Perl on VOS (also known as OpenVOS) is discussed in <i>README.vos</i>
in the Perl distribution (installed as <a href="perlvos.html">perlvos</a>).  Perl on VOS
can accept either VOS- or Unix-style file specifications as in
either of the following:</p>
<pre class="verbatim"><ol><li>    $ perl -ne "print if /perl_setup/i" &gt;system&gt;notices</li><li>    $ perl -ne "print if /perl_setup/i" /system/notices</li></ol></pre><p>or even a mixture of both as in:</p>
<pre class="verbatim"><ol><li>    $ perl -ne "print if /perl_setup/i" &gt;system/notices</li></ol></pre><p>Even though VOS allows the slash character to appear in object
names, because the VOS port of Perl interprets it as a pathname
delimiting character, VOS files, directories, or links whose
names contain a slash character cannot be processed.  Such files
must be renamed before they can be processed by Perl.</p>
<p>Older releases of VOS (prior to OpenVOS Release 17.0) limit file
names to 32 or fewer characters, prohibit file names from
starting with a <code class="inline">-</code>
 character, and prohibit file names from
containing any character matching <code class="inline"><span class="q">tr/ !#%&amp;&#39;()*;&lt;=&gt;?//</span></code>
.</p>
<p>Newer releases of VOS (OpenVOS Release 17.0 or later) support a
feature known as extended names.  On these releases, file names
can contain up to 255 characters, are prohibited from starting
with a <code class="inline">-</code>
 character, and the set of prohibited characters is
reduced to any character matching <code class="inline"><a class="l_k" href="functions/tr.html">tr/#%*<>?//</a></code>.  There are
restrictions involving spaces and apostrophes:  these characters
must not begin or end a name, nor can they immediately precede or
follow a period.  Additionally, a space must not immediately
precede another space or hyphen.  Specifically, the following
character combinations are prohibited:  space-space,
space-hyphen, period-space, space-period, period-apostrophe,
apostrophe-period, leading or trailing space, and leading or
trailing apostrophe.  Although an extended file name is limited
to 255 characters, a path name is still limited to 256
characters.</p>
<p>The value of <code class="inline"><span class="i">$^O</span></code>
 on VOS is "vos".  To determine the
architecture that you are running on without resorting to loading
all of <code class="inline"><span class="i">%Config</span></code>
 you can examine the content of the <code class="inline"><span class="i">@INC</span></code>
 array
like so:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/if.html">if</a> <span class="s">(</span><span class="i">$^O</span> =~ <span class="q">/vos/</span><span class="s">)</span> <span class="s">{</span></li><li>        <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;I&#39;m on a Stratus box!\n&quot;</span><span class="sc">;</span></li><li>    <span class="s">}</span> <a class="l_k" href="functions/else.html">else</a> <span class="s">{</span></li><li>        <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;I&#39;m not on a Stratus box!\n&quot;</span><span class="sc">;</span></li><li>        <a class="l_k" href="functions/die.html">die</a><span class="sc">;</span></li><li>    <span class="s">}</span></li></ol></pre><p>Also see:</p>
<ul>
<li>
<p><i>README.vos</i> (installed as <a href="perlvos.html">perlvos</a>)</p>
</li>
<li>
<p>The VOS mailing list.</p>
<p>There is no specific mailing list for Perl on VOS.  You can contact
the Stratus Technologies Customer Assistance Center (CAC) for your
region, or you can use the contact information located in the
distribution files on the Stratus Anonymous FTP site.</p>
</li>
<li>
<p>Stratus Technologies on the web at <a href="http://www.stratus.com">http://www.stratus.com</a></p>
</li>
<li>
<p>VOS Open-Source Software on the web at <a href="http://ftp.stratus.com/pub/vos/vos.html">http://ftp.stratus.com/pub/vos/vos.html</a></p>
</li>
</ul>
<a name="EBCDIC-Platforms"></a><h2>EBCDIC Platforms</h2>
<p>v5.22 core Perl runs on z/OS (formerly OS/390).  Theoretically it could
run on the successors of OS/400 on AS/400 minicomputers as well as
VM/ESA, and BS2000 for S/390 Mainframes.  Such computers use EBCDIC
character sets internally (usually
Character Code Set ID 0037 for OS/400 and either 1047 or POSIX-BC for S/390
systems).</p>
<p>The rest of this section may need updating, but we don't know what it
should say.  Please email comments to
<a href="http://search.cpan.org/perldoc/mailto:perlbug@perl.org">perlbug@perl.org</a>.</p>
<p>On the mainframe Perl currently works under the "Unix system
services for OS/390" (formerly known as OpenEdition), VM/ESA OpenEdition, or
the BS200 POSIX-BC system (BS2000 is supported in Perl 5.6 and greater).
See <a href="perlos390.html">perlos390</a> for details.  Note that for OS/400 there is also a port of
Perl 5.8.1/5.10.0 or later to the PASE which is ASCII-based (as opposed to
ILE which is EBCDIC-based), see <a href="perlos400.html">perlos400</a>.</p>
<p>As of R2.5 of USS for OS/390 and Version 2.3 of VM/ESA these Unix
sub-systems do not support the <code class="inline"><span class="c">#!</span></code>
 shebang trick for script invocation.
Hence, on OS/390 and VM/ESA Perl scripts can be executed with a header
similar to the following simple script:</p>
<pre class="verbatim"><ol><li>    : # use perl</li><li>        <a class="l_k" href="functions/eval.html">eval</a> <span class="q">&#39;exec /usr/local/bin/perl -S $0 ${1+&quot;$@&quot;}&#39;</span></li><li>            if <span class="n">0</span><span class="sc">;</span></li><li>    <span class="c">#!/usr/local/bin/perl     # just a comment really</span></li><li></li><li>    <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;Hello from perl!\n&quot;</span><span class="sc">;</span></li></ol></pre><p>OS/390 will support the <code class="inline"><span class="c">#!</span></code>
 shebang trick in release 2.8 and beyond.
Calls to <code class="inline"><a class="l_k" href="functions/system.html">system</a></code> and backticks can use POSIX shell syntax on all
S/390 systems.</p>
<p>On the AS/400, if PERL5 is in your library list, you may need
to wrap your Perl scripts in a CL procedure to invoke them like so:</p>
<pre class="verbatim"><ol><li>    BEGIN</li><li>      CALL PGM(PERL5/PERL) PARM('/QOpenSys/hello.pl')</li><li>    ENDPGM</li></ol></pre><p>This will invoke the Perl script <i>hello.pl</i> in the root of the
QOpenSys file system.  On the AS/400 calls to <code class="inline"><a class="l_k" href="functions/system.html">system</a></code> or backticks
must use CL syntax.</p>
<p>On these platforms, bear in mind that the EBCDIC character set may have
an effect on what happens with some Perl functions (such as <code class="inline"><a class="l_k" href="functions/chr.html">chr</a></code>,
<code class="inline"><a class="l_k" href="functions/pack.html">pack</a></code>, <code class="inline"><a class="l_k" href="functions/print.html">print</a></code>, <code class="inline"><a class="l_k" href="functions/printf.html">printf</a></code>, <code class="inline"><a class="l_k" href="functions/ord.html">ord</a></code>, <code class="inline"><a class="l_k" href="functions/sort.html">sort</a></code>, <code class="inline"><a class="l_k" href="functions/sprintf.html">sprintf</a></code>, <code class="inline"><a class="l_k" href="functions/unpack.html">unpack</a></code>), as
well as bit-fiddling with ASCII constants using operators like <code class="inline">^</code>, <code class="inline"><span class="i">&amp;</span></code>

and <code class="inline">|</code>, not to mention dealing with socket interfaces to ASCII computers
(see <a href="#Newlines">Newlines</a>).</p>
<p>Fortunately, most web servers for the mainframe will correctly
translate the <code class="inline">\<span class="w">n</span></code>
 in the following statement to its ASCII equivalent
(<code class="inline">\<span class="w">r</span></code>
 is the same under both Unix and z/OS):</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;Content-type: text/html\r\n\r\n&quot;</span><span class="sc">;</span></li></ol></pre><p>The values of <code class="inline"><span class="i">$^O</span></code>
 on some of these platforms includes:</p>
<pre class="verbatim"><ol><li>    <span class="w">uname</span>         <span class="i">$^O</span>        <span class="i">$Config</span>{<span class="q">&#39;archname&#39;</span>}</li><li>    --------------------------------------------</li><li>    <span class="w">OS</span>/<span class="n">390</span>        <span class="w">os390</span>      <span class="w">os390</span></li><li>    <span class="w">OS400</span>         <span class="w">os400</span>      <span class="w">os400</span></li><li>    <span class="w">POSIX</span>-<span class="w">BC</span>      <span class="w">posix</span>-<span class="w">bc</span>   <span class="w">BS2000</span>-<span class="w">posix</span>-<span class="w">bc</span></li></ol></pre><p>Some simple tricks for determining if you are running on an EBCDIC
platform could include any of the following (perhaps all):</p>
<pre class="verbatim"><ol><li>    if <span class="s">(</span><span class="q">&quot;\t&quot;</span> eq <span class="q">&quot;\005&quot;</span><span class="s">)</span>   <span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;EBCDIC may be spoken here!\n&quot;</span><span class="sc">;</span> <span class="s">}</span></li><li></li><li>    if <span class="s">(</span><a class="l_k" href="functions/ord.html">ord</a><span class="s">(</span><span class="q">&#39;A&#39;</span><span class="s">)</span> == <span class="n">193</span><span class="s">)</span> <span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;EBCDIC may be spoken here!\n&quot;</span><span class="sc">;</span> <span class="s">}</span></li><li></li><li>    if <span class="s">(</span><a class="l_k" href="functions/chr.html">chr</a><span class="s">(</span><span class="n">169</span><span class="s">)</span> eq <span class="q">&#39;z&#39;</span><span class="s">)</span> <span class="s">{</span> <a class="l_k" href="functions/print.html">print</a> <span class="q">&quot;EBCDIC may be spoken here!\n&quot;</span><span class="sc">;</span> <span class="s">}</span></li></ol></pre><p>One thing you may not want to rely on is the EBCDIC encoding
of punctuation characters since these may differ from code page to code
page (and once your module or script is rumoured to work with EBCDIC,
folks will want it to work with all EBCDIC character sets).</p>
<p>Also see:</p>
<ul>
<li>
<p><a href="perlos390.html">perlos390</a>, <a href="perlos400.html">perlos400</a>, <a href="perlbs2000.html">perlbs2000</a>, <a href="perlebcdic.html">perlebcdic</a>.</p>
</li>
<li>
<p>The perl-mvs@perl.org list is for discussion of porting issues as well as
general usage issues for all EBCDIC Perls.  Send a message body of
"subscribe perl-mvs" to majordomo@perl.org.</p>
</li>
<li>
<p>AS/400 Perl information at
<a href="http://as400.rochester.ibm.com/">http://as400.rochester.ibm.com/</a>
as well as on CPAN in the <i>ports/</i> directory.</p>
</li>
</ul>
<a name="Acorn-RISC-OS"></a><h2>Acorn RISC OS</h2>
<p>Because Acorns use ASCII with newlines (<code class="inline">\<span class="w">n</span></code>
) in text files as <code class="inline">\<span class="n">012</span></code>
 like
Unix, and because Unix filename emulation is turned on by default,
most simple scripts will probably work "out of the box".  The native
filesystem is modular, and individual filesystems are free to be
case-sensitive or insensitive, and are usually case-preserving.  Some
native filesystems have name length limits, which file and directory
names are silently truncated to fit.  Scripts should be aware that the
standard filesystem currently has a name length limit of <b>10</b>
characters, with up to 77 items in a directory, but other filesystems
may not impose such limitations.</p>
<p>Native filenames are of the form</p>
<pre class="verbatim"><ol><li>    <span class="w">Filesystem</span><span class="c">#Special_Field::DiskName.$.Directory.Directory.File</span></li></ol></pre><p>where</p>
<pre class="verbatim"><ol><li>    Special_Field is not usually present, but may contain . and $ .</li><li>    Filesystem =~ m|[A-Za-z0-9_]|</li><li>    DsicName   =~ m|[A-Za-z0-9_/]|</li><li>    $ represents the root directory</li><li>    . is the path separator</li><li>    @ is the current directory (per filesystem but machine global)</li><li>    ^ is the parent directory</li><li>    Directory and File =~ m|[^\0- "\.\$\%\&amp;:\@\\^\|\177]+|</li></ol></pre><p>The default filename translation is roughly <code class="inline"><a class="l_k" href="functions/tr.html">tr|/.|./|;</a></code></p>
<p>Note that <code class="inline"><span class="q">&quot;ADFS::HardDisk.$.File&quot;</span> ne <span class="q">&#39;ADFS::HardDisk.$.File&#39;</span></code>
 and that
the second stage of <code class="inline"><span class="i">$</span></code>
 interpolation in regular expressions will fall
foul of the <code class="inline"><span class="i">$.</span></code>
 if scripts are not careful.</p>
<p>Logical paths specified by system variables containing comma-separated
search lists are also allowed; hence <code class="inline"><span class="j">System:</span><span class="w">Modules</span></code>
 is a valid
filename, and the filesystem will prefix <code class="inline"><span class="w">Modules</span></code>
 with each section of
<code class="inline"><span class="w">System</span><span class="i">$Path</span></code>
 until a name is made that points to an object on disk.
Writing to a new file <code class="inline"><span class="j">System:</span><span class="w">Modules</span></code>
 would be allowed only if
<code class="inline"><span class="w">System</span><span class="i">$Path</span></code>
 contains a single item list.  The filesystem will also
expand system variables in filenames if enclosed in angle brackets, so
<code class="inline"><span class="q">&lt;System$Dir&gt;</span>.<span class="w">Modules</span></code>
 would look for the file
<code class="inline"><span class="i">$ENV</span>{<span class="q">&#39;System$Dir&#39;</span>} . <span class="q">&#39;Modules&#39;</span></code>
.  The obvious implication of this is
that <b>fully qualified filenames can start with <code class="inline">&lt;&gt;</code>
</b> and should
be protected when <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> is used for input.</p>
<p>Because <code class="inline">.</code> was in use as a directory separator and filenames could not
be assumed to be unique after 10 characters, Acorn implemented the C
compiler to strip the trailing <code class="inline">.c</code> <code class="inline">.h</code> <code class="inline">.s</code> and <code class="inline">.o</code> suffix from
filenames specified in source code and store the respective files in
subdirectories named after the suffix.  Hence files are translated:</p>
<pre class="verbatim"><ol><li>    foo.h           h.foo</li><li>    C:foo.h         C:h.foo        (logical path variable)</li><li>    sys/os.h        sys.h.os       (C compiler groks Unix-speak)</li><li>    10charname.c    c.10charname</li><li>    10charname.o    o.10charname</li><li>    11charname_.c   c.11charname   (assuming filesystem truncates at 10)</li></ol></pre><p>The Unix emulation library's translation of filenames to native assumes
that this sort of translation is required, and it allows a user-defined list
of known suffixes that it will transpose in this fashion.  This may
seem transparent, but consider that with these rules <i>foo/bar/baz.h</i>
and <i>foo/bar/h/baz</i> both map to <i>foo.bar.h.baz</i>, and that <code class="inline"><a class="l_k" href="functions/readdir.html">readdir</a></code> and
<code class="inline"><a class="l_k" href="functions/glob.html">glob</a></code> cannot and do not attempt to emulate the reverse mapping.  Other
<code class="inline">.</code>'s in filenames are translated to <code class="inline">/</code>.</p>
<p>As implied above, the environment accessed through <code class="inline"><span class="i">%ENV</span></code>
 is global, and
the convention is that program specific environment variables are of the
form <code class="inline"><span class="w">Program</span><span class="i">$Name</span></code>
.  Each filesystem maintains a current directory,
and the current filesystem's current directory is the <b>global</b> current
directory.  Consequently, sociable programs don't change the current
directory but rely on full pathnames, and programs (and Makefiles) cannot
assume that they can spawn a child process which can change the current
directory without affecting its parent (and everyone else for that
matter).</p>
<p>Because native operating system filehandles are global and are currently
allocated down from 255, with 0 being a reserved value, the Unix emulation
library emulates Unix filehandles.  Consequently, you can't rely on
passing <code class="inline"><span class="w">STDIN</span></code>
, <code class="inline"><span class="w">STDOUT</span></code>
, or <code class="inline"><span class="w">STDERR</span></code>
 to your children.</p>
<p>The desire of users to express filenames of the form
<code class="inline"><span class="q">&lt;Foo$Dir&gt;</span>.<span class="w">Bar</span></code>
 on the command line unquoted causes problems,
too: <code class="inline"><span class="q">``</span></code>
 command output capture has to perform a guessing game.  It
assumes that a string <code class="inline">&lt;[^&lt;&gt;]+\$[^&lt;&gt;]&gt;</code> is a
reference to an environment variable, whereas anything else involving
<code class="inline">&lt;</code>
 or <code class="inline">&gt;</code> is redirection, and generally manages to be 99%
right.  Of course, the problem remains that scripts cannot rely on any
Unix tools being available, or that any tools found have Unix-like command
line arguments.</p>
<p>Extensions and XS are, in theory, buildable by anyone using free
tools.  In practice, many don't, as users of the Acorn platform are
used to binary distributions.  MakeMaker does run, but no available
make currently copes with MakeMaker's makefiles; even if and when
this should be fixed, the lack of a Unix-like shell will cause
problems with makefile rules, especially lines of the form <code class="inline"><span class="w">cd</span>
<span class="w">sdbm</span> &amp;&amp; <span class="w">make</span> <span class="w">all</span></code>
, and anything using quoting.</p>
<p>"RISC OS" is the proper name for the operating system, but the value
in <code class="inline"><span class="i">$^O</span></code>
 is "riscos" (because we don't like shouting).</p>
<a name="Other-perls"></a><h2>Other perls</h2>
<p>Perl has been ported to many platforms that do not fit into any of
the categories listed above.  Some, such as AmigaOS,
QNX, Plan 9, and VOS, have been well-integrated into the standard
Perl source code kit.  You may need to see the <i>ports/</i> directory
on CPAN for information, and possibly binaries, for the likes of:
aos, Atari ST, lynxos, riscos, Novell Netware, Tandem Guardian,
<i>etc.</i>  (Yes, we know that some of these OSes may fall under the
Unix category, but we are not a standards body.)</p>
<p>Some approximate operating system names and their <code class="inline"><span class="i">$^O</span></code>
 values
in the "OTHER" category include:</p>
<pre class="verbatim"><ol><li>    <span class="w">OS</span>            <span class="i">$^O</span>        <span class="i">$Config</span>{<span class="q">&#39;archname&#39;</span>}</li><li>    ------------------------------------------</li><li>    <span class="w">Amiga</span> <span class="w">DOS</span>     <span class="w">amigaos</span>    <span class="w">m68k</span>-<span class="w">amigos</span></li></ol></pre><p>See also:</p>
<ul>
<li>
<p>Amiga, <i>README.amiga</i> (installed as <a href="perlamiga.html">perlamiga</a>).</p>
</li>
<li>
<p>A free perl5-based PERL.NLM for Novell Netware is available in
precompiled binary and source code form from <a href="http://www.novell.com/">http://www.novell.com/</a>
as well as from CPAN.</p>
</li>
<li>
<p>Plan 9, <i>README.plan9</i></p>
</li>
</ul>
<a name="FUNCTION-IMPLEMENTATIONS"></a><h1>FUNCTION IMPLEMENTATIONS</h1>
<p>Listed below are functions that are either completely unimplemented
or else have been implemented differently on various platforms.
Following each description will be, in parentheses, a list of
platforms that the description applies to.</p>
<p>The list may well be incomplete, or even wrong in some places.  When
in doubt, consult the platform-specific README files in the Perl
source distribution, and any other documentation resources accompanying
a given port.</p>
<p>Be aware, moreover, that even among Unix-ish systems there are variations.</p>
<p>For many functions, you can also query <code class="inline"><span class="i">%Config</span></code>
, exported by
default from the <code class="inline"><span class="w">Config</span></code>
 module.  For example, to check whether the
platform has the <code class="inline"><a class="l_k" href="functions/lstat.html">lstat</a></code> call, check <code class="inline"><span class="i">$Config</span>{<span class="w">d_lstat</span>}</code>
.  See
<a href="Config.html">Config</a> for a full description of available variables.</p>
<a name="Alphabetical-Listing-of-Perl-Functions"></a><h2>Alphabetical Listing of Perl Functions</h2>
<ul>
<li><a name="-X"></a><b>-X</b>
<p><code class="inline">-w</code>
 only inspects the read-only file attribute (FILE_ATTRIBUTE_READONLY),
which determines whether the directory can be deleted, not whether it can
be written to. Directories always have read and write access unless denied
by discretionary access control lists (DACLs).  (Win32)</p>
<p><code class="inline">-r</code>
, <code class="inline">-w</code>
, <code class="inline">-x</code>
, and <code class="inline">-o</code>
 tell whether the file is accessible,
which may not reflect UIC-based file protections.  (VMS)</p>
<p><code class="inline">-s</code>
 by name on an open file will return the space reserved on disk,
rather than the current extent.  <code class="inline">-s</code>
 on an open filehandle returns the
current size.  (RISC OS)</p>
<p><code class="inline">-R</code>
, <code class="inline">-W</code>
, <code class="inline"><a class="l_k" href="functions/-X.html">-X</a></code>, <code class="inline">-O</code>
 are indistinguishable from <code class="inline">-r</code>
, <code class="inline">-w</code>
,
<code class="inline">-x</code>
, <code class="inline">-o</code>
. (Win32, VMS, RISC OS)</p>
<p><code class="inline">-g</code>
, <code class="inline">-k</code>
, <code class="inline">-l</code>
, <code class="inline">-u</code>
, <code class="inline">-A</code>
 are not particularly meaningful.
(Win32, VMS, RISC OS)</p>
<p><code class="inline">-p</code>
 is not particularly meaningful. (VMS, RISC OS)</p>
<p><code class="inline">-d</code>
 is true if passed a device spec without an explicit directory.
(VMS)</p>
<p><code class="inline">-x</code>
 (or <code class="inline"><a class="l_k" href="functions/-X.html">-X</a></code>) determine if a file ends in one of the executable
suffixes.  <code class="inline">-S</code>
 is meaningless.  (Win32)</p>
<p><code class="inline">-x</code>
 (or <code class="inline"><a class="l_k" href="functions/-X.html">-X</a></code>) determine if a file has an executable file type.
(RISC OS)</p>
</li>
<li><a name="alarm"></a><b>alarm</b>
<p>Emulated using timers that must be explicitly polled whenever Perl
wants to dispatch "safe signals" and therefore cannot interrupt
blocking system calls.  (Win32)</p>
</li>
<li><a name="atan2"></a><b>atan2</b>
<p>Due to issues with various CPUs, math libraries, compilers, and standards,
results for <code class="inline"><a class="l_k" href="functions/atan2.html">atan2()</a></code> may vary depending on any combination of the above.
Perl attempts to conform to the Open Group/IEEE standards for the results
returned from <code class="inline"><a class="l_k" href="functions/atan2.html">atan2()</a></code>, but cannot force the issue if the system Perl is
run on does not allow it.  (Tru64, HP-UX 10.20)</p>
<p>The current version of the standards for <code class="inline"><a class="l_k" href="functions/atan2.html">atan2()</a></code> is available at
<a href="http://www.opengroup.org/onlinepubs/009695399/functions/atan2.html">http://www.opengroup.org/onlinepubs/009695399/functions/atan2.html</a>.</p>
</li>
<li><a name="binmode"></a><b>binmode</b>
<p>Meaningless.  (RISC OS)</p>
<p>Reopens file and restores pointer; if function fails, underlying
filehandle may be closed, or pointer may be in a different position.
(VMS)</p>
<p>The value returned by <code class="inline"><a class="l_k" href="functions/tell.html">tell</a></code> may be affected after the call, and
the filehandle may be flushed. (Win32)</p>
</li>
<li><a name="chmod"></a><b>chmod</b>
<p>Only good for changing "owner" read-write access, "group", and "other"
bits are meaningless. (Win32)</p>
<p>Only good for changing "owner" and "other" read-write access. (RISC OS)</p>
<p>Access permissions are mapped onto VOS access-control list changes. (VOS)</p>
<p>The actual permissions set depend on the value of the <code class="inline"><span class="w">CYGWIN</span></code>

in the SYSTEM environment settings.  (Cygwin)</p>
<p>Setting the exec bit on some locations (generally <i>/sdcard</i>) will return true
but not actually set the bit. (Android)</p>
</li>
<li><a name="chown"></a><b>chown</b>
<p>Not implemented. (Win32, Plan 9, RISC OS)</p>
<p>Does nothing, but won't fail. (Win32)</p>
<p>A little funky, because VOS's notion of ownership is a little funky (VOS).</p>
</li>
<li><a name="chroot"></a><b>chroot</b>
<p>Not implemented. (Win32, VMS, Plan 9, RISC OS, VOS)</p>
</li>
<li><a name="crypt"></a><b>crypt</b>
<p>May not be available if library or source was not provided when building
perl. (Win32)</p>
<p>Not implemented. (Android)</p>
</li>
<li><a name="dbmclose"></a><b>dbmclose</b>
<p>Not implemented. (VMS, Plan 9, VOS)</p>
</li>
<li><a name="dbmopen"></a><b>dbmopen</b>
<p>Not implemented. (VMS, Plan 9, VOS)</p>
</li>
<li><a name="dump"></a><b>dump</b>
<p>Not useful. (RISC OS)</p>
<p>Not supported. (Cygwin, Win32)</p>
<p>Invokes VMS debugger. (VMS)</p>
</li>
<li><a name="exec"></a><b>exec</b>
<p><code class="inline"><a class="l_k" href="functions/exec.html">exec</a> <span class="i">LIST</span></code>
 without the use of indirect object syntax (<code class="inline"><a class="l_k" href="functions/exec.html">exec</a> <span class="i">PROGRAM</span> <span class="w">LIST</span></code>
)
may fall back to trying the shell if the first <code class="inline"><span class="i">spawn</span><span class="s">(</span><span class="s">)</span></code>
 fails.  (Win32)</p>
<p>Does not automatically flush output handles on some platforms.
(SunOS, Solaris, HP-UX)</p>
<p>Not supported. (Symbian OS)</p>
</li>
<li><a name="exit"></a><b>exit</b>
<p>Emulates Unix <code class="inline"><a class="l_k" href="functions/exit.html">exit()</a></code> (which considers <code class="inline"><a class="l_k" href="functions/exit.html">exit</a> <span class="n">1</span></code>
 to indicate an error) by
mapping the <code class="inline"><span class="n">1</span></code>
 to <code class="inline"><span class="w">SS</span><span class="i">$_ABORT</span></code>
 (<code class="inline"><span class="n">44</span></code>
).  This behavior may be overridden
with the pragma <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">vmsish</span> <span class="q">&#39;exit&#39;</span></code>
.  As with the CRTL's <code class="inline"><a class="l_k" href="functions/exit.html">exit()</a></code>
function, <code class="inline"><a class="l_k" href="functions/exit.html">exit</a> <span class="n">0</span></code>
 is also mapped to an exit status of <code class="inline"><span class="w">SS</span><span class="i">$_NORMAL</span></code>

(<code class="inline"><span class="n">1</span></code>
); this mapping cannot be overridden.  Any other argument to
<code class="inline"><a class="l_k" href="functions/exit.html">exit()</a></code>
is used directly as Perl's exit status.  On VMS, unless the future
POSIX_EXIT mode is enabled, the exit code should always be a valid
VMS exit code and not a generic number.  When the POSIX_EXIT mode is
enabled, a generic number will be encoded in a method compatible with
the C library _POSIX_EXIT macro so that it can be decoded by other
programs, particularly ones written in C, like the GNV package.  (VMS)</p>
<p><code class="inline"><a class="l_k" href="functions/exit.html">exit()</a></code> resets file pointers, which is a problem when called
from a child process (created by <code class="inline"><a class="l_k" href="functions/fork.html">fork()</a></code>) in <code class="inline">BEGIN</code>
.
A workaround is to use <code class="inline"><span class="w">POSIX::_exit</span></code>
.  (Solaris)</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/exit.html">exit</a> unless <span class="i">$Config</span>{<span class="w">archname</span>} =~ <span class="q">/\bsolaris\b/</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/require.html">require</a> <span class="w">POSIX</span> and <span class="i">POSIX::_exit</span><span class="s">(</span><span class="n">0</span><span class="s">)</span><span class="sc">;</span></li></ol></pre></li>
<li><a name="fcntl"></a><b>fcntl</b>
<p>Not implemented. (Win32)</p>
<p>Some functions available based on the version of VMS. (VMS)</p>
</li>
<li><a name="flock"></a><b>flock</b>
<p>Not implemented (VMS, RISC OS, VOS).</p>
</li>
<li><a name="fork"></a><b>fork</b>
<p>Not implemented. (AmigaOS, RISC OS, VMS)</p>
<p>Emulated using multiple interpreters.  See <a href="perlfork.html">perlfork</a>.  (Win32)</p>
<p>Does not automatically flush output handles on some platforms.
(SunOS, Solaris, HP-UX)</p>
</li>
<li><a name="getlogin"></a><b>getlogin</b>
<p>Not implemented. (RISC OS)</p>
</li>
<li><a name="getpgrp"></a><b>getpgrp</b>
<p>Not implemented. (Win32, VMS, RISC OS)</p>
</li>
<li><a name="getppid"></a><b>getppid</b>
<p>Not implemented. (Win32, RISC OS)</p>
</li>
<li><a name="getpriority"></a><b>getpriority</b>
<p>Not implemented. (Win32, VMS, RISC OS, VOS)</p>
</li>
<li><a name="getpwnam"></a><b>getpwnam</b>
<p>Not implemented. (Win32)</p>
<p>Not useful. (RISC OS)</p>
</li>
<li><a name="getgrnam"></a><b>getgrnam</b>
<p>Not implemented. (Win32, VMS, RISC OS)</p>
</li>
<li><a name="getnetbyname"></a><b>getnetbyname</b>
<p>Not implemented. (Android, Win32, Plan 9)</p>
</li>
<li><a name="getpwuid"></a><b>getpwuid</b>
<p>Not implemented. (Win32)</p>
<p>Not useful. (RISC OS)</p>
</li>
<li><a name="getgrgid"></a><b>getgrgid</b>
<p>Not implemented. (Win32, VMS, RISC OS)</p>
</li>
<li><a name="getnetbyaddr"></a><b>getnetbyaddr</b>
<p>Not implemented. (Android, Win32, Plan 9)</p>
</li>
<li><a name="getprotobynumber"></a><b>getprotobynumber</b>
<p>Not implemented. (Android)</p>
</li>
<li><a name="getservbyport"></a><b>getservbyport</b>
</li>
<li><a name="getpwent"></a><b>getpwent</b>
<p>Not implemented. (Android, Win32)</p>
</li>
<li><a name="getgrent"></a><b>getgrent</b>
<p>Not implemented. (Android, Win32, VMS)</p>
</li>
<li><a name="gethostbyname"></a><b>gethostbyname</b>
<p><code class="inline"><a class="l_k" href="functions/gethostbyname.html">gethostbyname('localhost')</a></code> does not work everywhere: you may have
to use <code class="inline"><a class="l_k" href="functions/gethostbyname.html">gethostbyname('127.0.0.1')</a></code>. (Irix 5)</p>
</li>
<li><a name="gethostent"></a><b>gethostent</b>
<p>Not implemented. (Win32)</p>
</li>
<li><a name="getnetent"></a><b>getnetent</b>
<p>Not implemented. (Android, Win32, Plan 9)</p>
</li>
<li><a name="getprotoent"></a><b>getprotoent</b>
<p>Not implemented. (Android, Win32, Plan 9)</p>
</li>
<li><a name="getservent"></a><b>getservent</b>
<p>Not implemented. (Win32, Plan 9)</p>
</li>
<li><a name="seekdir"></a><b>seekdir</b>
<p>Not implemented. (Android)</p>
</li>
<li><a name="sethostent"></a><b>sethostent</b>
<p>Not implemented. (Android, Win32, Plan 9, RISC OS)</p>
</li>
<li><a name="setnetent"></a><b>setnetent</b>
<p>Not implemented. (Win32, Plan 9, RISC OS)</p>
</li>
<li><a name="setprotoent"></a><b>setprotoent</b>
<p>Not implemented. (Android, Win32, Plan 9, RISC OS)</p>
</li>
<li><a name="setservent"></a><b>setservent</b>
<p>Not implemented. (Plan 9, Win32, RISC OS)</p>
</li>
<li><a name="endpwent"></a><b>endpwent</b>
<p>Not implemented. (Win32)</p>
<p>Either not implemented or a no-op. (Android)</p>
</li>
<li><a name="endgrent"></a><b>endgrent</b>
<p>Not implemented. (Android, RISC OS, VMS, Win32)</p>
</li>
<li><a name="endhostent"></a><b>endhostent</b>
<p>Not implemented. (Android, Win32)</p>
</li>
<li><a name="endnetent"></a><b>endnetent</b>
<p>Not implemented. (Android, Win32, Plan 9)</p>
</li>
<li><a name="endprotoent"></a><b>endprotoent</b>
<p>Not implemented. (Android, Win32, Plan 9)</p>
</li>
<li><a name="endservent"></a><b>endservent</b>
<p>Not implemented. (Plan 9, Win32)</p>
</li>
<li><a name="getsockopt-SOCKET%2cLEVEL%2cOPTNAME"></a><b>getsockopt SOCKET,LEVEL,OPTNAME</b>
<p>Not implemented. (Plan 9)</p>
</li>
<li><a name="glob"></a><b>glob</b>
<p>This operator is implemented via the <code class="inline"><span class="w">File::Glob</span></code>
 extension on most
platforms.  See <a href="File/Glob.html">File::Glob</a> for portability information.</p>
</li>
<li><a name="gmtime"></a><b>gmtime</b>
<p>In theory, <code class="inline"><a class="l_k" href="functions/gmtime.html">gmtime()</a></code> is reliable from -2**63 to 2**63-1.  However,
because work arounds in the implementation use floating point numbers,
it will become inaccurate as the time gets larger.  This is a bug and
will be fixed in the future.</p>
<p>On VOS, time values are 32-bit quantities.</p>
</li>
<li><a name="ioctl-FILEHANDLE%2cFUNCTION%2cSCALAR"></a><b>ioctl FILEHANDLE,FUNCTION,SCALAR</b>
<p>Not implemented. (VMS)</p>
<p>Available only for socket handles, and it does what the <code class="inline"><span class="i">ioctlsocket</span><span class="s">(</span><span class="s">)</span></code>
 call
in the Winsock API does. (Win32)</p>
<p>Available only for socket handles. (RISC OS)</p>
</li>
<li><a name="kill"></a><b>kill</b>
<p>Not implemented, hence not useful for taint checking. (RISC OS)</p>
<p><code class="inline"><a class="l_k" href="functions/kill.html">kill()</a></code> doesn't have the semantics of <code class="inline"><span class="i">raise</span><span class="s">(</span><span class="s">)</span></code>
, i.e. it doesn't send
a signal to the identified process like it does on Unix platforms.
Instead <code class="inline"><a class="l_k" href="functions/kill.html">kill</a><span class="s">(</span><span class="i">$sig</span><span class="cm">,</span> <span class="i">$pid</span><span class="s">)</span></code>
 terminates the process identified by <code class="inline"><span class="i">$pid</span></code>
,
and makes it exit immediately with exit status $sig.  As in Unix, if
$sig is 0 and the specified process exists, it returns true without
actually terminating it. (Win32)</p>
<p><code class="inline"><a class="l_k" href="functions/kill.html">kill</a><span class="s">(</span><span class="n">-9</span><span class="cm">,</span> <span class="i">$pid</span><span class="s">)</span></code>
 will terminate the process specified by <code class="inline"><span class="i">$pid</span></code>
 and
recursively all child processes owned by it.  This is different from
the Unix semantics, where the signal will be delivered to all
processes in the same process group as the process specified by
$pid. (Win32)</p>
<p>Is not supported for process identification number of 0 or negative
numbers. (VMS)</p>
</li>
<li><a name="link"></a><b>link</b>
<p>Not implemented. (RISC OS, VOS)</p>
<p>Link count not updated because hard links are not quite that hard
(They are sort of half-way between hard and soft links). (AmigaOS)</p>
<p>Hard links are implemented on Win32 under NTFS only. They are
natively supported on Windows 2000 and later.  On Windows NT they
are implemented using the Windows POSIX subsystem support and the
Perl process will need Administrator or Backup Operator privileges
to create hard links.</p>
<p>Available on 64 bit OpenVMS 8.2 and later.  (VMS)</p>
</li>
<li><a name="localtime"></a><b>localtime</b>
<p>localtime() has the same range as <a href="#gmtime">gmtime</a>, but because time zone
rules change its accuracy for historical and future times may degrade
but usually by no more than an hour.</p>
</li>
<li><a name="lstat"></a><b>lstat</b>
<p>Not implemented. (RISC OS)</p>
<p>Return values (especially for device and inode) may be bogus. (Win32)</p>
</li>
<li><a name="msgctl"></a><b>msgctl</b>
</li>
<li><a name="msgget"></a><b>msgget</b>
</li>
<li><a name="msgsnd"></a><b>msgsnd</b>
</li>
<li><a name="msgrcv"></a><b>msgrcv</b>
<p>Not implemented. (Android, Win32, VMS, Plan 9, RISC OS, VOS)</p>
</li>
<li><a name="open"></a><b>open</b>
<p>open to <code class="inline">|-</code> and <code class="inline">-|</code> are unsupported. (Win32, RISC OS)</p>
<p>Opening a process does not automatically flush output handles on some
platforms.  (SunOS, Solaris, HP-UX)</p>
</li>
<li><a name="readlink"></a><b>readlink</b>
<p>Not implemented. (Win32, VMS, RISC OS)</p>
</li>
<li><a name="rename"></a><b>rename</b>
<p>Can't move directories between directories on different logical volumes. (Win32)</p>
</li>
<li><a name="rewinddir"></a><b>rewinddir</b>
<p>Will not cause <code class="inline"><a class="l_k" href="functions/readdir.html">readdir()</a></code> to re-read the directory stream.  The entries
already read before the <code class="inline"><a class="l_k" href="functions/rewinddir.html">rewinddir()</a></code> call will just be returned again
from a cache buffer. (Win32)</p>
</li>
<li><a name="select"></a><b>select</b>
<p>Only implemented on sockets. (Win32, VMS)</p>
<p>Only reliable on sockets. (RISC OS)</p>
<p>Note that the <code class="inline"><a class="l_k" href="functions/select.html">select</a> <span class="w">FILEHANDLE</span></code>
 form is generally portable.</p>
</li>
<li><a name="semctl"></a><b>semctl</b>
</li>
<li><a name="semget"></a><b>semget</b>
</li>
<li><a name="semop"></a><b>semop</b>
<p>Not implemented. (Android, Win32, VMS, RISC OS)</p>
</li>
<li><a name="setgrent"></a><b>setgrent</b>
<p>Not implemented. (Android, VMS, Win32, RISC OS)</p>
</li>
<li><a name="setpgrp"></a><b>setpgrp</b>
<p>Not implemented. (Win32, VMS, RISC OS, VOS)</p>
</li>
<li><a name="setpriority"></a><b>setpriority</b>
<p>Not implemented. (Win32, VMS, RISC OS, VOS)</p>
</li>
<li><a name="setpwent"></a><b>setpwent</b>
<p>Not implemented. (Android, Win32, RISC OS)</p>
</li>
<li><a name="setsockopt"></a><b>setsockopt</b>
<p>Not implemented. (Plan 9)</p>
</li>
<li><a name="shmctl"></a><b>shmctl</b>
</li>
<li><a name="shmget"></a><b>shmget</b>
</li>
<li><a name="shmread"></a><b>shmread</b>
</li>
<li><a name="shmwrite"></a><b>shmwrite</b>
<p>Not implemented. (Android, Win32, VMS, RISC OS)</p>
</li>
<li><a name="sleep"></a><b>sleep</b>
<p>Emulated using synchronization functions such that it can be
interrupted by <code class="inline"><a class="l_k" href="functions/alarm.html">alarm()</a></code>, and limited to a maximum of 4294967 seconds,
approximately 49 days. (Win32)</p>
</li>
<li><a name="sockatmark"></a><b>sockatmark</b>
<p>A relatively recent addition to socket functions, may not
be implemented even in Unix platforms.</p>
</li>
<li><a name="socketpair"></a><b>socketpair</b>
<p>Not implemented. (RISC OS)</p>
<p>Available on 64 bit OpenVMS 8.2 and later.  (VMS)</p>
</li>
<li><a name="stat"></a><b>stat</b>
<p>Platforms that do not have rdev, blksize, or blocks will return these
as '', so numeric comparison or manipulation of these fields may cause
'not numeric' warnings.</p>
<p>ctime not supported on UFS (Mac OS X).</p>
<p>ctime is creation time instead of inode change time  (Win32).</p>
<p>device and inode are not meaningful.  (Win32)</p>
<p>device and inode are not necessarily reliable.  (VMS)</p>
<p>mtime, atime and ctime all return the last modification time.  Device and
inode are not necessarily reliable.  (RISC OS)</p>
<p>dev, rdev, blksize, and blocks are not available.  inode is not
meaningful and will differ between stat calls on the same file.  (os2)</p>
<p>some versions of cygwin when doing a <code class="inline"><a class="l_k" href="functions/stat.html">stat("foo")</a></code> and if not finding it
may then attempt to <code class="inline"><a class="l_k" href="functions/stat.html">stat("foo.exe")</a></code> (Cygwin)</p>
<p>On Win32 <code class="inline"><a class="l_k" href="functions/stat.html">stat()</a></code> needs to open the file to determine the link count
and update attributes that may have been changed through hard links.
Setting <code class="inline"><span class="i">$</span>{<span class="w">^WIN32_SLOPPY_STAT</span>}</code>
 to a true value speeds up <code class="inline"><a class="l_k" href="functions/stat.html">stat()</a></code> by
not performing this operation. (Win32)</p>
</li>
<li><a name="symlink"></a><b>symlink</b>
<p>Not implemented. (Win32, RISC OS)</p>
<p>Implemented on 64 bit VMS 8.3.  VMS requires the symbolic link to be in Unix
syntax if it is intended to resolve to a valid path.</p>
</li>
<li><a name="syscall"></a><b>syscall</b>
<p>Not implemented. (Win32, VMS, RISC OS, VOS)</p>
</li>
<li><a name="sysopen"></a><b>sysopen</b>
<p>The traditional "0", "1", and "2" MODEs are implemented with different
numeric values on some systems.  The flags exported by <code class="inline"><span class="w">Fcntl</span></code>

(O_RDONLY, O_WRONLY, O_RDWR) should work everywhere though.  (Mac
OS, OS/390)</p>
</li>
<li><a name="system"></a><b>system</b>
<p>As an optimization, may not call the command shell specified in
<code class="inline"><span class="i">$ENV</span>{<span class="w">PERL5SHELL</span>}</code>
.  <code class="inline"><a class="l_k" href="functions/system.html">system</a><span class="s">(</span><span class="n">1</span><span class="cm">,</span> <span class="i">@args</span><span class="s">)</span></code>
 spawns an external
process and immediately returns its process designator, without
waiting for it to terminate.  Return value may be used subsequently
in <code class="inline"><a class="l_k" href="functions/wait.html">wait</a></code> or <code class="inline"><a class="l_k" href="functions/waitpid.html">waitpid</a></code>.  Failure to <code class="inline"><span class="i">spawn</span><span class="s">(</span><span class="s">)</span></code>
 a subprocess is indicated
by setting <code class="inline"><span class="i">$?</span></code>
 to <code class="inline"><span class="q">&quot;255 &lt;&lt; 8&quot;</span></code>
.  <code class="inline"><span class="i">$?</span></code>
 is set in a way compatible with
Unix (i.e. the exitstatus of the subprocess is obtained by <code class="inline"><span class="q">&quot;$?</span></code>
 8"&gt;&gt;,
as described in the documentation).  (Win32)</p>
<p>There is no shell to process metacharacters, and the native standard is
to pass a command line terminated by "\n" "\r" or "\0" to the spawned
program.  Redirection such as <code class="inline">&gt; foo</code> is performed (if at all) by
the run time library of the spawned program.  <code class="inline"><a class="l_k" href="functions/system.html">system</a></code> <i>list</i> will call
the Unix emulation library's <code class="inline"><a class="l_k" href="functions/exec.html">exec</a></code> emulation, which attempts to provide
emulation of the stdin, stdout, stderr in force in the parent, providing
the child program uses a compatible version of the emulation library.
<i>scalar</i> will call the native command line direct and no such emulation
of a child Unix program will exists.  Mileage <b>will</b> vary.  (RISC OS)</p>
<p><code class="inline"><a class="l_k" href="functions/system.html">system</a> <span class="i">LIST</span></code>
 without the use of indirect object syntax (<code class="inline"><a class="l_k" href="functions/system.html">system</a> <span class="i">PROGRAM</span> <span class="w">LIST</span></code>
)
may fall back to trying the shell if the first <code class="inline"><span class="i">spawn</span><span class="s">(</span><span class="s">)</span></code>
 fails.  (Win32)</p>
<p>Does not automatically flush output handles on some platforms.
(SunOS, Solaris, HP-UX)</p>
<p>The return value is POSIX-like (shifted up by 8 bits), which only allows
room for a made-up value derived from the severity bits of the native
32-bit condition code (unless overridden by <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">vmsish</span> <span class="q">&#39;status&#39;</span></code>
).
If the native condition code is one that has a POSIX value encoded, the
POSIX value will be decoded to extract the expected exit value.
For more details see <a href="perlvms.html#%24%3f">$? in perlvms</a>. (VMS)</p>
</li>
<li><a name="telldir"></a><b>telldir</b>
<p>Not implemented. (Android)</p>
</li>
<li><a name="times"></a><b>times</b>
<p>"cumulative" times will be bogus.  On anything other than Windows NT
or Windows 2000, "system" time will be bogus, and "user" time is
actually the time returned by the <code class="inline"><span class="i">clock</span><span class="s">(</span><span class="s">)</span></code>
 function in the C runtime
library. (Win32)</p>
<p>Not useful. (RISC OS)</p>
</li>
<li><a name="truncate"></a><b>truncate</b>
<p>Not implemented. (Older versions of VMS)</p>
<p>Truncation to same-or-shorter lengths only. (VOS)</p>
<p>If a FILEHANDLE is supplied, it must be writable and opened in append
mode (i.e., use <code class="inline"><a class="l_k" href="functions/open.html">open</a><span class="s">(</span><span class="w">FH</span><span class="cm">,</span> <span class="q">&#39;&gt;&gt;filename&#39;</span><span class="s">)</span></code>

or <code class="inline"><a class="l_k" href="functions/sysopen.html">sysopen(FH,...,O_APPEND|O_RDWR)</a></code>.  If a filename is supplied, it
should not be held open elsewhere. (Win32)</p>
</li>
<li><a name="umask"></a><b>umask</b>
<p>Returns undef where unavailable.</p>
<p><code class="inline"><a class="l_k" href="functions/umask.html">umask</a></code> works but the correct permissions are set only when the file
is finally closed. (AmigaOS)</p>
</li>
<li><a name="utime"></a><b>utime</b>
<p>Only the modification time is updated. (VMS, RISC OS)</p>
<p>May not behave as expected.  Behavior depends on the C runtime
library's implementation of <code class="inline"><a class="l_k" href="functions/utime.html">utime()</a></code>, and the filesystem being
used.  The FAT filesystem typically does not support an "access
time" field, and it may limit timestamps to a granularity of
two seconds. (Win32)</p>
</li>
<li><a name="wait"></a><b>wait</b>
</li>
<li><a name="waitpid"></a><b>waitpid</b>
<p>Can only be applied to process handles returned for processes spawned
using <code class="inline"><a class="l_k" href="functions/system.html">system</a><span class="s">(</span><span class="n">1</span><span class="cm">,</span> ...<span class="s">)</span></code>
 or pseudo processes created with <code class="inline"><a class="l_k" href="functions/fork.html">fork()</a></code>. (Win32)</p>
<p>Not useful. (RISC OS)</p>
</li>
</ul>
<a name="Supported-Platforms"></a><h1>Supported Platforms</h1>
<p>The following platforms are known to build Perl 5.12 (as of April 2010,
its release date) from the standard source code distribution available
at <a href="http://www.cpan.org/src">http://www.cpan.org/src</a></p>
<ul>
<li><a name="Linux-(x86%2c-ARM%2c-IA64)"></a><b>Linux (x86, ARM, IA64)</b>
</li>
<li><a name="HP-UX"></a><b>HP-UX</b>
</li>
<li><a name="AIX"></a><b>AIX</b>
</li>
<li><a name="Win32"></a><b>Win32</b>
<ul>
<li><a name="Windows-2000"></a><b>Windows 2000</b>
</li>
<li><a name="Windows-XP"></a><b>Windows XP</b>
</li>
<li><a name="Windows-Server-2003"></a><b>Windows Server 2003</b>
</li>
<li><a name="Windows-Vista"></a><b>Windows Vista</b>
</li>
<li><a name="Windows-Server-2008"></a><b>Windows Server 2008</b>
</li>
<li><a name="Windows-7"></a><b>Windows 7</b>
</li>
</ul>
</li>
<li><a name="Cygwin"></a><b>Cygwin</b>
<p>Some tests are known to fail:</p>
<ul>
<li>
<p><i>ext/XS-APItes/t/call_checker.t</i> - see
<a href="https://rt.perl.org/Ticket/Display.html?id=78502">https://rt.perl.org/Ticket/Display.html?id=78502</a></p>
</li>
<li>
<p><i>dist/I18N-Collate/t/I18N-Collate.t</i></p>
</li>
<li>
<p><i>ext/Win32CORE/t/win32core.t</i> - may fail on recent cygwin installs.</p>
</li>
</ul>
</li>
<li><a name="Solaris-(x86%2c-SPARC)"></a><b>Solaris (x86, SPARC)</b>
</li>
<li><a name="OpenVMS"></a><b>OpenVMS</b>
<ul>
<li><a name="Alpha-(7.2-and-later)"></a><b>Alpha (7.2 and later)</b>
</li>
<li><a name="I64-(8.2-and-later)"></a><b>I64 (8.2 and later)</b>
</li>
</ul>
</li>
<li><a name="Symbian"></a><b>Symbian</b>
</li>
<li><a name="NetBSD"></a><b>NetBSD</b>
</li>
<li><a name="FreeBSD"></a><b>FreeBSD</b>
</li>
<li><a name="Debian-GNU%2fkFreeBSD"></a><b>Debian GNU/kFreeBSD</b>
</li>
<li><a name="Haiku"></a><b>Haiku</b>
</li>
<li><a name="Irix-(6.5.-What-else%3f)"></a><b>Irix (6.5. What else?)</b>
</li>
<li><a name="OpenBSD"></a><b>OpenBSD</b>
</li>
<li><a name="Dragonfly-BSD"></a><b>Dragonfly BSD</b>
</li>
<li><a name="Midnight-BSD"></a><b>Midnight BSD</b>
</li>
<li><a name="QNX-Neutrino-RTOS-(6.5.0)"></a><b>QNX Neutrino RTOS (6.5.0)</b>
</li>
<li><a name="MirOS-BSD"></a><b>MirOS BSD</b>
</li>
<li><a name="Stratus-OpenVOS-(17.0-or-later)"></a><b>Stratus OpenVOS (17.0 or later)</b>
<p>Caveats:</p>
<ul>
<li><a name="time_t-issues-that-may-or-may-not-be-fixed"></a><b>time_t issues that may or may not be fixed</b>
</li>
</ul>
</li>
<li><a name="Symbian-(Series-60-v3%2c-3.2-and-5---what-else%3f)"></a><b>Symbian (Series 60 v3, 3.2 and 5 - what else?)</b>
</li>
<li><a name="Stratus-VOS-%2f-OpenVOS"></a><b>Stratus VOS / OpenVOS</b>
</li>
<li><a name="AIX"></a><b>AIX</b>
</li>
<li><a name="Android"></a><b>Android</b>
</li>
<li><a name="FreeMINT"></a><b>FreeMINT</b>
<p>Perl now builds with FreeMiNT/Atari. It fails a few tests, that needs
some investigation.</p>
<p>The FreeMiNT port uses GNU dld for loadable module capabilities. So
ensure you have that library installed when building perl.</p>
</li>
</ul>
<a name="EOL-Platforms"></a><h1>EOL Platforms</h1>
<a name="(Perl-5.20)"></a><h2>(Perl 5.20)</h2>
<p>The following platforms were supported by a previous version of
Perl but have been officially removed from Perl's source code
as of 5.20:</p>
<ul>
<li><a name="AT%26T-3b1"></a><b>AT&amp;T 3b1</b>
</li>
</ul>
<a name="(Perl-5.14)"></a><h2>(Perl 5.14)</h2>
<p>The following platforms were supported up to 5.10.  They may still
have worked in 5.12, but supporting code has been removed for 5.14:</p>
<ul>
<li><a name="Windows-95"></a><b>Windows 95</b>
</li>
<li><a name="Windows-98"></a><b>Windows 98</b>
</li>
<li><a name="Windows-ME"></a><b>Windows ME</b>
</li>
<li><a name="Windows-NT4"></a><b>Windows NT4</b>
</li>
</ul>
<a name="(Perl-5.12)"></a><h2>(Perl 5.12)</h2>
<p>The following platforms were supported by a previous version of
Perl but have been officially removed from Perl's source code
as of 5.12:</p>
<ul>
<li><a name="Atari-MiNT"></a><b>Atari MiNT</b>
</li>
<li><a name="Apollo-Domain%2fOS"></a><b>Apollo Domain/OS</b>
</li>
<li><a name="Apple-Mac-OS-8%2f9"></a><b>Apple Mac OS 8/9</b>
</li>
<li><a name="Tenon-Machten"></a><b>Tenon Machten</b>
</li>
</ul>
<a name="Supported-Platforms-(Perl-5.8)"></a><h1>Supported Platforms (Perl 5.8)</h1>
<p>As of July 2002 (the Perl release 5.8.0), the following platforms were
able to build Perl from the standard source code distribution
available at <a href="http://www.cpan.org/src/">http://www.cpan.org/src/</a></p>
<pre class="verbatim"><ol><li>        <span class="w">AIX</span></li><li>        <span class="w">BeOS</span></li><li>        <span class="w">BSD</span>/<span class="w">OS</span>          <span class="s">(</span><span class="w">BSDi</span><span class="s">)</span></li><li>        <span class="w">Cygwin</span></li><li>        <span class="w">DG</span>/<span class="w">UX</span></li><li>        <span class="w">DOS</span> <span class="w">DJGPP</span>       <span class="n">1</span><span class="p">)</span></li><li>        <span class="w">DYNIX</span>/<span class="w">ptx</span></li><li>        <span class="w">EPOC</span> <span class="w">R5</span></li><li>        <span class="w">FreeBSD</span></li><li>        <span class="w">HI</span>-<span class="w">UXMPP</span>        <span class="s">(</span><span class="w">Hitachi</span><span class="s">)</span> <span class="s">(</span><span class="v">5.8.0</span> <span class="w">worked</span> <span class="w">but</span> <span class="w">we</span> <span class="w">didn&#39;t</span> <span class="w">know</span> <span class="w">it</span><span class="s">)</span></li><li>        <span class="w">HP</span>-<span class="w">UX</span></li><li>        <span class="w">IRIX</span></li><li>        <span class="w">Linux</span></li><li>        <span class="w">Mac</span> <span class="w">OS</span> <span class="w">Classic</span></li><li>        <span class="w">Mac</span> <span class="w">OS</span> <span class="w">X</span>        <span class="s">(</span><span class="w">Darwin</span><span class="s">)</span></li><li>        <span class="w">MPE</span>/<span class="w">iX</span></li><li>        <span class="w">NetBSD</span></li><li>        <span class="w">NetWare</span></li><li>        <span class="w">NonStop</span>-<span class="w">UX</span></li><li>        <span class="w">ReliantUNIX</span>     <span class="s">(</span><span class="w">formerly</span> <span class="w">SINIX</span><span class="s">)</span></li><li>        <span class="w">OpenBSD</span></li><li>        <span class="w">OpenVMS</span>         <span class="s">(</span><span class="w">formerly</span> <span class="w">VMS</span><span class="s">)</span></li><li>        <span class="w">Open</span> <span class="w">UNIX</span>       <span class="s">(</span><span class="w">Unixware</span><span class="s">)</span> <span class="s">(</span><span class="w">since</span> <span class="w">Perl</span> <span class="v">5.8.1</span>/<span class="v">5.9.0</span><span class="s">)</span></li><li>        <span class="w">OS</span>/<span class="n">2</span></li><li>        <span class="w">OS</span>/<span class="n">400</span>          <span class="s">(</span><span class="w">using</span> <span class="w">the</span> <span class="w">PASE</span><span class="s">)</span> <span class="s">(</span><span class="w">since</span> <span class="w">Perl</span> <span class="v">5.8.1</span>/<span class="v">5.9.0</span><span class="s">)</span></li><li>        <span class="w">PowerUX</span></li><li>        <span class="w">POSIX</span>-<span class="w">BC</span>        <span class="s">(</span><span class="w">formerly</span> <span class="w">BS2000</span><span class="s">)</span></li><li>        <span class="w">QNX</span></li><li>        <span class="w">Solaris</span></li><li>        <span class="w">SunOS</span> <span class="n">4</span></li><li>        <span class="w">SUPER</span>-<span class="w">UX</span>        <span class="s">(</span><span class="w">NEC</span><span class="s">)</span></li><li>        <span class="w">Tru64</span> <span class="w">UNIX</span>      <span class="s">(</span><span class="w">formerly</span> <span class="w">DEC</span> <span class="w">OSF</span>/<span class="n">1</span><span class="cm">,</span> <span class="w">Digital</span> <span class="w">UNIX</span><span class="s">)</span></li><li>        <span class="w">UNICOS</span></li><li>        <span class="w">UNICOS</span>/<span class="w">mk</span></li><li>        <span class="w">UTS</span></li><li>        <span class="w">VOS</span> / <span class="w">OpenVOS</span></li><li>        <span class="w">Win95</span>/<span class="n">98</span>/<span class="w">ME</span>/<span class="n">2</span><span class="w">K</span>/<span class="w">XP</span> <span class="n">2</span><span class="p">)</span></li><li>        <span class="w">WinCE</span></li><li>        <span class="w">z</span>/<span class="w">OS</span>            <span class="s">(</span><span class="w">formerly</span> <span class="w">OS</span>/<span class="n">390</span><span class="s">)</span></li><li>        <span class="w">VM</span>/<span class="w">ESA</span></li><li></li><li>        <span class="n">1</span><span class="p">)</span> <span class="w">in</span> <span class="w">DOS</span> <span class="w">mode</span> <span class="w">either</span> <span class="w">the</span> <span class="w">DOS</span> <a class="l_k" href="functions/or.html">or</a> <span class="w">OS</span>/<span class="n">2</span> <span class="w">ports</span> <span class="w">can</span> <span class="w">be</span> <span class="w">used</span></li><li>        <span class="n">2</span><span class="p">)</span> <span class="w">compilers</span><span class="co">:</span> <span class="w">Borland</span><span class="cm">,</span> <span class="w">MinGW</span> <span class="s">(</span><span class="w">GCC</span><span class="s">)</span><span class="cm">,</span> <span class="w">VC6</span></li></ol></pre><p>The following platforms worked with the previous releases (5.6 and
5.7), but we did not manage either to fix or to test these in time
for the 5.8.0 release.  There is a very good chance that many of these
will work fine with the 5.8.0.</p>
<pre class="verbatim"><ol><li>        <span class="w">BSD</span>/<span class="w">OS</span></li><li>        <span class="w">DomainOS</span></li><li>        <span class="w">Hurd</span></li><li>        <span class="w">LynxOS</span></li><li>        <span class="w">MachTen</span></li><li>        <span class="w">PowerMAX</span></li><li>        <span class="w">SCO</span> <span class="w">SV</span></li><li>        <span class="w">SVR4</span></li><li>        <span class="w">Unixware</span></li><li>        <span class="w">Windows</span> <span class="n">3.1</span></li></ol></pre><p>Known to be broken for 5.8.0 (but 5.6.1 and 5.7.2 can be used):</p>
<pre class="verbatim"><ol><li>	<span class="w">AmigaOS</span></li></ol></pre><p>The following platforms have been known to build Perl from source in
the past (5.005_03 and earlier), but we haven't been able to verify
their status for the current release, either because the
hardware/software platforms are rare or because we don't have an
active champion on these platforms--or both.  They used to work,
though, so go ahead and try compiling them, and let perlbug@perl.org
of any trouble.</p>
<pre class="verbatim"><ol><li>        3b1</li><li>        A/UX</li><li>        ConvexOS</li><li>        CX/UX</li><li>        DC/OSx</li><li>        DDE SMES</li><li>        DOS EMX</li><li>        Dynix</li><li>        EP/IX</li><li>        ESIX</li><li>        FPS</li><li>        GENIX</li><li>        Greenhills</li><li>        ISC</li><li>        MachTen 68k</li><li>        MPC</li><li>        NEWS-OS</li><li>        NextSTEP</li><li>        OpenSTEP</li><li>        Opus</li><li>        Plan 9</li><li>        RISC/os</li><li>        SCO ODT/OSR</li><li>        Stellar</li><li>        SVR2</li><li>        TI1500</li><li>        TitanOS</li><li>        Ultrix</li><li>        Unisys Dynix</li></ol></pre><p>The following platforms have their own source code distributions and
binaries available via <a href="http://www.cpan.org/ports/">http://www.cpan.org/ports/</a></p>
<pre class="verbatim"><ol><li>                                Perl release</li><li></li><li>        OS/400 (ILE)            5.005_02</li><li>        Tandem Guardian         5.004</li></ol></pre><p>The following platforms have only binaries available via
<a href="http://www.cpan.org/ports/index.html">http://www.cpan.org/ports/index.html</a> :</p>
<pre class="verbatim"><ol><li>                                Perl release</li><li></li><li>        Acorn RISCOS            5.005_02</li><li>        AOS                     5.002</li><li>        LynxOS                  5.004_02</li></ol></pre><p>Although we do suggest that you always build your own Perl from
the source code, both for maximal configurability and for security,
in case you are in a hurry you can check
<a href="http://www.cpan.org/ports/index.html">http://www.cpan.org/ports/index.html</a> for binary distributions.</p>
<a name="SEE-ALSO"></a><h1>SEE ALSO</h1>
<p><a href="perlaix.html">perlaix</a>, <a href="perlamiga.html">perlamiga</a>, <a href="perlbs2000.html">perlbs2000</a>,
<a href="perlce.html">perlce</a>, <a href="perlcygwin.html">perlcygwin</a>, <a href="perldos.html">perldos</a>,
<a href="perlebcdic.html">perlebcdic</a>, <a href="perlfreebsd.html">perlfreebsd</a>, <a href="perlhurd.html">perlhurd</a>, <a href="perlhpux.html">perlhpux</a>, <a href="perlirix.html">perlirix</a>,
<a href="perlmacos.html">perlmacos</a>, <a href="perlmacosx.html">perlmacosx</a>,
<a href="perlnetware.html">perlnetware</a>, <a href="perlos2.html">perlos2</a>, <a href="perlos390.html">perlos390</a>, <a href="perlos400.html">perlos400</a>,
<a href="perlplan9.html">perlplan9</a>, <a href="perlqnx.html">perlqnx</a>, <a href="perlsolaris.html">perlsolaris</a>, <a href="perltru64.html">perltru64</a>,
<a href="perlunicode.html">perlunicode</a>, <a href="perlvms.html">perlvms</a>, <a href="perlvos.html">perlvos</a>, <a href="perlwin32.html">perlwin32</a>, and <a href="http://search.cpan.org/perldoc/Win32">Win32</a>.</p>
<a name="AUTHORS-%2f-CONTRIBUTORS"></a><h1>AUTHORS / CONTRIBUTORS</h1>
<p>Abigail &lt;abigail@foad.org&gt;,
Charles Bailey &lt;bailey@newman.upenn.edu&gt;,
Graham Barr &lt;gbarr@pobox.com&gt;,
Tom Christiansen &lt;tchrist@perl.com&gt;,
Nicholas Clark &lt;nick@ccl4.org&gt;,
Thomas Dorner &lt;Thomas.Dorner@start.de&gt;,
Andy Dougherty &lt;doughera@lafayette.edu&gt;,
Dominic Dunlop &lt;domo@computer.org&gt;,
Neale Ferguson &lt;neale@vma.tabnsw.com.au&gt;,
David J. Fiander &lt;davidf@mks.com&gt;,
Paul Green &lt;Paul.Green@stratus.com&gt;,
M.J.T. Guy &lt;mjtg@cam.ac.uk&gt;,
Jarkko Hietaniemi &lt;jhi@iki.fi&gt;,
Luther Huffman &lt;lutherh@stratcom.com&gt;,
Nick Ing-Simmons &lt;nick@ing-simmons.net&gt;,
Andreas J. K&#xf6;nig &lt;a.koenig@mind.de&gt;,
Markus Laker &lt;mlaker@contax.co.uk&gt;,
Andrew M. Langmead &lt;aml@world.std.com&gt;,
Larry Moore &lt;ljmoore@freespace.net&gt;,
Paul Moore &lt;Paul.Moore@uk.origin-it.com&gt;,
Chris Nandor &lt;pudge@pobox.com&gt;,
Matthias Neeracher &lt;neeracher@mac.com&gt;,
Philip Newton &lt;pne@cpan.org&gt;,
Gary Ng &lt;71564.1743@CompuServe.COM&gt;,
Tom Phoenix &lt;rootbeer@teleport.com&gt;,
Andr&#xe9; Pirard &lt;A.Pirard@ulg.ac.be&gt;,
Peter Prymmer &lt;pvhp@forte.com&gt;,
Hugo van der Sanden &lt;hv@crypt0.demon.co.uk&gt;,
Gurusamy Sarathy &lt;gsar@activestate.com&gt;,
Paul J. Schinder &lt;schinder@pobox.com&gt;,
Michael G Schwern &lt;schwern@pobox.com&gt;,
Dan Sugalski &lt;dan@sidhe.org&gt;,
Nathan Torkington &lt;gnat@frii.com&gt;,
John Malmberg &lt;wb8tyw@qsl.net&gt;</p>




  <div id="page_index" class="hud_container">
    <div id="page_index_header" class="hud_header">
      <div id="page_index_close" class="hud_close"><a href="#" onClick="pageIndex.hide();return false;"></a></div>
      <div id="page_index_title" class="hud_title"><span class="hud_span_top">Page index</span></div>
      <div id="page_index_topright" class="hud_topright"></div>
    </div>
    <div id="page_index_content" class="hud_content">
      <ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#ISSUES">ISSUES</a><ul><li><a href="#Newlines">Newlines</a><li><a href="#Numbers-endianness-and-Width">Numbers endianness and Width</a><li><a href="#Files-and-Filesystems">Files and Filesystems</a><li><a href="#System-Interaction">System Interaction</a><li><a href="#Command-names-versus-file-pathnames">Command names versus file pathnames</a><li><a href="#Networking">Networking</a><li><a href="#Interprocess-Communication-(IPC)">Interprocess Communication (IPC)</a><li><a href="#External-Subroutines-(XS)">External Subroutines (XS)</a><li><a href="#Standard-Modules">Standard Modules</a><li><a href="#Time-and-Date">Time and Date</a><li><a href="#Character-sets-and-character-encoding">Character sets and character encoding</a><li><a href="#Internationalisation">Internationalisation</a><li><a href="#System-Resources">System Resources</a><li><a href="#Security">Security</a><li><a href="#Style">Style</a></ul><li><a href="#CPAN-Testers">CPAN Testers</a><li><a href="#PLATFORMS">PLATFORMS</a><ul><li><a href="#Unix">Unix</a><li><a href="#DOS-and-Derivatives">DOS and Derivatives</a><li><a href="#VMS">VMS</a><li><a href="#VOS">VOS</a><li><a href="#EBCDIC-Platforms">EBCDIC Platforms</a><li><a href="#Acorn-RISC-OS">Acorn RISC OS</a><li><a href="#Other-perls">Other perls</a></ul><li><a href="#FUNCTION-IMPLEMENTATIONS">FUNCTION IMPLEMENTATIONS</a><ul><li><a href="#Alphabetical-Listing-of-Perl-Functions">Alphabetical Listing of Perl Functions</a></ul><li><a href="#Supported-Platforms">Supported Platforms</a><li><a href="#EOL-Platforms">EOL Platforms</a><ul><li><a href="#(Perl-5.20)">(Perl 5.20)</a><li><a href="#(Perl-5.14)">(Perl 5.14)</a><li><a href="#(Perl-5.12)">(Perl 5.12)</a></ul><li><a href="#Supported-Platforms-(Perl-5.8)">Supported Platforms (Perl 5.8)</a><li><a href="#SEE-ALSO">SEE ALSO</a><li><a href="#AUTHORS-%2f-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</a></ul>
    </div>
    <div id="page_index_footer" class="hud_footer">
      <div id="page_index_bottomleft" class="hud_bottomleft"></div>
      <div id="page_index_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
      <div id="page_index_resize" class="hud_resize"></div>
    </div>
  </div>


	    &nbsp;
          </div>
          <div id="content_footer">
          </div>
        </div>
        <div class="clear"></div>
      </div>
      
    <div id="footer">
      <div id="footer_content">
        <div id="footer_strapline">
          perldoc.perl.org - Official documentation for the Perl programming language
        </div>
        <div id="footer_links">
          <div id="address">
            <p class="name">Contact details</p>
            <p class="address">
	      Site maintained by <a href="mailto:jj@jonallen.info">Jon Allen (JJ)</a><br>
	    </p>
            <p class="contact">
              Documentation maintained by the <a href="http://lists.cpan.org/showlist.cgi?name=perl5-porters">Perl 5 Porters</a>
            </p>
          </div>
          <ul class="f1">
            <li>Manual
              <ul class="f2">
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">Changes</a>
              </ul>
            <li>Reference
              <ul class="f2">
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Variables</a>
              </ul>
            <li>Modules
              <ul class="f2">
                <li><a href="index-modules-A.html">Modules</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
              </ul>
            <li>Misc
              <ul class="f2">
                <li><a href="index-licence.html">License</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platforms</a>
              </ul>          </ul>
          <div class="clear"></div>
        </div>
      </div>
      <div id="footer_end">
      </div>
    </div>
      
    </div>
      <script language="JavaScript" type="text/javascript" src="static/exploreperl.js"></script>
      <script language="JavaScript" src="static/combined-20100403.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
  perldoc.setPath(0);
  perldoc.pageName    = 'perlport';
  perldoc.pageAddress = 'perlport.html';
  perldoc.contentPage = 1;
  explorePerl.render();
  explorePerl.addEvents('explore_anchor');
</script>
    
  </body>
</html>