1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
|
@c DO NOT EDIT! Generated automatically by munge-texi.
@c Copyright (C) 1996, 1997, 1999, 2000, 2002, 2007, 2008, 2009 John W. Eaton
@c
@c This file is part of Octave.
@c
@c Octave is free software; you can redistribute it and/or modify it
@c under the terms of the GNU General Public License as published by the
@c Free Software Foundation; either version 3 of the License, or (at
@c your option) any later version.
@c
@c Octave is distributed in the hope that it will be useful, but WITHOUT
@c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
@c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
@c for more details.
@c
@c You should have received a copy of the GNU General Public License
@c along with Octave; see the file COPYING. If not, see
@c <http://www.gnu.org/licenses/>.
@node System Utilities
@chapter System Utilities
This chapter describes the functions that are available to allow you to
get information about what is happening outside of Octave, while it is
still running, and use this information in your program. For example,
you can get information about environment variables, the current time,
and even start other programs from the Octave prompt.
@menu
* Timing Utilities::
* Filesystem Utilities::
* File Archiving Utilities::
* Networking Utilities::
* Controlling Subprocesses::
* Process ID Information::
* Environment Variables::
* Current Working Directory::
* Password Database Functions::
* Group Database Functions::
* System Information::
* Hashing Functions::
@end menu
@node Timing Utilities
@section Timing Utilities
Octave's core set of functions for manipulating time values are
patterned after the corresponding functions from the standard C library.
Several of these functions use a data structure for time that includes
the following elements:
@table @code
@item usec
Microseconds after the second (0-999999).
@item sec
Seconds after the minute (0-61). This number can be 61 to account
for leap seconds.
@item min
Minutes after the hour (0-59).
@item hour
Hours since midnight (0-23).
@item mday
Day of the month (1-31).
@item mon
Months since January (0-11).
@item year
Years since 1900.
@item wday
Days since Sunday (0-6).
@item yday
Days since January 1 (0-365).
@item isdst
Daylight Savings Time flag.
@item zone
Time zone.
@end table
@noindent
In the descriptions of the following functions, this structure is
referred to as a @var{tm_struct}.
@c ./DLD-FUNCTIONS/time.cc
@anchor{doc-time}
@deftypefn {Loadable Function} {} time ()
Return the current time as the number of seconds since the epoch. The
epoch is referenced to 00:00:00 CUT (Coordinated Universal Time) 1 Jan
1970. For example, on Monday February 17, 1997 at 07:15:06 CUT, the
value returned by @code{time} was 856163706.
@seealso{@ref{doc-strftime,,strftime}, @ref{doc-strptime,,strptime}, @ref{doc-localtime,,localtime}, @ref{doc-gmtime,,gmtime}, @ref{doc-mktime,,mktime}, @ref{doc-now,,now}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}, @ref{doc-datevec,,datevec}, @ref{doc-calendar,,calendar}, @ref{doc-weekday,,weekday}}
@end deftypefn
@c ./time/now.m
@anchor{doc-now}
@deftypefn {Function File} {t =} now ()
Returns the current local time as the number of days since Jan 1, 0000.
By this reckoning, Jan 1, 1970 is day number 719529.
The integral part, @code{floor (now)} corresponds to 00:00:00 today.
The fractional part, @code{rem (now, 1)} corresponds to the current
time on Jan 1, 0000.
The returned value is also called a "serial date number"
(see @code{datenum}).
@seealso{@ref{doc-clock,,clock}, @ref{doc-date,,date}, @ref{doc-datenum,,datenum}}
@end deftypefn
@c ./time/ctime.m
@anchor{doc-ctime}
@deftypefn {Function File} {} ctime (@var{t})
Convert a value returned from @code{time} (or any other non-negative
integer), to the local time and return a string of the same form as
@code{asctime}. The function @code{ctime (time)} is equivalent to
@code{asctime (localtime (time))}. For example,
@example
@group
ctime (time ())
@result{} "Mon Feb 17 01:15:06 1997\n"
@end group
@end example
@end deftypefn
@c ./DLD-FUNCTIONS/time.cc
@anchor{doc-gmtime}
@deftypefn {Loadable Function} {} gmtime (@var{t})
Given a value returned from time (or any non-negative integer),
return a time structure corresponding to CUT. For example,
@example
@group
gmtime (time ())
@result{} @{
usec = 0
year = 97
mon = 1
mday = 17
sec = 6
zone = CST
min = 15
wday = 1
hour = 7
isdst = 0
yday = 47
@}
@end group
@end example
@seealso{@ref{doc-strftime,,strftime}, @ref{doc-strptime,,strptime}, @ref{doc-localtime,,localtime}, @ref{doc-mktime,,mktime}, @ref{doc-time,,time}, @ref{doc-now,,now}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}, @ref{doc-datevec,,datevec}, @ref{doc-calendar,,calendar}, @ref{doc-weekday,,weekday}}
@end deftypefn
@c ./DLD-FUNCTIONS/time.cc
@anchor{doc-localtime}
@deftypefn {Loadable Function} {} localtime (@var{t})
Given a value returned from time (or any non-negative integer),
return a time structure corresponding to the local time zone.
@example
@group
localtime (time ())
@result{} @{
usec = 0
year = 97
mon = 1
mday = 17
sec = 6
zone = CST
min = 15
wday = 1
hour = 1
isdst = 0
yday = 47
@}
@end group
@end example
@seealso{@ref{doc-strftime,,strftime}, @ref{doc-strptime,,strptime}, @ref{doc-gmtime,,gmtime}, @ref{doc-mktime,,mktime}, @ref{doc-time,,time}, @ref{doc-now,,now}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}, @ref{doc-datevec,,datevec}, @ref{doc-calendar,,calendar}, @ref{doc-weekday,,weekday}}
@end deftypefn
@c ./DLD-FUNCTIONS/time.cc
@anchor{doc-mktime}
@deftypefn {Loadable Function} {} mktime (@var{tm_struct})
Convert a time structure corresponding to the local time to the number
of seconds since the epoch. For example,
@example
@group
mktime (localtime (time ()))
@result{} 856163706
@end group
@end example
@seealso{@ref{doc-strftime,,strftime}, @ref{doc-strptime,,strptime}, @ref{doc-localtime,,localtime}, @ref{doc-gmtime,,gmtime}, @ref{doc-time,,time}, @ref{doc-now,,now}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}, @ref{doc-datevec,,datevec}, @ref{doc-calendar,,calendar}, @ref{doc-weekday,,weekday}}
@end deftypefn
@c ./time/asctime.m
@anchor{doc-asctime}
@deftypefn {Function File} {} asctime (@var{tm_struct})
Convert a time structure to a string using the following five-field
format: Thu Mar 28 08:40:14 1996. For example,
@example
@group
asctime (localtime (time ()))
@result{} "Mon Feb 17 01:15:06 1997\n"
@end group
@end example
This is equivalent to @code{ctime (time ())}.
@end deftypefn
@c ./DLD-FUNCTIONS/time.cc
@anchor{doc-strftime}
@deftypefn {Loadable Function} {} strftime (@var{fmt}, @var{tm_struct})
Format the time structure @var{tm_struct} in a flexible way using the
format string @var{fmt} that contains @samp{%} substitutions
similar to those in @code{printf}. Except where noted, substituted
fields have a fixed size; numeric fields are padded if necessary.
Padding is with zeros by default; for fields that display a single
number, padding can be changed or inhibited by following the @samp{%}
with one of the modifiers described below. Unknown field specifiers are
copied as normal characters. All other characters are copied to the
output without change. For example,
@example
@group
strftime ("%r (%Z) %A %e %B %Y", localtime (time ()))
@result{} "01:15:06 AM (CST) Monday 17 February 1997"
@end group
@end example
Octave's @code{strftime} function supports a superset of the ANSI C
field specifiers.
@noindent
Literal character fields:
@table @code
@item %
% character.
@item n
Newline character.
@item t
Tab character.
@end table
@noindent
Numeric modifiers (a nonstandard extension):
@table @code
@item - (dash)
Do not pad the field.
@item _ (underscore)
Pad the field with spaces.
@end table
@noindent
Time fields:
@table @code
@item %H
Hour (00-23).
@item %I
Hour (01-12).
@item %k
Hour (0-23).
@item %l
Hour (1-12).
@item %M
Minute (00-59).
@item %p
Locale's AM or PM.
@item %r
Time, 12-hour (hh:mm:ss [AP]M).
@item %R
Time, 24-hour (hh:mm).
@item %s
Time in seconds since 00:00:00, Jan 1, 1970 (a nonstandard extension).
@item %S
Second (00-61).
@item %T
Time, 24-hour (hh:mm:ss).
@item %X
Locale's time representation (%H:%M:%S).
@item %Z
Time zone (EDT), or nothing if no time zone is determinable.
@end table
@noindent
Date fields:
@table @code
@item %a
Locale's abbreviated weekday name (Sun-Sat).
@item %A
Locale's full weekday name, variable length (Sunday-Saturday).
@item %b
Locale's abbreviated month name (Jan-Dec).
@item %B
Locale's full month name, variable length (January-December).
@item %c
Locale's date and time (Sat Nov 04 12:02:33 EST 1989).
@item %C
Century (00-99).
@item %d
Day of month (01-31).
@item %e
Day of month ( 1-31).
@item %D
Date (mm/dd/yy).
@item %h
Same as %b.
@item %j
Day of year (001-366).
@item %m
Month (01-12).
@item %U
Week number of year with Sunday as first day of week (00-53).
@item %w
Day of week (0-6).
@item %W
Week number of year with Monday as first day of week (00-53).
@item %x
Locale's date representation (mm/dd/yy).
@item %y
Last two digits of year (00-99).
@item %Y
Year (1970-).
@end table
@seealso{@ref{doc-strptime,,strptime}, @ref{doc-localtime,,localtime}, @ref{doc-gmtime,,gmtime}, @ref{doc-mktime,,mktime}, @ref{doc-time,,time}, @ref{doc-now,,now}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}, @ref{doc-datevec,,datevec}, @ref{doc-calendar,,calendar}, @ref{doc-weekday,,weekday}}
@end deftypefn
@c ./DLD-FUNCTIONS/time.cc
@anchor{doc-strptime}
@deftypefn {Loadable Function} {[@var{tm_struct}, @var{nchars}] =} strptime (@var{str}, @var{fmt})
Convert the string @var{str} to the time structure @var{tm_struct} under
the control of the format string @var{fmt}.
If @var{fmt} fails to match, @var{nchars} is 0; otherwise it is set to the
position of last matched character plus 1. Always check for this unless
you're absolutely sure the date string will be parsed correctly.
@seealso{@ref{doc-strftime,,strftime}, @ref{doc-localtime,,localtime}, @ref{doc-gmtime,,gmtime}, @ref{doc-mktime,,mktime}, @ref{doc-time,,time}, @ref{doc-now,,now}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}, @ref{doc-datevec,,datevec}, @ref{doc-calendar,,calendar}, @ref{doc-weekday,,weekday}}
@end deftypefn
Most of the remaining functions described in this section are not
patterned after the standard C library. Some are available for
compatibility with @sc{matlab} and others are provided because they are
useful.
@c ./time/clock.m
@anchor{doc-clock}
@deftypefn {Function File} {} clock ()
Return a vector containing the current year, month (1-12), day (1-31),
hour (0-23), minute (0-59) and second (0-61). For example,
@example
@group
clock ()
@result{} [ 1993, 8, 20, 4, 56, 1 ]
@end group
@end example
The function clock is more accurate on systems that have the
@code{gettimeofday} function.
@end deftypefn
@c ./time/date.m
@anchor{doc-date}
@deftypefn {Function File} {} date ()
Return the date as a character string in the form DD-MMM-YY. For
example,
@example
@group
date ()
@result{} "20-Aug-93"
@end group
@end example
@end deftypefn
@c ./time/etime.m
@anchor{doc-etime}
@deftypefn {Function File} {} etime (@var{t1}, @var{t2})
Return the difference (in seconds) between two time values returned from
@code{clock}. For example:
@example
@group
t0 = clock ();
many computations later@dots{}
elapsed_time = etime (clock (), t0);
@end group
@end example
@noindent
will set the variable @code{elapsed_time} to the number of seconds since
the variable @code{t0} was set.
@seealso{@ref{doc-tic,,tic}, @ref{doc-toc,,toc}, @ref{doc-clock,,clock}, @ref{doc-cputime,,cputime}}
@end deftypefn
@c data.cc
@anchor{doc-cputime}
@deftypefn {Built-in Function} {[@var{total}, @var{user}, @var{system}] =} cputime ();
Return the CPU time used by your Octave session. The first output is
the total time spent executing your process and is equal to the sum of
second and third outputs, which are the number of CPU seconds spent
executing in user mode and the number of CPU seconds spent executing in
system mode, respectively. If your system does not have a way to report
CPU time usage, @code{cputime} returns 0 for each of its output values.
Note that because Octave used some CPU time to start, it is reasonable
to check to see if @code{cputime} works by checking to see if the total
CPU time used is nonzero.
@end deftypefn
@c ./time/is_leap_year.m
@anchor{doc-is_leap_year}
@deftypefn {Function File} {} is_leap_year (@var{year})
Return 1 if the given year is a leap year and 0 otherwise. If no
arguments are provided, @code{is_leap_year} will use the current year.
For example,
@example
@group
is_leap_year (2000)
@result{} 1
@end group
@end example
@end deftypefn
@anchor{doc-toc}
@c data.cc
@anchor{doc-tic}
@deftypefn {Built-in Function} {} tic ()
@deftypefnx {Built-in Function} {} toc ()
Set or check a wall-clock timer. Calling @code{tic} without an
output argument sets the timer. Subsequent calls to @code{toc}
return the number of seconds since the timer was set. For example,
@example
@group
tic ();
# many computations later@dots{}
elapsed_time = toc ();
@end group
@end example
@noindent
will set the variable @code{elapsed_time} to the number of seconds since
the most recent call to the function @code{tic}.
If called with one output argument then this function returns a scalar
of type @code{uint64} and the wall-clock timer is not started.
@example
@group
t = tic; sleep (5); (double (tic ()) - double (t)) * 1e-6
@result{} 5
@end group
@end example
Nested timing with @code{tic} and @code{toc} is not supported.
Therefore @code{toc} will always return the elapsed time from the most
recent call to @code{tic}.
If you are more interested in the CPU time that your process used, you
should use the @code{cputime} function instead. The @code{tic} and
@code{toc} functions report the actual wall clock time that elapsed
between the calls. This may include time spent processing other jobs or
doing nothing at all. For example,
@example
@group
tic (); sleep (5); toc ()
@result{} 5
t = cputime (); sleep (5); cputime () - t
@result{} 0
@end group
@end example
@noindent
(This example also illustrates that the CPU timer may have a fairly
coarse resolution.)
@end deftypefn
@c sysdep.cc
@anchor{doc-pause}
@deftypefn {Built-in Function} {} pause (@var{seconds})
Suspend the execution of the program. If invoked without any arguments,
Octave waits until you type a character. With a numeric argument, it
pauses for the given number of seconds. For example, the following
statement prints a message and then waits 5 seconds before clearing the
screen.
@example
@group
fprintf (stderr, "wait please...\n");
pause (5);
clc;
@end group
@end example
@end deftypefn
@c sysdep.cc
@anchor{doc-sleep}
@deftypefn {Built-in Function} {} sleep (@var{seconds})
Suspend the execution of the program for the given number of seconds.
@end deftypefn
@c sysdep.cc
@anchor{doc-usleep}
@deftypefn {Built-in Function} {} usleep (@var{microseconds})
Suspend the execution of the program for the given number of
microseconds. On systems where it is not possible to sleep for periods
of time less than one second, @code{usleep} will pause the execution for
@code{round (@var{microseconds} / 1e6)} seconds.
@end deftypefn
@c ./time/datenum.m
@anchor{doc-datenum}
@deftypefn {Function File} {} datenum (@var{year}, @var{month}, @var{day})
@deftypefnx {Function File} {} datenum (@var{year}, @var{month}, @var{day}, @var{hour})
@deftypefnx {Function File} {} datenum (@var{year}, @var{month}, @var{day}, @var{hour}, @var{minute})
@deftypefnx {Function File} {} datenum (@var{year}, @var{month}, @var{day}, @var{hour}, @var{minute}, @var{second})
@deftypefnx {Function File} {} datenum (@code{"date"})
@deftypefnx {Function File} {} datenum (@code{"date"}, @var{p})
Returns the specified local time as a day number, with Jan 1, 0000
being day 1. By this reckoning, Jan 1, 1970 is day number 719529.
The fractional portion, @var{p}, corresponds to the portion of the
specified day.
Notes:
@itemize
@item
Years can be negative and/or fractional.
@item
Months below 1 are considered to be January.
@item
Days of the month start at 1.
@item
Days beyond the end of the month go into subsequent months.
@item
Days before the beginning of the month go to the previous month.
@item
Days can be fractional.
@end itemize
@strong{Warning:} this function does not attempt to handle Julian
calendars so dates before Octave 15, 1582 are wrong by as much
as eleven days. Also be aware that only Roman Catholic countries
adopted the calendar in 1582. It took until 1924 for it to be
adopted everywhere. See the Wikipedia entry on the Gregorian
calendar for more details.
@strong{Warning:} leap seconds are ignored. A table of leap seconds
is available on the Wikipedia entry for leap seconds.
@seealso{@ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-now,,now}, @ref{doc-datestr,,datestr}, @ref{doc-datevec,,datevec}, @ref{doc-calendar,,calendar}, @ref{doc-weekday,,weekday}}
@end deftypefn
@c ./time/datestr.m
@anchor{doc-datestr}
@deftypefn {Function File} {@var{str} =} datestr (@var{date}, [@var{f}, [@var{p}]])
Format the given date/time according to the format @code{f} and return
the result in @var{str}. @var{date} is a serial date number (see
@code{datenum}) or a date vector (see @code{datevec}). The value of
@var{date} may also be a string or cell array of strings.
@var{f} can be an integer which corresponds to one of the codes in
the table below, or a date format string.
@var{p} is the year at the start of the century in which two-digit years
are to be interpreted in. If not specified, it defaults to the current
year minus 50.
For example, the date 730736.65149 (2000-09-07 15:38:09.0934) would be
formatted as follows:
@multitable @columnfractions 0.1 0.45 0.35
@headitem Code @tab Format @tab Example
@item 0 @tab dd-mmm-yyyy HH:MM:SS @tab 07-Sep-2000 15:38:09
@item 1 @tab dd-mmm-yyyy @tab 07-Sep-2000
@item 2 @tab mm/dd/yy @tab 09/07/00
@item 3 @tab mmm @tab Sep
@item 4 @tab m @tab S
@item 5 @tab mm @tab 09
@item 6 @tab mm/dd @tab 09/07
@item 7 @tab dd @tab 07
@item 8 @tab ddd @tab Thu
@item 9 @tab d @tab T
@item 10 @tab yyyy @tab 2000
@item 11 @tab yy @tab 00
@item 12 @tab mmmyy @tab Sep00
@item 13 @tab HH:MM:SS @tab 15:38:09
@item 14 @tab HH:MM:SS PM @tab 03:38:09 PM
@item 15 @tab HH:MM @tab 15:38
@item 16 @tab HH:MM PM @tab 03:38 PM
@item 17 @tab QQ-YY @tab Q3-00
@item 18 @tab QQ @tab Q3
@item 19 @tab dd/mm @tab 13/03
@item 20 @tab dd/mm/yy @tab 13/03/95
@item 21 @tab mmm.dd.yyyy HH:MM:SS @tab Mar.03.1962 13:53:06
@item 22 @tab mmm.dd.yyyy @tab Mar.03.1962
@item 23 @tab mm/dd/yyyy @tab 03/13/1962
@item 24 @tab dd/mm/yyyy @tab 12/03/1962
@item 25 @tab yy/mm/dd @tab 95/03/13
@item 26 @tab yyyy/mm/dd @tab 1995/03/13
@item 27 @tab QQ-YYYY @tab Q4-2132
@item 28 @tab mmmyyyy @tab Mar2047
@item 29 @tab yyyymmdd @tab 20470313
@item 30 @tab yyyymmddTHHMMSS @tab 20470313T132603
@item 31 @tab yyyy-mm-dd HH:MM:SS @tab 1047-03-13 13:26:03
@end multitable
If @var{f} is a format string, the following symbols are recognized:
@multitable @columnfractions 0.1 0.7 0.2
@headitem Symbol @tab Meaning @tab Example
@item yyyy @tab Full year @tab 2005
@item yy @tab Two-digit year @tab 2005
@item mmmm @tab Full month name @tab December
@item mmm @tab Abbreviated month name @tab Dec
@item mm @tab Numeric month number (padded with zeros) @tab 01, 08, 12
@item m @tab First letter of month name (capitalized) @tab D
@item dddd @tab Full weekday name @tab Sunday
@item ddd @tab Abbreviated weekday name @tab Sun
@item dd @tab Numeric day of month (padded with zeros) @tab 11
@item d @tab First letter of weekday name (capitalized) @tab S
@item HH @tab Hour of day, padded with zeros if PM is set @tab 09:00
@item @tab and not padded with zeros otherwise @tab 9:00 AM
@item MM @tab Minute of hour (padded with zeros) @tab 10:05
@item SS @tab Second of minute (padded with zeros) @tab 10:05:03
@item PM @tab Use 12-hour time format @tab 11:30 PM
@end multitable
If @var{f} is not specified or is @code{-1}, then use 0, 1 or 16,
depending on whether the date portion or the time portion of
@var{date} is empty.
If @var{p} is nor specified, it defaults to the current year minus 50.
If a matrix or cell array of dates is given, a vector of date strings is
returned.
@seealso{@ref{doc-datenum,,datenum}, @ref{doc-datevec,,datevec}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-now,,now}, @ref{doc-datetick,,datetick}}
@end deftypefn
@c ./time/datevec.m
@anchor{doc-datevec}
@deftypefn {Function File} {@var{v} =} datevec (@var{date})
@deftypefnx {Function File} {@var{v} =} datevec (@var{date}, @var{f})
@deftypefnx {Function File} {@var{v} =} datevec (@var{date}, @var{p})
@deftypefnx {Function File} {@var{v} =} datevec (@var{date}, @var{f}, @var{p})
@deftypefnx {Function File} {[@var{y}, @var{m}, @var{d}, @var{h}, @var{mi}, @var{s}] =} datevec (@dots{})
Convert a serial date number (see @code{datenum}) or date string (see
@code{datestr}) into a date vector.
A date vector is a row vector with six members, representing the year,
month, day, hour, minute, and seconds respectively.
@var{f} is the format string used to interpret date strings
(see @code{datestr}).
@var{p} is the year at the start of the century in which two-digit years
are to be interpreted in. If not specified, it defaults to the current
year minus 50.
@seealso{@ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}, @ref{doc-date,,date}, @ref{doc-clock,,clock}, @ref{doc-now,,now}}
@end deftypefn
@c ./time/addtodate.m
@anchor{doc-addtodate}
@deftypefn {Function File} {@var{d} =} addtodate (@var{d}, @var{q}, @var{f})
Add @var{q} amount of time (with units @var{f}) to the datenum, @var{d}.
@var{f} must be one of "year", "month", "day", "hour", "minute", or
"second".
@seealso{@ref{doc-datenum,,datenum}, @ref{doc-datevec,,datevec}}
@end deftypefn
@c ./time/calendar.m
@anchor{doc-calendar}
@deftypefn {Function File} {} calendar (@dots{})
@deftypefnx {Function File} {@var{c} =} calendar ()
@deftypefnx {Function File} {@var{c} =} calendar (@var{d})
@deftypefnx {Function File} {@var{c} =} calendar (@var{y}, @var{m})
If called with no arguments, return the current monthly calendar in
a 6x7 matrix.
If @var{d} is specified, return the calendar for the month containing
the day @var{d}, which must be a serial date number or a date string.
If @var{y} and @var{m} are specified, return the calendar for year @var{y}
and month @var{m}.
If no output arguments are specified, print the calendar on the screen
instead of returning a matrix.
@seealso{@ref{doc-datenum,,datenum}}
@end deftypefn
@c ./time/weekday.m
@anchor{doc-weekday}
@deftypefn {Function File} {[@var{n}, @var{s}] =} weekday (@var{d}, [@var{form}])
Return the day of week as a number in @var{n} and a string in @var{s},
for example @code{[1, "Sun"]}, @code{[2, "Mon"]}, @dots{}, or
@code{[7, "Sat"]}.
@var{d} is a serial date number or a date string.
If the string @var{form} is given and is @code{"long"}, @var{s} will
contain the full name of the weekday; otherwise (or if @var{form} is
@code{"short"}), @var{s} will contain the abbreviated name of the weekday.
@seealso{@ref{doc-datenum,,datenum}, @ref{doc-datevec,,datevec}, @ref{doc-eomday,,eomday}}
@end deftypefn
@c ./time/eomday.m
@anchor{doc-eomday}
@deftypefn {Function File} {@var{e} =} eomday (@var{y}, @var{m})
Return the last day of the month @var{m} for the year @var{y}.
@seealso{@ref{doc-datenum,,datenum}, @ref{doc-datevec,,datevec}, @ref{doc-weekday,,weekday}}
@end deftypefn
@c ./time/datetick.m
@anchor{doc-datetick}
@deftypefn {Function File} {} datetick (@var{form})
@deftypefnx {Function File} {} datetick (@var{axis}, @var{form})
@deftypefnx {Function File} {} datetick (@dots{}, "keeplimits")
@deftypefnx {Function File} {} datetick (@dots{}, "keepticks")
@deftypefnx {Function File} {} datetick (@dots{ax}, @dots{})
Adds date formatted tick labels to an axis. The axis the apply the
ticks to is determined by @var{axis} that can take the values "x",
"y" or "z". The default value is "x". The formatting of the labels is
determined by the variable @var{form}, that can either be a string in
the format needed by @code{dateform}, or a positive integer that can
be accepted by @code{datestr}.
@seealso{@ref{doc-datenum,,datenum}, @ref{doc-datestr,,datestr}}
@end deftypefn
@node Filesystem Utilities
@section Filesystem Utilities
Octave includes the following functions for renaming and deleting files,
creating, deleting, and reading directories, and for getting information
about the status of files.
@c dirfns.cc
@anchor{doc-rename}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} rename (@var{old}, @var{new})
Change the name of file @var{old} to @var{new}.
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@seealso{@ref{doc-ls,,ls}, @ref{doc-dir,,dir}}
@end deftypefn
@c dirfns.cc
@anchor{doc-link}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} link (@var{old}, @var{new})
Create a new link (also known as a hard link) to an existing file.
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@seealso{@ref{doc-symlink,,symlink}}
@end deftypefn
@c dirfns.cc
@anchor{doc-symlink}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} symlink (@var{old}, @var{new})
Create a symbolic link @var{new} which contains the string @var{old}.
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@seealso{@ref{doc-link,,link}, @ref{doc-readlink,,readlink}}
@end deftypefn
@c dirfns.cc
@anchor{doc-readlink}
@deftypefn {Built-in Function} {[@var{result}, @var{err}, @var{msg}] =} readlink (@var{symlink})
Read the value of the symbolic link @var{symlink}.
If successful, @var{result} contains the contents of the symbolic link
@var{symlink}, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@seealso{@ref{doc-link,,link}, @ref{doc-symlink,,symlink}}
@end deftypefn
@c syscalls.cc
@anchor{doc-unlink}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} unlink (@var{file})
Delete the file named @var{file}.
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@end deftypefn
@c dirfns.cc
@anchor{doc-readdir}
@deftypefn {Built-in Function} {[@var{files}, @var{err}, @var{msg}] =} readdir (@var{dir})
Return names of the files in the directory @var{dir} as a cell array of
strings. If an error occurs, return an empty cell array in @var{files}.
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@seealso{@ref{doc-dir,,dir}, @ref{doc-glob,,glob}}
@end deftypefn
@c dirfns.cc
@anchor{doc-mkdir}
@deftypefn {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} mkdir (@var{dir})
@deftypefnx {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} mkdir (@var{parent}, @var{dir})
Create a directory named @var{dir} in the directory @var{parent}.
If successful, @var{status} is 1, with @var{msg} and @var{msgid} empty
character strings. Otherwise, @var{status} is 0, @var{msg} contains a
system-dependent error message, and @var{msgid} contains a unique
message identifier.
@seealso{@ref{doc-rmdir,,rmdir}}
@end deftypefn
@c dirfns.cc
@anchor{doc-rmdir}
@deftypefn {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} rmdir (@var{dir})
@deftypefnx {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} rmdir (@var{dir}, @code{"s"})
Remove the directory named @var{dir}.
If successful, @var{status} is 1, with @var{msg} and @var{msgid} empty
character strings. Otherwise, @var{status} is 0, @var{msg} contains a
system-dependent error message, and @var{msgid} contains a unique
message identifier.
If the optional second parameter is supplied with value @code{"s"},
recursively remove all subdirectories as well.
@seealso{@ref{doc-mkdir,,mkdir}, @ref{doc-confirm_recursive_rmdir,,confirm_recursive_rmdir}}
@end deftypefn
@c dirfns.cc
@anchor{doc-confirm_recursive_rmdir}
@deftypefn {Built-in Function} {@var{val} =} confirm_recursive_rmdir ()
@deftypefnx {Built-in Function} {@var{old_val} =} confirm_recursive_rmdir (@var{new_val})
Query or set the internal variable that controls whether Octave
will ask for confirmation before recursively removing a directory tree.
@end deftypefn
@c syscalls.cc
@anchor{doc-mkfifo}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} mkfifo (@var{name}, @var{mode})
Create a @var{fifo} special file named @var{name} with file mode @var{mode}
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@end deftypefn
@c file-io.cc
@anchor{doc-umask}
@deftypefn {Built-in Function} {} umask (@var{mask})
Set the permission mask for file creation. The parameter @var{mask}
is an integer, interpreted as an octal number. If successful,
returns the previous value of the mask (as an integer to be
interpreted as an octal number); otherwise an error message is printed.
@end deftypefn
@anchor{doc-lstat}
@c syscalls.cc
@anchor{doc-stat}
@deftypefn {Built-in Function} {[@var{info}, @var{err}, @var{msg}] =} stat (@var{file})
@deftypefnx {Built-in Function} {[@var{info}, @var{err}, @var{msg}] =} lstat (@var{file})
Return a structure @var{s} containing the following information about
@var{file}.
@table @code
@item dev
ID of device containing a directory entry for this file.
@item ino
File number of the file.
@item mode
File mode, as an integer. Use the functions @w{@code{S_ISREG}},
@w{@code{S_ISDIR}}, @w{@code{S_ISCHR}}, @w{@code{S_ISBLK}}, @w{@code{S_ISFIFO}},
@w{@code{S_ISLNK}}, or @w{@code{S_ISSOCK}} to extract information from this
value.
@item modestr
File mode, as a string of ten letters or dashes as would be returned by
@kbd{ls -l}.
@item nlink
Number of links.
@item uid
User ID of file's owner.
@item gid
Group ID of file's group.
@item rdev
ID of device for block or character special files.
@item size
Size in bytes.
@item atime
Time of last access in the same form as time values returned from
@code{time}. @xref{Timing Utilities}.
@item mtime
Time of last modification in the same form as time values returned from
@code{time}. @xref{Timing Utilities}.
@item ctime
Time of last file status change in the same form as time values
returned from @code{time}. @xref{Timing Utilities}.
@item blksize
Size of blocks in the file.
@item blocks
Number of blocks allocated for file.
@end table
If the call is successful @var{err} is 0 and @var{msg} is an empty
string. If the file does not exist, or some other error occurs, @var{s}
is an empty matrix, @var{err} is @minus{}1, and @var{msg} contains the
corresponding system error message.
If @var{file} is a symbolic link, @code{stat} will return information
about the actual file that is referenced by the link. Use @code{lstat}
if you want information about the symbolic link itself.
For example,
@example
[s, err, msg] = stat ("/vmlinuz")
@result{} s =
@{
atime = 855399756
rdev = 0
ctime = 847219094
uid = 0
size = 389218
blksize = 4096
mtime = 847219094
gid = 6
nlink = 1
blocks = 768
mode = -rw-r--r--
modestr = -rw-r--r--
ino = 9316
dev = 2049
@}
@result{} err = 0
@result{} msg =
@end example
@end deftypefn
@c syscalls.cc
@anchor{doc-fstat}
@deftypefn {Built-in Function} {[@var{info}, @var{err}, @var{msg}] =} fstat (@var{fid})
Return information about the open file @var{fid}. See @code{stat}
for a description of the contents of @var{info}.
@end deftypefn
@c ./miscellaneous/fileattrib.m
@anchor{doc-fileattrib}
@deftypefn {Function File} {[@var{status}, @var{msg}, @var{msgid}] =} fileattrib (@var{file})
Return information about @var{file}.
If successful, @var{status} is 1, with @var{result} containing a
structure with the following fields:
@table @code
@item Name
Full name of @var{file}.
@item archive
True if @var{file} is an archive (Windows).
@item system
True if @var{file} is a system file (Windows).
@item hidden
True if @var{file} is a hidden file (Windows).
@item directory
True if @var{file} is a directory.
@item UserRead
@itemx GroupRead
@itemx OtherRead
True if the user (group; other users) has read permission for
@var{file}.
@item UserWrite
@itemx GroupWrite
@itemx OtherWrite
True if the user (group; other users) has write permission for
@var{file}.
@item UserExecute
@itemx GroupExecute
@itemx OtherExecute
True if the user (group; other users) has execute permission for
@var{file}.
@end table
If an attribute does not apply (i.e., archive on a Unix system) then
the field is set to NaN.
With no input arguments, return information about the current
directory.
If @var{file} contains globbing characters, return information about
all the matching files.
@seealso{@ref{doc-glob,,glob}}
@end deftypefn
@c ./general/isdir.m
@anchor{doc-isdir}
@deftypefn {Function File} {} isdir (@var{f})
Return true if @var{f} is a directory.
@end deftypefn
@c dirfns.cc
@anchor{doc-glob}
@deftypefn {Built-in Function} {} glob (@var{pattern})
Given an array of strings (as a char array or a cell array) in
@var{pattern}, return a cell array of file names that match any of
them, or an empty cell array if no patterns match. Tilde expansion
is performed on each of the patterns before looking for matching file
names. For example,
@example
@group
glob ("/vm*")
@result{} "/vmlinuz"
@end group
@end example
@seealso{@ref{doc-dir,,dir}, @ref{doc-ls,,ls}, @ref{doc-stat,,stat}, @ref{doc-readdir,,readdir}}
@end deftypefn
@c dirfns.cc
@anchor{doc-fnmatch}
@deftypefn {Built-in Function} {} fnmatch (@var{pattern}, @var{string})
Return 1 or zero for each element of @var{string} that matches any of
the elements of the string array @var{pattern}, using the rules of
filename pattern matching. For example,
@example
@group
fnmatch ("a*b", @{"ab"; "axyzb"; "xyzab"@})
@result{} [ 1; 1; 0 ]
@end group
@end example
@end deftypefn
@c utils.cc
@anchor{doc-file_in_path}
@deftypefn {Built-in Function} {} file_in_path (@var{path}, @var{file})
@deftypefnx {Built-in Function} {} file_in_path (@var{path}, @var{file}, "all")
Return the absolute name of @var{file} if it can be found in
@var{path}. The value of @var{path} should be a colon-separated list of
directories in the format described for @code{path}. If no file
is found, return an empty matrix. For example,
@example
@group
file_in_path (EXEC_PATH, "sh")
@result{} "/bin/sh"
@end group
@end example
If the second argument is a cell array of strings, search each
directory of the path for element of the cell array and return
the first that matches.
If the third optional argument @code{"all"} is supplied, return
a cell array containing the list of all files that have the same
name in the path. If no files are found, return an empty cell array.
@seealso{@ref{doc-file_in_loadpath,,file_in_loadpath}}
@end deftypefn
@c sysdep.cc
@anchor{doc-tilde_expand}
@deftypefn {Built-in Function} {} tilde_expand (@var{string})
Performs tilde expansion on @var{string}. If @var{string} begins with a
tilde character, (@samp{~}), all of the characters preceding the first
slash (or all characters, if there is no slash) are treated as a
possible user name, and the tilde and the following characters up to the
slash are replaced by the home directory of the named user. If the
tilde is followed immediately by a slash, the tilde is replaced by the
home directory of the user running Octave. For example,
@example
@group
tilde_expand ("~joeuser/bin")
@result{} "/home/joeuser/bin"
tilde_expand ("~/bin")
@result{} "/home/jwe/bin"
@end group
@end example
@end deftypefn
@c syscalls.cc
@anchor{doc-canonicalize_file_name}
@deftypefn {Built-in Function} {[@var{cname}, @var{status}, @var{msg}]} canonicalize_file_name (@var{name})
Return the canonical name of file @var{name}.
@end deftypefn
@c ./miscellaneous/movefile.m
@anchor{doc-movefile}
@deftypefn {Function File} {[@var{status}, @var{msg}, @var{msgid}] =} movefile (@var{f1}, @var{f2})
Move the file @var{f1} to the new name @var{f2}. The name @var{f1}
may contain globbing patterns. If @var{f1} expands to multiple file
names, @var{f2} must be a directory.
If successful, @var{status} is 1, with @var{msg} and @var{msgid} empty\n\
character strings. Otherwise, @var{status} is 0, @var{msg} contains a\n\
system-dependent error message, and @var{msgid} contains a unique\n\
message identifier.\n\
@seealso{@ref{doc-glob,,glob}}
@end deftypefn
@c ./miscellaneous/copyfile.m
@anchor{doc-copyfile}
@deftypefn {Function File} {[@var{status}, @var{msg}, @var{msgid}] =} copyfile (@var{f1}, @var{f2}, @var{force})
Copy the file @var{f1} to the new name @var{f2}. The name @var{f1}
may contain globbing patterns. If @var{f1} expands to multiple file
names, @var{f2} must be a directory. If @var{force} is given and equals
the string "f" the copy operation will be forced.
If successful, @var{status} is 1, with @var{msg} and @var{msgid} empty\n\
character strings. Otherwise, @var{status} is 0, @var{msg} contains a\n\
system-dependent error message, and @var{msgid} contains a unique\n\
message identifier.\n\
@seealso{@ref{doc-glob,,glob}, @ref{doc-movefile,,movefile}}
@end deftypefn
@c ./miscellaneous/fileparts.m
@anchor{doc-fileparts}
@deftypefn {Function File} {[@var{dir}, @var{name}, @var{ext}, @var{ver}] =} fileparts (@var{filename})
Return the directory, name, extension, and version components of
@var{filename}.
@seealso{@ref{doc-fullfile,,fullfile}}
@end deftypefn
@c dirfns.cc
@anchor{doc-filesep}
@deftypefn {Built-in Function} {} filesep ()
@deftypefnx {Built-in Function} {} filesep ('all')
Return the system-dependent character used to separate directory names.
If 'all' is given, the function return all valid file separators in
the form of a string. The list of file separators is system-dependent.
It is / (forward slash) under UNIX or Mac OS X, / and \ (forward and
backward slashes) under Windows.
@seealso{@ref{doc-pathsep,,pathsep}, @ref{doc-dir,,dir}, @ref{doc-ls,,ls}}
@end deftypefn
@c input.cc
@anchor{doc-filemarker}
@deftypefn {Built-in Function} {} filemarker ()
Returns or sets the character used to separate filename from the
the subfunction names contained within the file. This can be used in
a generic manner to interact with subfunctions. For example
@example
help (["myfunc", filemarker, "mysubfunc"])
@end example
@noindent
returns the help string associated with the sub-function @code{mysubfunc}
of the function @code{myfunc}. Another use of @code{filemarker} is when
debugging it allows easier placement of breakpoints within sub-functions.
For example
@example
dbstop (["myfunc", filemarker, "mysubfunc"])
@end example
@noindent
will set a breakpoint at the first line of the subfunction @code{mysubfunc}.
@end deftypefn
@c ./miscellaneous/fullfile.m
@anchor{doc-fullfile}
@deftypefn {Function File} {@var{filename} =} fullfile (@var{dir1}, @var{dir2}, @dots{}, @var{file})
Return a complete filename constructed from the given components.
@seealso{@ref{doc-fileparts,,fileparts}}
@end deftypefn
@c ./miscellaneous/tempdir.m
@anchor{doc-tempdir}
@deftypefn {Function File} {@var{dir} =} tempdir ()
Return the name of the system's directory for temporary files.
@end deftypefn
@c ./miscellaneous/tempname.m
@anchor{doc-tempname}
@deftypefn {Function File} {filename =} tempname ()
This function is an alias for @code{tmpnam}.
@end deftypefn
@c file-io.cc
@anchor{doc-P_tmpdir}
@deftypefn {Built-in Function} {} P_tmpdir ()
Return the default name of the directory for temporary files on
this system. The name of this directory is system dependent.
@end deftypefn
@c utils.cc
@anchor{doc-is_absolute_filename}
@deftypefn {Built-in Function} {} is_absolute_filename (@var{file})
Return true if @var{file} is an absolute filename.
@end deftypefn
@c utils.cc
@anchor{doc-is_rooted_relative_filename}
@deftypefn {Built-in Function} {} is_rooted_relative_filename (@var{file})
Return true if @var{file} is a rooted-relative filename.
@end deftypefn
@c utils.cc
@anchor{doc-make_absolute_filename}
@deftypefn {Built-in Function} {} make_absolute_filename (@var{file})
Return the full name of @var{file}, relative to the current directory.
@end deftypefn
@node File Archiving Utilities
@section File Archiving Utilities
@c ./miscellaneous/bunzip2.m
@anchor{doc-bunzip2}
@deftypefn {Function File} {} bunzip2 (@var{bzfile}, @var{dir})
Unpack the bzip2 archive @var{bzfile} to the directory @var{dir}. If
@var{dir} is not specified, it defaults to the current directory.
@seealso{@ref{doc-unpack,,unpack}, @ref{doc-bzip2,,bzip2}, @ref{doc-tar,,tar}, @ref{doc-untar,,untar}, @ref{doc-gzip,,gzip}, @ref{doc-gunzip,,gunzip}, @ref{doc-zip,,zip}, @ref{doc-unzip,,unzip}}
@end deftypefn
@c ./miscellaneous/gzip.m
@anchor{doc-gzip}
@deftypefn {Function File} {@var{entries} =} gzip (@var{files})
@deftypefnx {Function File} {@var{entries} =} gzip (@var{files}, @var{outdir})
Compress the list of files and/or directories specified in @var{files}.
Each file is compressed separately and a new file with a '.gz' extension
is created. The original files are not touched. Existing compressed
files are silently overwritten. If @var{outdir} is defined the compressed
versions of the files are placed in this directory.
@seealso{@ref{doc-gunzip,,gunzip}, @ref{doc-bzip2,,bzip2}, @ref{doc-zip,,zip}, @ref{doc-tar,,tar}}
@end deftypefn
@c ./miscellaneous/gunzip.m
@anchor{doc-gunzip}
@deftypefn {Function File} {} gunzip (@var{gzfile}, @var{dir})
Unpack the gzip archive @var{gzfile} to the directory @var{dir}. If
@var{dir} is not specified, it defaults to the current directory. If
the @var{gzfile} is a directory, all files in the directory will be
recursively gunzipped.
@seealso{@ref{doc-unpack,,unpack}, @ref{doc-bunzip2,,bunzip2}, @ref{doc-tar,,tar}, @ref{doc-untar,,untar}, @ref{doc-gzip,,gzip}, @ref{doc-gunzip,,gunzip}, @ref{doc-zip,,zip}, @ref{doc-unzip,,unzip}}
@end deftypefn
@c ./miscellaneous/tar.m
@anchor{doc-tar}
@deftypefn {Function File} {@var{entries} =} tar (@var{tarfile}, @var{files}, @var{root})
Pack @var{files} @var{files} into the TAR archive @var{tarfile}. The
list of files must be a string or a cell array of strings.
The optional argument @var{root} changes the relative path of @var{files}
from the current directory.
If an output argument is requested the entries in the archive are
returned in a cell array.
@seealso{@ref{doc-untar,,untar}, @ref{doc-gzip,,gzip}, @ref{doc-gunzip,,gunzip}, @ref{doc-zip,,zip}, @ref{doc-unzip,,unzip}}
@end deftypefn
@c ./miscellaneous/untar.m
@anchor{doc-untar}
@deftypefn {Function File} {} untar (@var{tarfile}, @var{dir})
Unpack the TAR archive @var{tarfile} to the directory @var{dir}.
If @var{dir} is not specified, it defaults to the current directory.
@seealso{@ref{doc-unpack,,unpack}, @ref{doc-bunzip2,,bunzip2}, @ref{doc-tar,,tar}, @ref{doc-gzip,,gzip}, @ref{doc-gunzip,,gunzip}, @ref{doc-zip,,zip}, @ref{doc-unzip,,unzip}}
@end deftypefn
@c ./miscellaneous/zip.m
@anchor{doc-zip}
@deftypefn {Function File} {@var{entries} =} zip (@var{zipfile}, @var{files})
@deftypefnx {Function File} {@var{entries} =} zip (@var{zipfile}, @var{files}, @var{rootdir})
Compress the list of files and/or directories specified in @var{files}
into the archive @var{zipfiles} in the same directory. If @var{rootdir}
is defined the @var{files} is located relative to @var{rootdir} rather
than the current directory
@seealso{@ref{doc-unzip,,unzip}, @ref{doc-tar,,tar}}
@end deftypefn
@c ./miscellaneous/unzip.m
@anchor{doc-unzip}
@deftypefn {Function File} {} unzip (@var{zipfile}, @var{dir})
Unpack the ZIP archive @var{zipfile} to the directory @var{dir}.
If @var{dir} is not specified, it defaults to the current directory.
@seealso{@ref{doc-unpack,,unpack}, @ref{doc-bunzip2,,bunzip2}, @ref{doc-tar,,tar}, @ref{doc-untar,,untar}, @ref{doc-gzip,,gzip}, @ref{doc-gunzip,,gunzip}, @ref{doc-zip,,zip}}
@end deftypefn
@c ./miscellaneous/pack.m
@anchor{doc-pack}
@deftypefn {Function File} {} pack ()
This function is provided for compatibility with @sc{matlab}, but it
doesn't actually do anything.
@end deftypefn
@c ./miscellaneous/unpack.m
@anchor{doc-unpack}
@deftypefn {Function File} {@var{files} =} unpack (@var{file}, @var{dir})
@deftypefnx {Function File} {@var{files} =} unpack (@var{file}, @var{dir}, @var{filetype})
Unpack the archive @var{file} based on its extension to the directory
@var{dir}. If @var{file} is a cellstr, then all files will be
handled individually. If @var{dir} is not specified, it defaults to
the current directory. It returns a list of @var{files}
unpacked. If a directory is in the file list, then the
@var{filetype} to unpack must also be specified.
The @var{files} includes the entire path to the output files.
@seealso{@ref{doc-bunzip2,,bunzip2}, @ref{doc-tar,,tar}, @ref{doc-untar,,untar}, @ref{doc-gzip,,gzip}, @ref{doc-gunzip,,gunzip}, @ref{doc-zip,,zip}, @ref{doc-unzip,,unzip}}
@end deftypefn
@c ./miscellaneous/bzip2.m
@anchor{doc-bzip2}
@deftypefn {Function File} {@var{entries} =} bzip2 (@var{files})
@deftypefnx {Function File} {@var{entries} =} bzip2 (@var{files}, @var{outdir})
Compress the list of files specified in @var{files}.
Each file is compressed separately and a new file with a '.bz2' extension
is created. The original files are not touched. Existing compressed files
are silently overwritten.If @var{outdir} is defined the compressed versions
of the files are placed in this directory.
@seealso{@ref{doc-bunzip2,,bunzip2}, @ref{doc-gzip,,gzip}, @ref{doc-zip,,zip}, @ref{doc-tar,,tar}}
@end deftypefn
@node Networking Utilities
@section Networking Utilities
@c ./DLD-FUNCTIONS/urlwrite.cc
@anchor{doc-urlread}
@deftypefn {Loadable Function} {@var{s} =} urlread (@var{url})
@deftypefnx {Loadable Function} {[@var{s}, @var{success}] =} urlread (@var{url})
@deftypefnx {Loadable Function} {[@var{s}, @var{success}, @var{message}] =} urlread (@var{url})
@deftypefnx {Loadable Function} {[@dots{}] =} urlread (@var{url}, @var{method}, @var{param})
Download a remote file specified by its @var{URL} and return its content
in string @var{s}. For example,
@example
s = urlread ("ftp://ftp.octave.org/pub/octave/README");
@end example
The variable @var{success} is 1 if the download was successful,
otherwise it is 0 in which case @var{message} contains an error
message. If no output argument is specified and if an error occurs,
then the error is signaled through Octave's error handling mechanism.
This function uses libcurl. Curl supports, among others, the HTTP,
FTP and FILE protocols. Username and password may be specified in the
URL. For example,
@example
s = urlread ("http://user:password@@example.com/file.txt");
@end example
GET and POST requests can be specified by @var{method} and @var{param}.
The parameter @var{method} is either @samp{get} or @samp{post}
and @var{param} is a cell array of parameter and value pairs.
For example,
@example
@group
s = urlread ("http://www.google.com/search", "get",
@{"query", "octave"@});
@end group
@end example
@seealso{@ref{doc-urlwrite,,urlwrite}}
@end deftypefn
@c ./DLD-FUNCTIONS/urlwrite.cc
@anchor{doc-urlwrite}
@deftypefn {Loadable Function} {} urlwrite (@var{URL}, @var{localfile})
@deftypefnx {Loadable Function} {@var{f} =} urlwrite (@var{url}, @var{localfile})
@deftypefnx {Loadable Function} {[@var{f}, @var{success}] =} urlwrite (@var{url}, @var{localfile})
@deftypefnx {Loadable Function} {[@var{f}, @var{success}, @var{message}] =} urlwrite (@var{url}, @var{localfile})
Download a remote file specified by its @var{URL} and save it as
@var{localfile}. For example,
@example
@group
urlwrite ("ftp://ftp.octave.org/pub/octave/README",
"README.txt");
@end group
@end example
The full path of the downloaded file is returned in @var{f}. The
variable @var{success} is 1 if the download was successful,
otherwise it is 0 in which case @var{message} contains an error
message. If no output argument is specified and if an error occurs,
then the error is signaled through Octave's error handling mechanism.
This function uses libcurl. Curl supports, among others, the HTTP,
FTP and FILE protocols. Username and password may be specified in
the URL, for example:
@example
@group
urlwrite ("http://username:password@@example.com/file.txt",
"file.txt");
@end group
@end example
GET and POST requests can be specified by @var{method} and @var{param}.
The parameter @var{method} is either @samp{get} or @samp{post}
and @var{param} is a cell array of parameter and value pairs.
For example:
@example
@group
urlwrite ("http://www.google.com/search", "search.html",
"get", @{"query", "octave"@});
@end group
@end example
@seealso{@ref{doc-urlread,,urlread}}
@end deftypefn
@node Controlling Subprocesses
@section Controlling Subprocesses
Octave includes some high-level commands like @code{system} and
@code{popen} for starting subprocesses. If you want to run another
program to perform some task and then look at its output, you will
probably want to use these functions.
Octave also provides several very low-level Unix-like functions which
can also be used for starting subprocesses, but you should probably only
use them if you can't find any way to do what you need with the
higher-level functions.
@c toplev.cc
@anchor{doc-system}
@deftypefn {Built-in Function} {} system (@var{string}, @var{return_output}, @var{type})
Execute a shell command specified by @var{string}. The second
argument is optional. If @var{type} is @code{"async"}, the process
is started in the background and the process id of the child process
is returned immediately. Otherwise, the process is started, and
Octave waits until it exits. If the @var{type} argument is omitted, a
value of @code{"sync"} is assumed.
If two input arguments are given (the actual value of
@var{return_output} is irrelevant) and the subprocess is started
synchronously, or if @var{system} is called with one input argument and
one or more output arguments, the output from the command is returned.
Otherwise, if the subprocess is executed synchronously, its output is
sent to the standard output. To send the output of a command executed
with @var{system} through the pager, use a command like
@example
disp (system (cmd, 1));
@end example
@noindent
or
@example
printf ("%s\n", system (cmd, 1));
@end example
The @code{system} function can return two values. The first is the
exit status of the command and the second is any output from the
command that was written to the standard output stream. For example,
@example
[status, output] = system ("echo foo; exit 2");
@end example
@noindent
will set the variable @code{output} to the string @samp{foo}, and the
variable @code{status} to the integer @samp{2}.
@end deftypefn
@c ./miscellaneous/unix.m
@anchor{doc-unix}
@deftypefn {Function File} {[@var{status}, @var{text}]} unix (@var{command})
@deftypefnx {Function File} {[@var{status}, @var{text}]} unix (@var{command}, "-echo")
Execute a system command if running under a Unix-like operating
system, otherwise do nothing. Return the exit status of the program
in @var{status} and any output sent to the standard output in
@var{text}. If the optional second argument @code{"-echo"} is given,
then also send the output from the command to the standard output.
@seealso{@ref{doc-isunix,,isunix}, @ref{doc-ispc,,ispc}, @ref{doc-system,,system}}
@end deftypefn
@c ./miscellaneous/dos.m
@anchor{doc-dos}
@deftypefn {Function File} {[@var{status}, @var{text}] =} dos (@var{command})
@deftypefnx {Function File} {[@var{status}, @var{text}] =} dos (@var{command}, "-echo")
Execute a system command if running under a Windows-like operating
system, otherwise do nothing. Return the exit status of the program
in @var{status} and any output sent to the standard output in
@var{text}. If the optional second argument @code{"-echo"} is given,
then also send the output from the command to the standard output.
@seealso{@ref{doc-unix,,unix}, @ref{doc-isunix,,isunix}, @ref{doc-ispc,,ispc}, @ref{doc-system,,system}}
@end deftypefn
@c ./miscellaneous/perl.m
@anchor{doc-perl}
@deftypefn {Function File} {[@var{output}, @var{status}] =} perl (@var{scriptfile})
@deftypefnx {Function File} {[@var{output}, @var{status}] =} perl (@var{scriptfile}, @var{argument1}, @var{argument2}, @dots{})
Invoke perl script @var{scriptfile} with possibly a list of
command line arguments.
Returns output in @var{output} and status
in @var{status}.
@seealso{@ref{doc-system,,system}}
@end deftypefn
@c file-io.cc
@anchor{doc-popen}
@deftypefn {Built-in Function} {@var{fid} =} popen (@var{command}, @var{mode})
Start a process and create a pipe. The name of the command to run is
given by @var{command}. The file identifier corresponding to the input
or output stream of the process is returned in @var{fid}. The argument
@var{mode} may be
@table @code
@item "r"
The pipe will be connected to the standard output of the process, and
open for reading.
@item "w"
The pipe will be connected to the standard input of the process, and
open for writing.
@end table
For example,
@example
@group
fid = popen ("ls -ltr / | tail -3", "r");
while (ischar (s = fgets (fid)))
fputs (stdout, s);
endwhile
@print{} drwxr-xr-x 33 root root 3072 Feb 15 13:28 etc
@print{} drwxr-xr-x 3 root root 1024 Feb 15 13:28 lib
@print{} drwxrwxrwt 15 root root 2048 Feb 17 14:53 tmp
@end group
@end example
@end deftypefn
@c file-io.cc
@anchor{doc-pclose}
@deftypefn {Built-in Function} {} pclose (@var{fid})
Close a file identifier that was opened by @code{popen}. You may also
use @code{fclose} for the same purpose.
@end deftypefn
@c syscalls.cc
@anchor{doc-popen2}
@deftypefn {Built-in Function} {[@var{in}, @var{out}, @var{pid}] =} popen2 (@var{command}, @var{args})
Start a subprocess with two-way communication. The name of the process
is given by @var{command}, and @var{args} is an array of strings
containing options for the command. The file identifiers for the input
and output streams of the subprocess are returned in @var{in} and
@var{out}. If execution of the command is successful, @var{pid}
contains the process ID of the subprocess. Otherwise, @var{pid} is
@minus{}1.
For example,
@example
[in, out, pid] = popen2 ("sort", "-r");
fputs (in, "these\nare\nsome\nstrings\n");
fclose (in);
EAGAIN = errno ("EAGAIN");
done = false;
do
s = fgets (out);
if (ischar (s))
fputs (stdout, s);
elseif (errno () == EAGAIN)
sleep (0.1);
fclear (out);
else
done = true;
endif
until (done)
fclose (out);
waitpid (pid);
@print{} these
@print{} strings
@print{} some
@print{} are
@end example
Note that @code{popen2}, unlike @code{popen}, will not "reap" the
child process. If you don't use @code{waitpid} to check the child's
exit status, it will linger until Octave exits.
@end deftypefn
@c defaults.cc
@anchor{doc-EXEC_PATH}
@deftypefn {Built-in Function} {@var{val} =} EXEC_PATH ()
@deftypefnx {Built-in Function} {@var{old_val} =} EXEC_PATH (@var{new_val})
Query or set the internal variable that specifies a colon separated
list of directories to search when executing external programs.
Its initial value is taken from the environment variable
@w{@code{OCTAVE_EXEC_PATH}} (if it exists) or @code{PATH}, but that
value can be overridden by the command line argument
@code{--exec-path PATH}. At startup, an additional set of
directories (including the shell PATH) is appended to the path
specified in the environment or on the command line. If you use
the @w{@code{EXEC_PATH}} function to modify the path, you should take
care to preserve these additional directories.
@end deftypefn
In most cases, the following functions simply decode their arguments and
make the corresponding Unix system calls. For a complete example of how
they can be used, look at the definition of the function @code{popen2}.
@c syscalls.cc
@anchor{doc-fork}
@deftypefn {Built-in Function} {[@var{pid}, @var{msg}] =} fork ()
Create a copy of the current process.
Fork can return one of the following values:
@table @asis
@item > 0
You are in the parent process. The value returned from @code{fork} is
the process id of the child process. You should probably arrange to
wait for any child processes to exit.
@item 0
You are in the child process. You can call @code{exec} to start another
process. If that fails, you should probably call @code{exit}.
@item < 0
The call to @code{fork} failed for some reason. You must take evasive
action. A system dependent error message will be waiting in @var{msg}.
@end table
@end deftypefn
@c syscalls.cc
@anchor{doc-exec}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} exec (@var{file}, @var{args})
Replace current process with a new process. Calling @code{exec} without
first calling @code{fork} will terminate your current Octave process and
replace it with the program named by @var{file}. For example,
@example
exec ("ls" "-l")
@end example
@noindent
will run @code{ls} and return you to your shell prompt.
If successful, @code{exec} does not return. If @code{exec} does return,
@var{err} will be nonzero, and @var{msg} will contain a system-dependent
error message.
@end deftypefn
@c syscalls.cc
@anchor{doc-pipe}
@deftypefn {Built-in Function} {[@var{read_fd}, @var{write_fd}, @var{err}, @var{msg}] =} pipe ()
Create a pipe and return the reading and writing ends of the pipe
into @var{read_fd} and @var{write_fd} respectively.
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@end deftypefn
@c syscalls.cc
@anchor{doc-dup2}
@deftypefn {Built-in Function} {[@var{fid}, @var{msg}] =} dup2 (@var{old}, @var{new})
Duplicate a file descriptor.
If successful, @var{fid} is greater than zero and contains the new file
ID. Otherwise, @var{fid} is negative and @var{msg} contains a
system-dependent error message.
@end deftypefn
@c syscalls.cc
@anchor{doc-waitpid}
@deftypefn {Built-in Function} {[@var{pid}, @var{status}, @var{msg}] =} waitpid (@var{pid}, @var{options})
Wait for process @var{pid} to terminate. The @var{pid} argument can be:
@table @asis
@item @minus{}1
Wait for any child process.
@item 0
Wait for any child process whose process group ID is equal to that of
the Octave interpreter process.
@item > 0
Wait for termination of the child process with ID @var{pid}.
@end table
The @var{options} argument can be a bitwise OR of zero or more of
the following constants:
@table @code
@item 0
Wait until signal is received or a child process exits (this is the
default if the @var{options} argument is missing).
@item WNOHANG
Do not hang if status is not immediately available.
@item WUNTRACED
Report the status of any child processes that are stopped, and whose
status has not yet been reported since they stopped.
@item WCONTINUE
Return if a stopped child has been resumed by delivery of @code{SIGCONT}.
This value may not be meaningful on all systems.
@end table
If the returned value of @var{pid} is greater than 0, it is the process
ID of the child process that exited. If an error occurs, @var{pid} will
be less than zero and @var{msg} will contain a system-dependent error
message. The value of @var{status} contains additional system-dependent
information about the subprocess that exited.
@seealso{@ref{doc-WCONTINUE,,WCONTINUE}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WNOHANG,,WNOHANG}, @ref{doc-WSTOPSIG,,WSTOPSIG}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WUNTRACED,,WUNTRACED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WCONTINUE}
@deftypefn {Built-in Function} WCONINTUE ()
Return the numerical value of the option argument that may be
passed to @code{waitpid} to indicate that it should also return
if a stopped child has been resumed by delivery of a @code{SIGCONT}
signal.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WNOHANG,,WNOHANG}, @ref{doc-WUNTRACED,,WUNTRACED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WCOREDUMP}
@deftypefn {Built-in Function} {} WCOREDUMP (@var{status})
Given @var{status} from a call to @code{waitpid}, return true if the
child produced a core dump. This function should only be employed if
@code{WIFSIGNALED} returned true. The macro used to implement this
function is not specified in POSIX.1-2001 and is not available on some
Unix implementations (e.g., AIX, SunOS).
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WIFEXITED,,WIFEXITED}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WSTOPSIG,,WSTOPSIG}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WEXITSTATUS}
@deftypefn {Built-in Function} {} WEXITSTATUS (@var{status})
Given @var{status} from a call to @code{waitpid}, return the exit
status of the child. This function should only be employed if
@code{WIFEXITED} returned true.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WIFEXITED,,WIFEXITED}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WSTOPSIG,,WSTOPSIG}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WIFCONTINUED}
@deftypefn {Built-in Function} {} WIFCONTINUED (@var{status})
Given @var{status} from a call to @code{waitpid}, return true if the
child process was resumed by delivery of @code{SIGCONT}.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WIFEXITED,,WIFEXITED}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WSTOPSIG,,WSTOPSIG}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WIFSIGNALED}
@deftypefn {Built-in Function} {} WIFSIGNALED (@var{status})
Given @var{status} from a call to @code{waitpid}, return true if the
child process was terminated by a signal.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WIFEXITED,,WIFEXITED}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WSTOPSIG,,WSTOPSIG}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WIFSTOPPED}
@deftypefn {Built-in Function} {} WIFSTOPPED (@var{status})
Given @var{status} from a call to @code{waitpid}, return true if the
child process was stopped by delivery of a signal; this is only
possible if the call was done using @code{WUNTRACED} or when the child
is being traced (see ptrace(2)).
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WIFEXITED,,WIFEXITED}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WSTOPSIG,,WSTOPSIG}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WIFEXITED}
@deftypefn {Built-in Function} {} WIFEXITED (@var{status})
Given @var{status} from a call to @code{waitpid}, return true if the
child terminated normally.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WSTOPSIG,,WSTOPSIG}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WNOHANG}
@deftypefn {Built-in Function} {} WNOHANG ()
Return the numerical value of the option argument that may be
passed to @code{waitpid} to indicate that it should return its
status immediately instead of waiting for a process to exit.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WUNTRACED,,WUNTRACED}, @ref{doc-WCONTINUE,,WCONTINUE}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WSTOPSIG}
@deftypefn {Built-in Function} {} WSTOPSIG (@var{status})
Given @var{status} from a call to @code{waitpid}, return the number of
the signal which caused the child to stop. This function should only
be employed if @code{WIFSTOPPED} returned true.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WIFEXITED,,WIFEXITED}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WTERMSIG,,WTERMSIG}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WTERMSIG}
@deftypefn {Built-in Function} {} WTERMSIG (@var{status})
Given @var{status} from a call to @code{waitpid}, return the number of
the signal that caused the child process to terminate. This function
should only be employed if @code{WIFSIGNALED} returned true.
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WIFEXITED,,WIFEXITED}, @ref{doc-WEXITSTATUS,,WEXITSTATUS}, @ref{doc-WIFSIGNALED,,WIFSIGNALED}, @ref{doc-WCOREDUMP,,WCOREDUMP}, @ref{doc-WIFSTOPPED,,WIFSTOPPED}, @ref{doc-WSTOPSIG,,WSTOPSIG}, @ref{doc-WIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c syscalls.cc
@anchor{doc-WUNTRACED}
@deftypefn {Built-in Function} {} WUNTRACED ()
Return the numerical value of the option argument that may be
passed to @code{waitpid} to indicate that it should also return
if the child process has stopped but is not traced via the
@code{ptrace} system call
@seealso{@ref{doc-waitpid,,waitpid}, @ref{doc-WNOHANG,,WNOHANG}, @ref{doc-WCONTINUE,,WCONTINUE}}
@end deftypefn
@c syscalls.cc
@anchor{doc-fcntl}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} fcntl (@var{fid}, @var{request}, @var{arg})
Change the properties of the open file @var{fid}. The following values
may be passed as @var{request}:
@vtable @code
@item F_DUPFD
Return a duplicate file descriptor.
@item F_GETFD
Return the file descriptor flags for @var{fid}.
@item F_SETFD
Set the file descriptor flags for @var{fid}.
@item F_GETFL
Return the file status flags for @var{fid}. The following codes may be
returned (some of the flags may be undefined on some systems).
@vtable @code
@item O_RDONLY
Open for reading only.
@item O_WRONLY
Open for writing only.
@item O_RDWR
Open for reading and writing.
@item O_APPEND
Append on each write.
@item O_CREAT
Create the file if it does not exist.
@item O_NONBLOCK
Nonblocking mode.
@item O_SYNC
Wait for writes to complete.
@item O_ASYNC
Asynchronous I/O.
@end vtable
@item F_SETFL
Set the file status flags for @var{fid} to the value specified by
@var{arg}. The only flags that can be changed are @w{@code{O_APPEND}} and
@w{@code{O_NONBLOCK}}.
@end vtable
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@end deftypefn
@c syscalls.cc
@anchor{doc-kill}
@deftypefn {Built-in Function} {[@var{err}, @var{msg}] =} kill (@var{pid}, @var{sig})
Send signal @var{sig} to process @var{pid}.
If @var{pid} is positive, then signal @var{sig} is sent to @var{pid}.
If @var{pid} is 0, then signal @var{sig} is sent to every process
in the process group of the current process.
If @var{pid} is -1, then signal @var{sig} is sent to every process
except process 1.
If @var{pid} is less than -1, then signal @var{sig} is sent to every
process in the process group @var{-pid}.
If @var{sig} is 0, then no signal is sent, but error checking is still
performed.
Return 0 if successful, otherwise return -1.
@end deftypefn
@c sighandlers.cc
@anchor{doc-SIG}
@deftypefn {Built-in Function} {} SIG ()
Return a structure containing Unix signal names and their defined values.
@end deftypefn
@node Process ID Information
@section Process, Group, and User IDs
@c syscalls.cc
@anchor{doc-getpgrp}
@deftypefn {Built-in Function} {pgid =} getpgrp ()
Return the process group id of the current process.
@end deftypefn
@c syscalls.cc
@anchor{doc-getpid}
@deftypefn {Built-in Function} {pid =} getpid ()
Return the process id of the current process.
@end deftypefn
@c syscalls.cc
@anchor{doc-getppid}
@deftypefn {Built-in Function} {pid =} getppid ()
Return the process id of the parent process.
@end deftypefn
@c syscalls.cc
@anchor{doc-geteuid}
@deftypefn {Built-in Function} {euid =} geteuid ()
Return the effective user id of the current process.
@end deftypefn
@c syscalls.cc
@anchor{doc-getuid}
@deftypefn {Built-in Function} {uid =} getuid ()
Return the real user id of the current process.
@end deftypefn
@c syscalls.cc
@anchor{doc-getegid}
@deftypefn {Built-in Function} {egid =} getegid ()
Return the effective group id of the current process.
@end deftypefn
@c syscalls.cc
@anchor{doc-getgid}
@deftypefn {Built-in Function} {gid =} getgid ()
Return the real group id of the current process.
@end deftypefn
@node Environment Variables
@section Environment Variables
@c sysdep.cc
@anchor{doc-getenv}
@deftypefn {Built-in Function} {} getenv (@var{var})
Return the value of the environment variable @var{var}. For example,
@example
getenv ("PATH")
@end example
@noindent
returns a string containing the value of your path.
@end deftypefn
@c sysdep.cc
@anchor{doc-putenv}
@deftypefn {Built-in Function} {} putenv (@var{var}, @var{value})
@deftypefnx {Built-in Function} {} setenv (@var{var}, @var{value})
Set the value of the environment variable @var{var} to @var{value}.
@end deftypefn
@node Current Working Directory
@section Current Working Directory
@c dirfns.cc
@anchor{doc-cd}
@deffn {Command} cd dir
@deffnx {Command} chdir dir
Change the current working directory to @var{dir}. If @var{dir} is
omitted, the current directory is changed to the user's home
directory. For example,
@example
cd ~/octave
@end example
@noindent
Changes the current working directory to @file{~/octave}. If the
directory does not exist, an error message is printed and the working
directory is not changed.
@seealso{@ref{doc-mkdir,,mkdir}, @ref{doc-rmdir,,rmdir}, @ref{doc-dir,,dir}}
@end deffn
@c ./miscellaneous/ls.m
@anchor{doc-ls}
@deffn {Command} ls options
List directory contents. For example,
@example
@group
ls -l
@print{} total 12
@print{} -rw-r--r-- 1 jwe users 4488 Aug 19 04:02 foo.m
@print{} -rw-r--r-- 1 jwe users 1315 Aug 17 23:14 bar.m
@end group
@end example
The @code{dir} and @code{ls} commands are implemented by calling your
system's directory listing command, so the available options may vary
from system to system.
@seealso{@ref{doc-dir,,dir}, @ref{doc-stat,,stat}, @ref{doc-readdir,,readdir}, @ref{doc-glob,,glob}, @ref{doc-filesep,,filesep}, @ref{doc-ls_command,,ls_command}}
@end deffn
@c ./miscellaneous/ls_command.m
@anchor{doc-ls_command}
@deftypefn {Function File} {[@var{old_cmd} =} ls_command (@var{cmd})
Set or return the shell command used by Octave's @code{ls} command.
The value of @var{cmd} must be a character string.
With no arguments, simply return the previous value.
@seealso{@ref{doc-ls,,ls}}
@end deftypefn
@c ./miscellaneous/dir.m
@anchor{doc-dir}
@deftypefn {Function File} {} dir (@var{directory})
@deftypefnx {Function File} {[@var{list}] =} dir (@var{directory})
Display file listing for directory @var{directory}. If a return
value is requested, return a structure array with the fields
@example
@group
name
bytes
date
isdir
statinfo
@end group
@end example
@noindent
in which @code{statinfo} is the structure returned from @code{stat}.
If @var{directory} is not a directory, return information about the
named @var{filename}. @var{directory} may be a list of directories
specified either by name or with wildcard characters (like * and ?)
which will be expanded with glob.
Note that for symbolic links, @code{dir} returns information about
the file that a symbolic link points to instead of the link itself.
However, if the link points to a nonexistent file, @code{dir} returns
information about the link.
@seealso{@ref{doc-ls,,ls}, @ref{doc-stat,,stat}, @ref{doc-lstat,,lstat}, @ref{doc-readdir,,readdir}, @ref{doc-glob,,glob}, @ref{doc-filesep,,filesep}}
@end deftypefn
@c dirfns.cc
@anchor{doc-pwd}
@deftypefn {Built-in Function} {} pwd ()
Return the current working directory.
@seealso{@ref{doc-dir,,dir}, @ref{doc-ls,,ls}}
@end deftypefn
@node Password Database Functions
@section Password Database Functions
Octave's password database functions return information in a structure
with the following fields.
@table @code
@item name
The user name.
@item passwd
The encrypted password, if available.
@item uid
The numeric user id.
@item gid
The numeric group id.
@item gecos
The GECOS field.
@item dir
The home directory.
@item shell
The initial shell.
@end table
In the descriptions of the following functions, this data structure is
referred to as a @var{pw_struct}.
@c ./DLD-FUNCTIONS/getpwent.cc
@anchor{doc-getpwent}
@deftypefn {Loadable Function} {@var{pw_struct} =} getpwent ()
Return a structure containing an entry from the password database,
opening it if necessary. Once the end of the data has been reached,
@code{getpwent} returns 0.
@end deftypefn
@c ./DLD-FUNCTIONS/getpwent.cc
@anchor{doc-getpwuid}
@deftypefn {Loadable Function} {@var{pw_struct} =} getpwuid (@var{uid}).
Return a structure containing the first entry from the password database
with the user ID @var{uid}. If the user ID does not exist in the
database, @code{getpwuid} returns 0.
@end deftypefn
@c ./DLD-FUNCTIONS/getpwent.cc
@anchor{doc-getpwnam}
@deftypefn {Loadable Function} {@var{pw_struct} =} getpwnam (@var{name})
Return a structure containing the first entry from the password database
with the user name @var{name}. If the user name does not exist in the
database, @code{getpwname} returns 0.
@end deftypefn
@c ./DLD-FUNCTIONS/getpwent.cc
@anchor{doc-setpwent}
@deftypefn {Loadable Function} {} setpwent ()
Return the internal pointer to the beginning of the password database.
@end deftypefn
@c ./DLD-FUNCTIONS/getpwent.cc
@anchor{doc-endpwent}
@deftypefn {Loadable Function} {} endpwent ()
Close the password database.
@end deftypefn
@node Group Database Functions
@section Group Database Functions
Octave's group database functions return information in a structure
with the following fields.
@table @code
@item name
The user name.
@item passwd
The encrypted password, if available.
@item gid
The numeric group id.
@item mem
The members of the group.
@end table
In the descriptions of the following functions, this data structure is
referred to as a @var{grp_struct}.
@c ./DLD-FUNCTIONS/getgrent.cc
@anchor{doc-getgrent}
@deftypefn {Loadable Function} {@var{grp_struct} =} getgrent ()
Return an entry from the group database, opening it if necessary.
Once the end of the data has been reached, @code{getgrent} returns 0.
@end deftypefn
@c ./DLD-FUNCTIONS/getgrent.cc
@anchor{doc-getgrgid}
@deftypefn {Loadable Function} {@var{grp_struct} =} getgrgid (@var{gid}).
Return the first entry from the group database with the group ID
@var{gid}. If the group ID does not exist in the database,
@code{getgrgid} returns 0.
@end deftypefn
@c ./DLD-FUNCTIONS/getgrent.cc
@anchor{doc-getgrnam}
@deftypefn {Loadable Function} {@var{grp_struct} =} getgrnam (@var{name})
Return the first entry from the group database with the group name
@var{name}. If the group name does not exist in the database,
@code{getgrnam} returns 0.
@end deftypefn
@c ./DLD-FUNCTIONS/getgrent.cc
@anchor{doc-setgrent}
@deftypefn {Loadable Function} {} setgrent ()
Return the internal pointer to the beginning of the group database.
@end deftypefn
@c ./DLD-FUNCTIONS/getgrent.cc
@anchor{doc-endgrent}
@deftypefn {Loadable Function} {} endgrent ()
Close the group database.
@end deftypefn
@node System Information
@section System Information
@c ./miscellaneous/computer.m
@anchor{doc-computer}
@deftypefn {Function File} {[@var{c}, @var{maxsize}, @var{endian}] =} computer ()
Print or return a string of the form @var{cpu}-@var{vendor}-@var{os}
that identifies the kind of computer Octave is running on. If invoked
with an output argument, the value is returned instead of printed. For
example,
@example
@group
computer ()
@print{} i586-pc-linux-gnu
x = computer ()
@result{} x = "i586-pc-linux-gnu"
@end group
@end example
If two output arguments are requested, also return the maximum number
of elements for an array.
If three output arguments are requested, also return the byte order
of the current system as a character (@code{"B"} for big-endian or
@code{"L"} for little-endian).
@end deftypefn
@c syscalls.cc
@anchor{doc-uname}
@deftypefn {Built-in Function} {[@var{uts}, @var{err}, @var{msg}] =} uname ()
Return system information in the structure. For example,
@example
@group
uname ()
@result{} @{
sysname = x86_64
nodename = segfault
release = 2.6.15-1-amd64-k8-smp
version = Linux
machine = #2 SMP Thu Feb 23 04:57:49 UTC 2006
@}
@end group
@end example
If successful, @var{err} is 0 and @var{msg} is an empty string.
Otherwise, @var{err} is nonzero and @var{msg} contains a
system-dependent error message.
@end deftypefn
@c ./miscellaneous/ispc.m
@anchor{doc-ispc}
@deftypefn {Function File} {} ispc ()
Return 1 if Octave is running on a Windows system and 0 otherwise.
@seealso{@ref{doc-ismac,,ismac}, @ref{doc-isunix,,isunix}}
@end deftypefn
@c ./miscellaneous/isunix.m
@anchor{doc-isunix}
@deftypefn {Function File} {} isunix ()
Return 1 if Octave is running on a Unix-like system and 0 otherwise.
@seealso{@ref{doc-ismac,,ismac}, @ref{doc-ispc,,ispc}}
@end deftypefn
@c ./miscellaneous/ismac.m
@anchor{doc-ismac}
@deftypefn {Function File} {} ismac ()
Return 1 if Octave is running on a Mac OS X system and 0 otherwise.
@seealso{@ref{doc-ispc,,ispc}, @ref{doc-isunix,,isunix}}
@end deftypefn
@c sysdep.cc
@anchor{doc-isieee}
@deftypefn {Built-in Function} {} isieee ()
Return 1 if your computer claims to conform to the IEEE standard for
floating point calculations.
@end deftypefn
@c defaults.cc
@anchor{doc-OCTAVE_HOME}
@deftypefn {Built-in Function} {} OCTAVE_HOME ()
Return the name of the top-level Octave installation directory.
@end deftypefn
@c defaults.cc
@anchor{doc-OCTAVE_VERSION}
@deftypefn {Built-in Function} {} OCTAVE_VERSION ()
Return the version number of Octave, as a string.
@end deftypefn
@c ./miscellaneous/license.m
@anchor{doc-license}
@deftypefn {Function File} {} license
Display the license of Octave.
@deftypefnx {Function File} {} license ("inuse")
Display a list of packages currently being used.
@deftypefnx {Function File} {@var{retval} =} license ("inuse")
Return a structure containing the fields @code{feature} and @code{user}.
@deftypefnx {Function File} {@var{retval} =} license ("test", @var{feature})
Return 1 if a license exists for the product identified by the string
@var{feature} and 0 otherwise. The argument @var{feature} is case
insensitive and only the first 27 characters are checked.
@deftypefnx {Function File} {} license ("test", @var{feature}, @var{toggle})
Enable or disable license testing for @var{feature}, depending on
@var{toggle}, which may be one of:
@table @samp
@item "enable"
Future tests for the specified license of @var{feature} are conducted
as usual.
@item "disable"
Future tests for the specified license of @var{feature} return 0.
@end table
@deftypefnx {Function File} {@var{retval} =} license ("checkout", @var{feature})
Check out a license for @var{feature}, returning 1 on success and 0
on failure.
This function is provided for compatibility with @sc{matlab}.
@seealso{@ref{doc-ver,,ver}, @ref{doc-version,,version}}
@end deftypefn
@c ./miscellaneous/version.m
@anchor{doc-version}
@deftypefn {Function File} {} version ()
Return Octave's version number as a string. This is also the value of
the built-in variable @w{@code{OCTAVE_VERSION}}.
@end deftypefn
@c ./miscellaneous/ver.m
@anchor{doc-ver}
@deftypefn {Function File} {} ver ()
Display a header containing the current Octave version
number, license string and operating system, followed by
the installed package names, versions, and installation
directories.
@deftypefnx {Function File} {v =} ver ()
Return a vector of structures, respecting Octave and each installed package.
The structure includes the following fields.
@table @code
@item Name
Package name.
@item Version
Version of the package.
@item Revision
Revision of the package.
@item Date
Date respecting the version/revision.
@end table
@deftypefnx {Function File} {v =} ver (@code{"Octave"})
Return version information for Octave only..
@deftypefnx {Function File} {v =} ver (@var{pkg})
Return version information for the specified package @var{pkg}.
@seealso{@ref{doc-license,,license}, @ref{doc-version,,version}}
@end deftypefn
@c toplev.cc
@anchor{doc-octave_config_info}
@deftypefn {Built-in Function} {} octave_config_info (@var{option})
Return a structure containing configuration and installation
information for Octave.
if @var{option} is a string, return the configuration information for the
specified option.
@end deftypefn
@c ./DLD-FUNCTIONS/getrusage.cc
@anchor{doc-getrusage}
@deftypefn {Loadable Function} {} getrusage ()
Return a structure containing a number of statistics about the current
Octave process. Not all fields are available on all systems. If it is
not possible to get CPU time statistics, the CPU time slots are set to
zero. Other missing data are replaced by NaN. Here is a list of all
the possible fields that can be present in the structure returned by
@code{getrusage}:
@table @code
@item idrss
Unshared data size.
@item inblock
Number of block input operations.
@item isrss
Unshared stack size.
@item ixrss
Shared memory size.
@item majflt
Number of major page faults.
@item maxrss
Maximum data size.
@item minflt
Number of minor page faults.
@item msgrcv
Number of messages received.
@item msgsnd
Number of messages sent.
@item nivcsw
Number of involuntary context switches.
@item nsignals
Number of signals received.
@item nswap
Number of swaps.
@item nvcsw
Number of voluntary context switches.
@item oublock
Number of block output operations.
@item stime
A structure containing the system CPU time used. The structure has the
elements @code{sec} (seconds) @code{usec} (microseconds).
@item utime
A structure containing the user CPU time used. The structure has the
elements @code{sec} (seconds) @code{usec} (microseconds).
@end table
@end deftypefn
@node Hashing Functions
@section Hashing Functions
It is often necessary to find if two strings or files are
identical. This might be done by comparing them character by character
and looking for differences. However, this can be slow, and so comparing
a hash of the string or file can be a rapid way of finding if the files
differ.
Another use of the hashing function is to check for file integrity. The
user can check the hash of the file against a known value and find if
the file they have is the same as the one that the original hash was
produced with.
Octave supplies the @code{md5sum} function to perform MD5 hashes on
strings and files. An example of the use of @code{md5sum} function might
be
@example
@group
if exist (file, "file")
hash = md5sum (file);
else
# Treat the variable "file" as a string
hash = md5sum (file, true);
endif
@end group
@end example
@c ./DLD-FUNCTIONS/md5sum.cc
@anchor{doc-md5sum}
@deftypefn {Loadable Function} {} md5sum (@var{file})
@deftypefnx {Loadable Function} {} md5sum (@var{str}, @var{opt})
Calculates the MD5 sum of the file @var{file}. If the second parameter
@var{opt} exists and is true, then calculate the MD5 sum of the
string @var{str}.
@end deftypefn
|