1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265
|
@c DO NOT EDIT! Generated automatically by munge-texi.pl.
@c Copyright (C) 1996-2013 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-60). This number can be 60 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 time libinterp/corefcn/time.cc
@anchor{XREFtime}
@deftypefn {Built-in Function} {@var{seconds} =} 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{XREFstrftime,,strftime}, @ref{XREFstrptime,,strptime}, @ref{XREFlocaltime,,localtime}, @ref{XREFgmtime,,gmtime}, @ref{XREFmktime,,mktime}, @ref{XREFnow,,now}, @ref{XREFdate,,date}, @ref{XREFclock,,clock}, @ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}, @ref{XREFdatevec,,datevec}, @ref{XREFcalendar,,calendar}, @ref{XREFweekday,,weekday}}
@end deftypefn
@c now scripts/time/now.m
@anchor{XREFnow}
@deftypefn {Function File} {t =} now ()
Return the current local date/time as a serial day number
(see @code{datenum}).
The integral part, @code{floor (now)} corresponds to the number of days
between today and Jan 1, 0000.
The fractional part, @code{rem (now, 1)} corresponds to the current
time.
@seealso{@ref{XREFclock,,clock}, @ref{XREFdate,,date}, @ref{XREFdatenum,,datenum}}
@end deftypefn
@c ctime scripts/time/ctime.m
@anchor{XREFctime}
@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"
@end group
@end example
@seealso{@ref{XREFasctime,,asctime}, @ref{XREFtime,,time}, @ref{XREFlocaltime,,localtime}}
@end deftypefn
@c gmtime libinterp/corefcn/time.cc
@anchor{XREFgmtime}
@deftypefn {Built-in Function} {@var{tm_struct} =} gmtime (@var{t})
Given a value returned from @code{time}, or any non-negative integer,
return a time structure corresponding to CUT (Coordinated Universal Time).
For example:
@example
@group
gmtime (time ())
@result{} @{
usec = 0
sec = 6
min = 15
hour = 7
mday = 17
mon = 1
year = 97
wday = 1
yday = 47
isdst = 0
zone = CST
@}
@end group
@end example
@seealso{@ref{XREFstrftime,,strftime}, @ref{XREFstrptime,,strptime}, @ref{XREFlocaltime,,localtime}, @ref{XREFmktime,,mktime}, @ref{XREFtime,,time}, @ref{XREFnow,,now}, @ref{XREFdate,,date}, @ref{XREFclock,,clock}, @ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}, @ref{XREFdatevec,,datevec}, @ref{XREFcalendar,,calendar}, @ref{XREFweekday,,weekday}}
@end deftypefn
@c localtime libinterp/corefcn/time.cc
@anchor{XREFlocaltime}
@deftypefn {Built-in Function} {@var{tm_struct} =} localtime (@var{t})
Given a value returned from @code{time}, or any non-negative integer,
return a time structure corresponding to the local time zone.
@example
@group
localtime (time ())
@result{} @{
usec = 0
sec = 6
min = 15
hour = 1
mday = 17
mon = 1
year = 97
wday = 1
yday = 47
isdst = 0
zone = CST
@}
@end group
@end example
@seealso{@ref{XREFstrftime,,strftime}, @ref{XREFstrptime,,strptime}, @ref{XREFgmtime,,gmtime}, @ref{XREFmktime,,mktime}, @ref{XREFtime,,time}, @ref{XREFnow,,now}, @ref{XREFdate,,date}, @ref{XREFclock,,clock}, @ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}, @ref{XREFdatevec,,datevec}, @ref{XREFcalendar,,calendar}, @ref{XREFweekday,,weekday}}
@end deftypefn
@c mktime libinterp/corefcn/time.cc
@anchor{XREFmktime}
@deftypefn {Built-in Function} {@var{seconds} =} 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{XREFstrftime,,strftime}, @ref{XREFstrptime,,strptime}, @ref{XREFlocaltime,,localtime}, @ref{XREFgmtime,,gmtime}, @ref{XREFtime,,time}, @ref{XREFnow,,now}, @ref{XREFdate,,date}, @ref{XREFclock,,clock}, @ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}, @ref{XREFdatevec,,datevec}, @ref{XREFcalendar,,calendar}, @ref{XREFweekday,,weekday}}
@end deftypefn
@c asctime scripts/time/asctime.m
@anchor{XREFasctime}
@deftypefn {Function File} {} asctime (@var{tm_struct})
Convert a time structure to a string using the following
format: @qcode{"ddd mmm mm HH:MM:SS yyyy"}. For example:
@example
@group
asctime (localtime (time ()))
@result{} "Mon Feb 17 01:15:06 1997"
@end group
@end example
This is equivalent to @code{ctime (time ())}.
@seealso{@ref{XREFctime,,ctime}, @ref{XREFlocaltime,,localtime}, @ref{XREFtime,,time}}
@end deftypefn
@c strftime libinterp/corefcn/time.cc
@anchor{XREFstrftime}
@deftypefn {Built-in 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{XREFstrptime,,strptime}, @ref{XREFlocaltime,,localtime}, @ref{XREFgmtime,,gmtime}, @ref{XREFmktime,,mktime}, @ref{XREFtime,,time}, @ref{XREFnow,,now}, @ref{XREFdate,,date}, @ref{XREFclock,,clock}, @ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}, @ref{XREFdatevec,,datevec}, @ref{XREFcalendar,,calendar}, @ref{XREFweekday,,weekday}}
@end deftypefn
@c strptime libinterp/corefcn/time.cc
@anchor{XREFstrptime}
@deftypefn {Built-in 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{XREFstrftime,,strftime}, @ref{XREFlocaltime,,localtime}, @ref{XREFgmtime,,gmtime}, @ref{XREFmktime,,mktime}, @ref{XREFtime,,time}, @ref{XREFnow,,now}, @ref{XREFdate,,date}, @ref{XREFclock,,clock}, @ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}, @ref{XREFdatevec,,datevec}, @ref{XREFcalendar,,calendar}, @ref{XREFweekday,,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 clock scripts/time/clock.m
@anchor{XREFclock}
@deftypefn {Function File} {} clock ()
Return the current local date and time as a date vector. The date vector
contains the following fields: current year, month (1-12), day (1-31),
hour (0-23), minute (0-59), and second (0-61). The seconds field has
a fractional part after the decimal point for extended accuracy.
For example:
@example
@group
fix (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.
@seealso{@ref{XREFnow,,now}, @ref{XREFdate,,date}, @ref{XREFdatevec,,datevec}}
@end deftypefn
@c date scripts/time/date.m
@anchor{XREFdate}
@deftypefn {Function File} {} date ()
Return the current date as a character string in the form DD-MMM-YYYY@.
For example:
@example
@group
date ()
@result{} "20-Aug-1993"
@end group
@end example
@seealso{@ref{XREFnow,,now}, @ref{XREFclock,,clock}, @ref{XREFdatestr,,datestr}, @ref{XREFlocaltime,,localtime}}
@end deftypefn
@c etime scripts/time/etime.m
@anchor{XREFetime}
@deftypefn {Function File} {} etime (@var{t2}, @var{t1})
Return the difference in seconds between two time values returned from
@code{clock} (@math{@var{t2} - @var{t1}}). 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{XREFtic,,tic}, @ref{XREFtoc,,toc}, @ref{XREFclock,,clock}, @ref{XREFcputime,,cputime}, @ref{XREFaddtodate,,addtodate}}
@end deftypefn
@c cputime libinterp/corefcn/data.cc
@anchor{XREFcputime}
@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.
@seealso{@ref{XREFtic,,tic}, @ref{XREFtoc,,toc}}
@end deftypefn
@c is_leap_year scripts/time/is_leap_year.m
@anchor{XREFis_leap_year}
@deftypefn {Function File} {} is_leap_year ()
@deftypefnx {Function File} {} is_leap_year (@var{year})
Return true if @var{year} is a leap year and false otherwise. If no
year is specified, @code{is_leap_year} uses the current year.
For example:
@example
@group
is_leap_year (2000)
@result{} 1
@end group
@end example
@seealso{@ref{XREFweekday,,weekday}, @ref{XREFeomday,,eomday}, @ref{XREFcalendar,,calendar}}
@end deftypefn
@anchor{XREFtoc}
@c tic libinterp/corefcn/data.cc
@anchor{XREFtic}
@deftypefn {Built-in Function} {} tic ()
@deftypefnx {Built-in Function} {@var{id} =} tic ()
@deftypefnx {Built-in Function} {} toc ()
@deftypefnx {Built-in Function} {} toc (@var{id})
@deftypefnx {Built-in Function} {@var{val} =} toc (@dots{})
Set or check a wall-clock timer. Calling @code{tic} without an
output argument sets the internal timer state. 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, @code{tic} returns a scalar
of type @code{uint64} that may be later passed to @code{toc}.
@example
@group
id = tic; sleep (5); toc (id)
@result{} 5.0010
@end group
@end example
Calling @code{tic} and @code{toc} this way allows nested timing calls.
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.
@seealso{@ref{XREFtoc,,toc}, @ref{XREFcputime,,cputime}}
@end deftypefn
@c pause libinterp/corefcn/sysdep.cc
@anchor{XREFpause}
@deftypefn {Built-in Function} {} pause ()
@deftypefnx {Built-in Function} {} pause (@var{n})
Suspend the execution of the program for @var{n} seconds.
@var{n} is a positive real value and may be a fraction of a second.
If invoked without an input arguments then the program is suspended until a
character is typed.
The following example 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
@seealso{@ref{XREFkbhit,,kbhit}, @ref{XREFsleep,,sleep}}
@end deftypefn
@c sleep libinterp/corefcn/sysdep.cc
@anchor{XREFsleep}
@deftypefn {Built-in Function} {} sleep (@var{seconds})
Suspend the execution of the program for the given number of seconds.
@seealso{@ref{XREFusleep,,usleep}, @ref{XREFpause,,pause}}
@end deftypefn
@c usleep libinterp/corefcn/sysdep.cc
@anchor{XREFusleep}
@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.
@seealso{@ref{XREFsleep,,sleep}, @ref{XREFpause,,pause}}
@end deftypefn
@c datenum scripts/time/datenum.m
@anchor{XREFdatenum}
@deftypefn {Function File} {@var{days} =} datenum (@var{datevec})
@deftypefnx {Function File} {@var{days} =} datenum (@var{year}, @var{month}, @var{day})
@deftypefnx {Function File} {@var{days} =} datenum (@var{year}, @var{month}, @var{day}, @var{hour})
@deftypefnx {Function File} {@var{days} =} datenum (@var{year}, @var{month}, @var{day}, @var{hour}, @var{minute})
@deftypefnx {Function File} {@var{days} =} datenum (@var{year}, @var{month}, @var{day}, @var{hour}, @var{minute}, @var{second})
@deftypefnx {Function File} {@var{days} =} datenum ("datestr")
@deftypefnx {Function File} {@var{days} =} datenum ("datestr", @var{p})
@deftypefnx {Function File} {[@var{days}, @var{secs}] =} datenum (@dots{})
Return the date/time input as a serial day number, with Jan 1, 0000
defined as day 1.
The integer part, @code{floor (@var{days})} counts the number of
complete days in the date input.
The fractional part, @code{rem (@var{days}, 1)} corresponds to the time
on the given day.
The input may be a date vector (see @code{datevec}),
datestr (see @code{datestr}), or directly specified as input.
When processing input datestrings, @var{p} is the year at the start of the
century to which two-digit years will be referenced. If not specified, it
defaults to the current year minus 50.
The optional output @var{secs} holds the time on the specified day with
greater precision than @var{days}.
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{Caution:} this function does not attempt to handle Julian
calendars so dates before October 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{XREFdatestr,,datestr}, @ref{XREFdatevec,,datevec}, @ref{XREFnow,,now}, @ref{XREFclock,,clock}, @ref{XREFdate,,date}}
@end deftypefn
@c datestr scripts/time/datestr.m
@anchor{XREFdatestr}
@deftypefn {Function File} {@var{str} =} datestr (@var{date})
@deftypefnx {Function File} {@var{str} =} datestr (@var{date}, @var{f})
@deftypefnx {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 07/09
@item 20 @tab dd/mm/yy @tab 07/09/00
@item 21 @tab mmm.dd,yyyy HH:MM:SS @tab Sep.07,2000 15:38:08
@item 22 @tab mmm.dd,yyyy @tab Sep.07,2000
@item 23 @tab mm/dd/yyyy @tab 09/07/2000
@item 24 @tab dd/mm/yyyy @tab 07/09/2000
@item 25 @tab yy/mm/dd @tab 00/09/07
@item 26 @tab yyyy/mm/dd @tab 2000/09/07
@item 27 @tab QQ-YYYY @tab Q3-2000
@item 28 @tab mmmyyyy @tab Sep2000
@item 29 @tab yyyy-mm-dd @tab 2000-09-07
@item 30 @tab yyyymmddTHHMMSS @tab 20000907T153808
@item 31 @tab yyyy-mm-dd HH:MM:SS @tab 2000-09-07 15:38:08
@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 05
@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 FFF @tab Milliseconds of second (padded with zeros) @tab 10:05:03.012
@item AM @tab Use 12-hour time format @tab 11:30 AM
@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 column vector of date strings
is returned.
@seealso{@ref{XREFdatenum,,datenum}, @ref{XREFdatevec,,datevec}, @ref{XREFdate,,date}, @ref{XREFnow,,now}, @ref{XREFclock,,clock}}
@end deftypefn
@c datevec scripts/time/datevec.m
@anchor{XREFdatevec}
@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}). If @var{date} is a string, but no format is
specified, then a relatively slow search is performed through various
formats. It is always preferable to specify the format string @var{f}
if it is known. Formats which do not specify a particular time component
will have the value set to zero. Formats which do not specify a date will
default to January 1st of the current year.
@var{p} is the year at the start of the century to which two-digit years
will be referenced. If not specified, it defaults to the current year
minus 50.
@seealso{@ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}, @ref{XREFclock,,clock}, @ref{XREFnow,,now}, @ref{XREFdate,,date}}
@end deftypefn
@c addtodate scripts/time/addtodate.m
@anchor{XREFaddtodate}
@deftypefn {Function File} {@var{d} =} addtodate (@var{d}, @var{q}, @var{f})
Add @var{q} amount of time (with units @var{f}) to the serial datenum,
@var{d}.
@var{f} must be one of @qcode{"year"}, @qcode{"month"}, @qcode{"day"},
@qcode{"hour"}, @qcode{"minute"}, @qcode{"second"}, or
@qcode{"millisecond"}.
@seealso{@ref{XREFdatenum,,datenum}, @ref{XREFdatevec,,datevec}, @ref{XREFetime,,etime}}
@end deftypefn
@c calendar scripts/time/calendar.m
@anchor{XREFcalendar}
@deftypefn {Function File} {@var{c} =} calendar ()
@deftypefnx {Function File} {@var{c} =} calendar (@var{d})
@deftypefnx {Function File} {@var{c} =} calendar (@var{y}, @var{m})
@deftypefnx {Function File} {} calendar (@dots{})
Return the current monthly calendar in a 6x7 matrix.
If @var{d} is specified, return the calendar for the month containing
the date @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{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}}
@end deftypefn
@c weekday scripts/time/weekday.m
@anchor{XREFweekday}
@deftypefn {Function File} {[@var{n}, @var{s}] =} weekday (@var{d})
@deftypefnx {Function File} {[@var{n}, @var{s}] =} weekday (@var{d}, @var{format})
Return the day of the week as a number in @var{n} and as a string in @var{s}.
The days of the week are numbered 1--7 with the first day being Sunday.
@var{d} is a serial date number or a date string.
If the string @var{format} is not present or is equal to @qcode{"short"} then
@var{s} will contain the abbreviated name of the weekday. If @var{format}
is @qcode{"long"} then @var{s} will contain the full name.
Table of return values based on @var{format}:
@multitable @columnfractions .06 .13 .16
@headitem @var{n} @tab @qcode{"short"} @tab @qcode{"long"}
@item 1 @tab Sun @tab Sunday
@item 2 @tab Mon @tab Monday
@item 3 @tab Tue @tab Tuesday
@item 4 @tab Wed @tab Wednesday
@item 5 @tab Thu @tab Thursday
@item 6 @tab Fri @tab Friday
@item 7 @tab Sat @tab Saturday
@end multitable
@seealso{@ref{XREFeomday,,eomday}, @ref{XREFis_leap_year,,is_leap_year}, @ref{XREFcalendar,,calendar}, @ref{XREFdatenum,,datenum}, @ref{XREFdatevec,,datevec}}
@end deftypefn
@c eomday scripts/time/eomday.m
@anchor{XREFeomday}
@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{XREFweekday,,weekday}, @ref{XREFdatenum,,datenum}, @ref{XREFdatevec,,datevec}, @ref{XREFis_leap_year,,is_leap_year}, @ref{XREFcalendar,,calendar}}
@end deftypefn
@c datetick scripts/plot/appearance/datetick.m
@anchor{XREFdatetick}
@deftypefn {Function File} {} datetick ()
@deftypefnx {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 (@var{hax}, @dots{})
Add date formatted tick labels to an axis. The axis to apply the
ticks to is determined by @var{axis} which can take the values @qcode{"x"},
@qcode{"y"}, or @qcode{"z"}. The default value is @qcode{"x"}. The
formatting of the labels is determined by the variable @var{form}, which
can either be a string or positive integer that @code{datestr} accepts.
@seealso{@ref{XREFdatenum,,datenum}, @ref{XREFdatestr,,datestr}}
@end deftypefn
@node Filesystem Utilities
@section Filesystem Utilities
Octave includes many utility functions for copying, moving, renaming, and
deleting files; for creating, reading, and deleting directories; for retrieving
status information on files; and for manipulating file and path names.
@c movefile scripts/miscellaneous/movefile.m
@anchor{XREFmovefile}
@deftypefn {Function File} {} movefile (@var{f1})
@deftypefnx {Function File} {} movefile (@var{f1}, @var{f2})
@deftypefnx {Function File} {} movefile (@var{f1}, @var{f2}, 'f')
@deftypefnx {Function File} {[@var{status}, @var{msg}, @var{msgid}] =} movefile (@dots{})
Move the file @var{f1} to the destination @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 no destination
@var{f2} is specified then the destination is the present working directory.
If @var{f2} is a file name then @var{f1} is renamed to @var{f2}.
When the force flag @qcode{'f'} is given any existing files will be
overwritten without prompting.
If successful, @var{status} is 1, and @var{msg}, @var{msgid} are empty
character strings (""). Otherwise, @var{status} is 0, @var{msg} contains a
system-dependent error message, and @var{msgid} contains a unique message
identifier. Note that the status code is exactly opposite that of the
@code{system} command.
@seealso{@ref{XREFrename,,rename}, @ref{XREFcopyfile,,copyfile}, @ref{XREFunlink,,unlink}, @ref{XREFdelete,,delete}, @ref{XREFglob,,glob}}
@end deftypefn
@c rename libinterp/corefcn/dirfns.cc
@anchor{XREFrename}
@deftypefn {Built-in Function} {} rename @var{old} @var{new}
@deftypefnx {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{XREFmovefile,,movefile}, @ref{XREFcopyfile,,copyfile}, @ref{XREFls,,ls}, @ref{XREFdir,,dir}}
@end deftypefn
@c copyfile scripts/miscellaneous/copyfile.m
@anchor{XREFcopyfile}
@deftypefn {Function File} {[@var{status}, @var{msg}, @var{msgid}] =} copyfile (@var{f1}, @var{f2})
@deftypefnx {Function File} {[@var{status}, @var{msg}, @var{msgid}] =} copyfile (@var{f1}, @var{f2}, 'f')
Copy the file @var{f1} to the destination @var{f2}.
The name @var{f1} may contain globbing patterns. If @var{f1} expands to
multiple file names, @var{f2} must be a directory.
when the force flag @qcode{'f'} is given any existing files will be
overwritten without prompting.
If successful, @var{status} is 1, and @var{msg}, @var{msgid} are empty
character strings (""). Otherwise, @var{status} is 0, @var{msg} contains a
system-dependent error message, and @var{msgid} contains a unique message
identifier. Note that the status code is exactly opposite that of the
@code{system} command.
@seealso{@ref{XREFmovefile,,movefile}, @ref{XREFrename,,rename}, @ref{XREFunlink,,unlink}, @ref{XREFdelete,,delete}, @ref{XREFglob,,glob}}
@end deftypefn
@c unlink libinterp/corefcn/syscalls.cc
@anchor{XREFunlink}
@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 link libinterp/corefcn/dirfns.cc
@anchor{XREFlink}
@deftypefn {Built-in Function} {} link @var{old} @var{new}
@deftypefnx {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{XREFsymlink,,symlink}, @ref{XREFunlink,,unlink}, @ref{XREFreadlink,,readlink}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c symlink libinterp/corefcn/dirfns.cc
@anchor{XREFsymlink}
@deftypefn {Built-in Function} {} symlink @var{old} @var{new}
@deftypefnx {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{XREFlink,,link}, @ref{XREFunlink,,unlink}, @ref{XREFreadlink,,readlink}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c readlink libinterp/corefcn/dirfns.cc
@anchor{XREFreadlink}
@deftypefn {Built-in Function} {} readlink @var{symlink}
@deftypefnx {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{XREFlstat,,lstat}, @ref{XREFsymlink,,symlink}, @ref{XREFlink,,link}, @ref{XREFunlink,,unlink}, @ref{XREFdelete,,delete}}
@end deftypefn
@c mkdir libinterp/corefcn/dirfns.cc
@anchor{XREFmkdir}
@deftypefn {Built-in Function} {} mkdir @var{dir}
@deftypefnx {Built-in Function} {} mkdir (@var{parent}, @var{dir})
@deftypefnx {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} mkdir (@dots{})
Create a directory named @var{dir} in the directory @var{parent}.
If no @var{parent} directory is specified the present working directory is
used.
If successful, @var{status} is 1, and @var{msg}, @var{msgid} are 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{XREFrmdir,,rmdir}, @ref{XREFpwd,,pwd}, @ref{XREFcd,,cd}}
@end deftypefn
@c rmdir libinterp/corefcn/dirfns.cc
@anchor{XREFrmdir}
@deftypefn {Built-in Function} {} rmdir @var{dir}
@deftypefnx {Built-in Function} {} rmdir (@var{dir}, "s")
@deftypefnx {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} rmdir (@dots{})
Remove the directory named @var{dir}.
If successful, @var{status} is 1, and @var{msg}, @var{msgid} are 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 @qcode{"s"},
recursively remove all subdirectories as well.
@seealso{@ref{XREFmkdir,,mkdir}, @ref{XREFconfirm_recursive_rmdir,,confirm_recursive_rmdir}, @ref{XREFpwd,,pwd}}
@end deftypefn
@c confirm_recursive_rmdir libinterp/corefcn/dirfns.cc
@anchor{XREFconfirm_recursive_rmdir}
@deftypefn {Built-in Function} {@var{val} =} confirm_recursive_rmdir ()
@deftypefnx {Built-in Function} {@var{old_val} =} confirm_recursive_rmdir (@var{new_val})
@deftypefnx {Built-in Function} {} confirm_recursive_rmdir (@var{new_val}, "local")
Query or set the internal variable that controls whether Octave
will ask for confirmation before recursively removing a directory tree.
When called from inside a function with the @qcode{"local"} option, the
variable is changed locally for the function and any subroutines it calls.
The original variable value is restored when exiting the function.
@seealso{@ref{XREFrmdir,,rmdir}}
@end deftypefn
@c mkfifo libinterp/corefcn/syscalls.cc
@anchor{XREFmkfifo}
@deftypefn {Built-in Function} {} mkfifo (@var{name}, @var{mode})
@deftypefnx {Built-in Function} {[@var{err}, @var{msg}] =} mkfifo (@var{name}, @var{mode})
Create a 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.
@seealso{@ref{XREFpipe,,pipe}}
@end deftypefn
@c umask libinterp/corefcn/file-io.cc
@anchor{XREFumask}
@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{XREFlstat}
@c stat libinterp/corefcn/syscalls.cc
@anchor{XREFstat}
@deftypefn {Built-in Function} {[@var{info}, @var{err}, @var{msg}] =} stat (@var{file})
@deftypefnx {Built-in Function} {[@var{info}, @var{err}, @var{msg}] =} stat (@var{fid})
@deftypefnx {Built-in Function} {[@var{info}, @var{err}, @var{msg}] =} lstat (@var{file})
@deftypefnx {Built-in Function} {[@var{info}, @var{err}, @var{msg}] =} lstat (@var{fid})
Return a structure @var{info} containing the following information about
@var{file} or file identifier @var{fid}.
@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{info}
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
[info, err, msg] = stat ("/vmlinuz")
@result{} info =
@{
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
@seealso{@ref{XREFlstat,,lstat}, @ref{XREFls,,ls}, @ref{XREFdir,,dir}}
@end deftypefn
@c S_ISBLK libinterp/corefcn/syscalls.cc
@anchor{XREFS_ISBLK}
@deftypefn {Built-in Function} {} S_ISBLK (@var{mode})
Return true if @var{mode} corresponds to a block device.
The value of @var{mode} is assumed to be returned from a call to @code{stat}.
@seealso{@ref{XREFstat,,stat}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c S_ISCHR libinterp/corefcn/syscalls.cc
@anchor{XREFS_ISCHR}
@deftypefn {Built-in Function} {} S_ISCHR (@var{mode})
Return true if @var{mode} corresponds to a character device.
The value of @var{mode} is assumed to be returned from a call to @code{stat}.
@seealso{@ref{XREFstat,,stat}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c S_ISDIR libinterp/corefcn/syscalls.cc
@anchor{XREFS_ISDIR}
@deftypefn {Built-in Function} {} S_ISDIR (@var{mode})
Return true if @var{mode} corresponds to a directory.
The value of @var{mode} is assumed to be returned from a call to @code{stat}.
@seealso{@ref{XREFstat,,stat}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c S_ISFIFO libinterp/corefcn/syscalls.cc
@anchor{XREFS_ISFIFO}
@deftypefn {Built-in Function} {} S_ISFIFO (@var{mode})
Return true if @var{mode} corresponds to a fifo.
The value of @var{mode} is assumed to be returned from a call to @code{stat}.
@seealso{@ref{XREFstat,,stat}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c S_ISLNK libinterp/corefcn/syscalls.cc
@anchor{XREFS_ISLNK}
@deftypefn {Built-in Function} {} S_ISLNK (@var{mode})
Return true if @var{mode} corresponds to a symbolic link.
The value of @var{mode} is assumed to be returned from a call to @code{stat}.
@seealso{@ref{XREFstat,,stat}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c S_ISREG libinterp/corefcn/syscalls.cc
@anchor{XREFS_ISREG}
@deftypefn {Built-in Function} {} S_ISREG (@var{mode})
Return true if @var{mode} corresponds to a regular file.
The value of @var{mode} is assumed to be returned from a call to @code{stat}.
@seealso{@ref{XREFstat,,stat}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c S_ISSOCK libinterp/corefcn/syscalls.cc
@anchor{XREFS_ISSOCK}
@deftypefn {Built-in Function} {} S_ISSOCK (@var{mode})
Return true if @var{mode} corresponds to a socket.
The value of @var{mode} is assumed to be returned from a call to @code{stat}.
@seealso{@ref{XREFstat,,stat}, @ref{XREFlstat,,lstat}}
@end deftypefn
@c fileattrib scripts/miscellaneous/fileattrib.m
@anchor{XREFfileattrib}
@deftypefn {Function File} {[@var{status}, @var{result}, @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{XREFglob,,glob}}
@end deftypefn
@c isdir scripts/general/isdir.m
@anchor{XREFisdir}
@deftypefn {Function File} {} isdir (@var{f})
Return true if @var{f} is a directory.
@seealso{@ref{XREFexist,,exist}, @ref{XREFstat,,stat}, @ref{XREFis_absolute_filename,,is_absolute_filename}, @ref{XREFis_rooted_relative_filename,,is_rooted_relative_filename}}
@end deftypefn
@c readdir libinterp/corefcn/dirfns.cc
@anchor{XREFreaddir}
@deftypefn {Built-in Function} {@var{files} =} readdir (@var{dir})
@deftypefnx {Built-in Function} {[@var{files}, @var{err}, @var{msg}] =} readdir (@var{dir})
Return the names of 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{XREFls,,ls}, @ref{XREFdir,,dir}, @ref{XREFglob,,glob}, @ref{XREFwhat,,what}}
@end deftypefn
@c glob libinterp/corefcn/dirfns.cc
@anchor{XREFglob}
@deftypefn {Built-in Function} {} glob (@var{pattern})
Given an array of pattern 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. The pattern strings are
interpreted as filename globbing patterns (as they are used by Unix shells).
Within a pattern
@table @code
@item *
matches any string, including the null string,
@item ?
matches any single character, and
@item [@dots{}]
matches any of the enclosed characters.
@end table
Tilde expansion is performed on each of the patterns before looking for
matching file names. For example:
@example
ls
@result{}
file1 file2 file3 myfile1 myfile1b
glob ("*file1")
@result{}
@{
[1,1] = file1
[2,1] = myfile1
@}
glob ("myfile?")
@result{}
@{
[1,1] = myfile1
@}
glob ("file[12]")
@result{}
@{
[1,1] = file1
[2,1] = file2
@}
@end example
@seealso{@ref{XREFls,,ls}, @ref{XREFdir,,dir}, @ref{XREFreaddir,,readdir}, @ref{XREFwhat,,what}, @ref{XREFfnmatch,,fnmatch}}
@end deftypefn
@c fnmatch libinterp/corefcn/dirfns.cc
@anchor{XREFfnmatch}
@deftypefn {Built-in Function} {} fnmatch (@var{pattern}, @var{string})
Return true or false 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
@seealso{@ref{XREFglob,,glob}, @ref{XREFregexp,,regexp}}
@end deftypefn
@c file_in_path libinterp/corefcn/utils.cc
@anchor{XREFfile_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 character string. 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 @qcode{"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{XREFfile_in_loadpath,,file_in_loadpath}, @ref{XREFfind_dir_in_path,,find_dir_in_path}, @ref{XREFpath,,path}}
@end deftypefn
@c filesep libinterp/corefcn/dirfns.cc
@anchor{XREFfilesep}
@deftypefn {Built-in Function} {} filesep ()
@deftypefnx {Built-in Function} {} filesep ("all")
Return the system-dependent character used to separate directory names.
If @qcode{"all"} is given, the function returns all valid file separators
in the form of a string. The list of file separators is system-dependent.
It is @samp{/} (forward slash) under UNIX or @w{Mac OS X}, @samp{/} and
@samp{\} (forward and backward slashes) under Windows.
@seealso{@ref{XREFpathsep,,pathsep}}
@end deftypefn
@c filemarker libinterp/corefcn/input.cc
@anchor{XREFfilemarker}
@deftypefn {Built-in Function} {@var{val} =} filemarker ()
@deftypefnx {Built-in Function} {} filemarker (@var{new_val})
@deftypefnx {Built-in Function} {} filemarker (@var{new_val}, "local")
Query or set 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 subfunction @code{mysubfunc}
of the function @code{myfunc}. Another use of @code{filemarker} is when
debugging it allows easier placement of breakpoints within subfunctions.
For example,
@example
dbstop (["myfunc", filemarker, "mysubfunc"])
@end example
@noindent
will set a breakpoint at the first line of the subfunction @code{mysubfunc}.
When called from inside a function with the @qcode{"local"} option, the
variable is changed locally for the function and any subroutines it calls.
The original variable value is restored when exiting the function.
@end deftypefn
@c fileparts scripts/miscellaneous/fileparts.m
@anchor{XREFfileparts}
@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{XREFfullfile,,fullfile}}
@end deftypefn
@c fullfile scripts/miscellaneous/fullfile.m
@anchor{XREFfullfile}
@deftypefn {Function File} {@var{filename} =} fullfile (@var{dir1}, @var{dir2}, @dots{}, @var{file})
Return a complete filename constructed from the given components.
@seealso{@ref{XREFfileparts,,fileparts}}
@end deftypefn
@c tilde_expand libinterp/corefcn/sysdep.cc
@anchor{XREFtilde_expand}
@deftypefn {Built-in Function} {} tilde_expand (@var{string})
Perform 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 canonicalize_file_name libinterp/corefcn/syscalls.cc
@anchor{XREFcanonicalize_file_name}
@deftypefn {Built-in Function} {[@var{cname}, @var{status}, @var{msg}] =} canonicalize_file_name (@var{fname})
Return the canonical name of file @var{fname}. If the file does not exist
the empty string ("") is returned.
@seealso{@ref{XREFmake_absolute_filename,,make_absolute_filename}, @ref{XREFis_absolute_filename,,is_absolute_filename}, @ref{XREFis_rooted_relative_filename,,is_rooted_relative_filename}}
@end deftypefn
@c make_absolute_filename libinterp/corefcn/utils.cc
@anchor{XREFmake_absolute_filename}
@deftypefn {Built-in Function} {} make_absolute_filename (@var{file})
Return the full name of @var{file} beginning from the root of the file
system. No check is done for the existence of @var{file}.
@seealso{@ref{XREFcanonicalize_file_name,,canonicalize_file_name}, @ref{XREFis_absolute_filename,,is_absolute_filename}, @ref{XREFis_rooted_relative_filename,,is_rooted_relative_filename}, @ref{XREFisdir,,isdir}}
@end deftypefn
@c is_absolute_filename libinterp/corefcn/utils.cc
@anchor{XREFis_absolute_filename}
@deftypefn {Built-in Function} {} is_absolute_filename (@var{file})
Return true if @var{file} is an absolute filename.
@seealso{@ref{XREFis_rooted_relative_filename,,is_rooted_relative_filename}, @ref{XREFmake_absolute_filename,,make_absolute_filename}, @ref{XREFisdir,,isdir}}
@end deftypefn
@c is_rooted_relative_filename libinterp/corefcn/utils.cc
@anchor{XREFis_rooted_relative_filename}
@deftypefn {Built-in Function} {} is_rooted_relative_filename (@var{file})
Return true if @var{file} is a rooted-relative filename.
@seealso{@ref{XREFis_absolute_filename,,is_absolute_filename}, @ref{XREFmake_absolute_filename,,make_absolute_filename}, @ref{XREFisdir,,isdir}}
@end deftypefn
@c P_tmpdir libinterp/corefcn/file-io.cc
@anchor{XREFP_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 tempdir scripts/miscellaneous/tempdir.m
@anchor{XREFtempdir}
@deftypefn {Function File} {@var{dir} =} tempdir ()
Return the name of the system's directory for temporary files.
@end deftypefn
@c tempname scripts/miscellaneous/tempname.m
@anchor{XREFtempname}
@deftypefn {Function File} {} tempname ()
@deftypefnx {Function File} {} tempname (@var{dir})
@deftypefnx {Function File} {} tempname (@var{dir}, @var{prefix})
This function is an alias for @code{tmpnam}.
@seealso{@ref{XREFtmpnam,,tmpnam}}
@end deftypefn
@c recycle scripts/miscellaneous/recycle.m
@anchor{XREFrecycle}
@deftypefn {Function File} {@var{current_state} =} recycle ()
@deftypefnx {Function File} {@var{old_state} =} recycle (@var{new_state})
Query or set the preference for recycling deleted files.
Recycling files, instead of permanently deleting them, is not currently
implemented in Octave. To help avoid accidental data loss an error
will be raised if an attempt is made to enable file recycling.
@seealso{@ref{XREFdelete,,delete}}
@end deftypefn
@node File Archiving Utilities
@section File Archiving Utilities
@c bunzip2 scripts/miscellaneous/bunzip2.m
@anchor{XREFbunzip2}
@deftypefn {Function File} {} bunzip2 (@var{bzfile})
@deftypefnx {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{XREFbzip2,,bzip2}, @ref{XREFunpack,,unpack}, @ref{XREFgunzip,,gunzip}, @ref{XREFunzip,,unzip}, @ref{XREFuntar,,untar}}
@end deftypefn
@c gzip scripts/miscellaneous/gzip.m
@anchor{XREFgzip}
@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 @file{".gz"}
extension is created. The original files are not modified. Existing
compressed files are silently overwritten. If @var{outdir} is defined the
compressed files are placed in this directory.
@seealso{@ref{XREFgunzip,,gunzip}, @ref{XREFbzip2,,bzip2}, @ref{XREFzip,,zip}, @ref{XREFtar,,tar}}
@end deftypefn
@c gunzip scripts/miscellaneous/gunzip.m
@anchor{XREFgunzip}
@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
@var{gzfile} is a directory, all gzfiles in the directory will be
recursively gunzipped.
@seealso{@ref{XREFgzip,,gzip}, @ref{XREFunpack,,unpack}, @ref{XREFbunzip2,,bunzip2}, @ref{XREFunzip,,unzip}, @ref{XREFuntar,,untar}}
@end deftypefn
@c tar scripts/miscellaneous/tar.m
@anchor{XREFtar}
@deftypefn {Function File} {@var{entries} =} tar (@var{tarfile}, @var{files})
@deftypefnx {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{XREFuntar,,untar}, @ref{XREFbzip2,,bzip2}, @ref{XREFgzip,,gzip}, @ref{XREFzip,,zip}}
@end deftypefn
@c untar scripts/miscellaneous/untar.m
@anchor{XREFuntar}
@deftypefn {Function File} {} untar (@var{tarfile})
@deftypefnx {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{XREFtar,,tar}, @ref{XREFunpack,,unpack}, @ref{XREFbunzip2,,bunzip2}, @ref{XREFgunzip,,gunzip}, @ref{XREFunzip,,unzip}}
@end deftypefn
@c zip scripts/miscellaneous/zip.m
@anchor{XREFzip}
@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{zipfile} in the same directory. If @var{rootdir}
is defined the @var{files} are located relative to @var{rootdir} rather
than the current directory.
@seealso{@ref{XREFunzip,,unzip}, @ref{XREFbzip2,,bzip2}, @ref{XREFgzip,,gzip}, @ref{XREFtar,,tar}}
@end deftypefn
@c unzip scripts/miscellaneous/unzip.m
@anchor{XREFunzip}
@deftypefn {Function File} {} unzip (@var{zipfile})
@deftypefnx {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{XREFzip,,zip}, @ref{XREFunpack,,unpack}, @ref{XREFbunzip2,,bunzip2}, @ref{XREFgunzip,,gunzip}, @ref{XREFuntar,,untar}}
@end deftypefn
@c unpack scripts/miscellaneous/unpack.m
@anchor{XREFunpack}
@deftypefn {Function File} {@var{files} =} unpack (@var{file})
@deftypefnx {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 list of strings, then each file is
unpacked individually. If @var{dir} is not specified, it defaults to
the current directory. If a directory is in the file list, then the
@var{filetype} must also be specified.
The optional return value is a list of @var{files} unpacked.
@seealso{@ref{XREFbzip2,,bzip2}, @ref{XREFgzip,,gzip}, @ref{XREFzip,,zip}, @ref{XREFtar,,tar}}
@end deftypefn
@c bzip2 scripts/miscellaneous/bzip2.m
@anchor{XREFbzip2}
@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 @file{".bz2"}
extension is created. The original files are not modified. Existing
compressed files are silently overwritten. If @var{outdir} is defined the
compressed files are placed in this directory.
@seealso{@ref{XREFbunzip2,,bunzip2}, @ref{XREFgzip,,gzip}, @ref{XREFzip,,zip}, @ref{XREFtar,,tar}}
@end deftypefn
@node Networking Utilities
@section Networking Utilities
@menu
* FTP Objects::
* URL Manipulation::
* Base64 and Binary Data Transmission::
@end menu
@c gethostname libinterp/corefcn/syscalls.cc
@anchor{XREFgethostname}
@deftypefn {Built-in Function} {} gethostname ()
Return the hostname of the system where Octave is running.
@end deftypefn
@node FTP Objects
@subsection FTP Objects
Octave supports the FTP protocol through an object-oriented interface.
Use the function @code{ftp} to create an FTP object which represents the
connection. All FTP functions take an FTP object as the first argument.
@c @ftp/ftp scripts/@ftp/ftp.m
@anchor{XREF@@ftp/ftp}
@deftypefn {Function File} {@var{f} =} ftp (@var{host})
@deftypefnx {Function File} {@var{f} =} ftp (@var{host}, @var{username}, @var{password})
Connect to the FTP server @var{host} with @var{username} and @var{password}.
If @var{username} and @var{password} are not specified, user
@qcode{"anonymous"} with no password is used. The returned FTP object
@var{f} represents the established FTP connection.
The list of actions for an FTP object are shown below. All functions
require an FTP object as the first argument.
@multitable @columnfractions 0.15 0.8
@headitem Method @tab Description
@item ascii @tab Set transfer type to ascii
@item binary @tab Set transfer type to binary
@item cd @tab Change remote working directory
@item close @tab Close FTP connection
@item delete @tab Delete remote file
@item dir @tab List remote directory contents
@item mget @tab Download remote files
@item mkdir @tab Create remote directory
@item mput @tab Upload local files
@item rename @tab Rename remote file or directory
@item rmdir @tab Remove remote directory
@end multitable
@end deftypefn
@c @ftp/close scripts/@ftp/close.m
@anchor{XREF@@ftp/close}
@deftypefn {Function File} {} close (@var{f})
Close the FTP connection represented by the FTP object @var{f}.
@var{f} is an FTP object returned by the @code{ftp} function.
@end deftypefn
@c @ftp/mget scripts/@ftp/mget.m
@anchor{XREF@@ftp/mget}
@deftypefn {Function File} {} mget (@var{f}, @var{file})
@deftypefnx {Function File} {} mget (@var{f}, @var{dir})
@deftypefnx {Function File} {} mget (@var{f}, @var{remote_name}, @var{target})
Download a remote file @var{file} or directory @var{dir} to the local
directory on the FTP connection @var{f}. @var{f} is an FTP object
returned by the @code{ftp} function.
The arguments @var{file} and @var{dir} can include wildcards and any
files or directories on the remote server that match will be downloaded.
If a third argument @var{target} is given, then a single file or
directory will be downloaded to the local directory and the local name
will be changed to @var{target}.
@end deftypefn
@c @ftp/mput scripts/@ftp/mput.m
@anchor{XREF@@ftp/mput}
@deftypefn {Function File} {} mput (@var{f}, @var{file})
Upload the local file @var{file} into the current remote directory on
the FTP connection @var{f}. @var{f} is an FTP object returned by the
ftp function.
The argument @var{file} is passed through the @code{glob} function and any
files that match the wildcards in @var{file} will be uploaded.
@end deftypefn
@c @ftp/cd scripts/@ftp/cd.m
@anchor{XREF@@ftp/cd}
@deftypefn {Function File} {} cd (@var{f})
@deftypefnx {Function File} {} cd (@var{f}, @var{path})
Get or set the remote directory on the FTP connection @var{f}.
@var{f} is an FTP object returned by the @code{ftp} function.
If @var{path} is not specified, return the remote current working
directory. Otherwise, set the remote directory to @var{path} and
return the new remote working directory.
If the directory does not exist, an error message is printed and the
working directory is not changed.
@end deftypefn
@c @ftp/dir scripts/@ftp/dir.m
@anchor{XREF@@ftp/dir}
@deftypefn {Function File} {@var{lst} =} dir (@var{f})
List the current directory in verbose form for the FTP connection
@var{f}.
@var{f} is an FTP object returned by the @code{ftp} function.
@end deftypefn
@c @ftp/ascii scripts/@ftp/ascii.m
@anchor{XREF@@ftp/ascii}
@deftypefn {Function File} {} ascii (@var{f})
Set the FTP connection @var{f} to use ASCII mode for transfers.
ASCII mode is only appropriate for text files as it will convert
the remote host's newline representation to the local host's newline
representation.
@var{f} is an FTP object returned by the @code{ftp} function.
@end deftypefn
@c @ftp/binary scripts/@ftp/binary.m
@anchor{XREF@@ftp/binary}
@deftypefn {Function File} {} binary (@var{f})
Set the FTP connection @var{f} to use binary mode for transfers.
In binary mode there is no conversion of newlines from the remote
representation to the local representation.
@var{f} is an FTP object returned by the @code{ftp} function.
@end deftypefn
@c @ftp/delete scripts/@ftp/delete.m
@anchor{XREF@@ftp/delete}
@deftypefn {Function File} {} delete (@var{f}, @var{file})
Delete the remote file @var{file} over the FTP connection @var{f}.
@var{f} is an FTP object returned by the @code{ftp} function.
@end deftypefn
@c @ftp/rename scripts/@ftp/rename.m
@anchor{XREF@@ftp/rename}
@deftypefn {Function File} {} rename (@var{f}, @var{oldname}, @var{newname})
Rename or move the remote file or directory @var{oldname} to @var{newname},
over the FTP connection @var{f}.
@var{f} is an FTP object returned by the ftp function.
@end deftypefn
@c @ftp/mkdir scripts/@ftp/mkdir.m
@anchor{XREF@@ftp/mkdir}
@deftypefn {Function File} {} mkdir (@var{f}, @var{path})
Create the remote directory @var{path}, over the FTP connection @var{f}.
@var{f} is an FTP object returned by the @code{ftp} function.
@end deftypefn
@c @ftp/rmdir scripts/@ftp/rmdir.m
@anchor{XREF@@ftp/rmdir}
@deftypefn {Function File} {} rmdir (@var{f}, @var{path})
Remove the remote directory @var{path}, over the FTP connection @var{f}.
@var{f} is an FTP object returned by the @code{ftp} function.
@end deftypefn
@node URL Manipulation
@subsection URL Manipulation
@c urlread libinterp/corefcn/urlwrite.cc
@anchor{XREFurlread}
@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 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{XREFurlwrite,,urlwrite}}
@end deftypefn
@c urlwrite libinterp/corefcn/urlwrite.cc
@anchor{XREFurlwrite}
@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 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{XREFurlread,,urlread}}
@end deftypefn
@node Base64 and Binary Data Transmission
@subsection Base64 and Binary Data Transmission
Some transmission channels can not accept binary data. It is customary to
encode binary data in Base64 for transmission and to decode the data upon
reception.
@c base64_encode libinterp/corefcn/data.cc
@anchor{XREFbase64_encode}
@deftypefn {Built-in Function} {@var{s} =} base64_encode (@var{x})
Encode a double matrix or array @var{x} into the base64 format string
@var{s}.
@seealso{@ref{XREFbase64_decode,,base64_decode}}
@end deftypefn
@c base64_decode libinterp/corefcn/data.cc
@anchor{XREFbase64_decode}
@deftypefn {Built-in Function} {@var{x} =} base64_decode (@var{s})
@deftypefnx {Built-in Function} {@var{x} =} base64_decode (@var{s}, @var{dims})
Decode the double matrix or array @var{x} from the base64 encoded string
@var{s}. The optional input parameter @var{dims} should be a vector
containing the dimensions of the decoded array.
@seealso{@ref{XREFbase64_encode,,base64_encode}}
@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 system libinterp/corefcn/toplev.cc
@anchor{XREFsystem}
@deftypefn {Built-in Function} {} system ("@var{string}")
@deftypefnx {Built-in Function} {} system ("@var{string}", @var{return_output})
@deftypefnx {Built-in Function} {} system ("@var{string}", @var{return_output}, @var{type})
@deftypefnx {Built-in Function} {[@var{status}, @var{output}] =} system (@dots{})
Execute a shell command specified by @var{string}.
If the optional argument @var{type} is @qcode{"async"}, the process
is started in the background and the process ID of the child process
is returned immediately. Otherwise, the child process is started and
Octave waits until it exits. If the @var{type} argument is omitted, it
defaults to the value @qcode{"sync"}.
If @var{system} is called with one or more output arguments, or if the
optional argument @var{return_output} is true and the subprocess is started
synchronously, then the output from the command is returned as a variable.
Otherwise, if the subprocess is executed synchronously, its output is sent
to the standard output. To send the output of a command executed with
@code{system} through the pager, use a command like
@example
@group
[output, text] = system ("cmd");
disp (text);
@end group
@end example
@noindent
or
@example
printf ("%s\n", nthargout (2, "system", "cmd"));
@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}.
For commands run asynchronously, @var{status} is the process id of the
command shell that is started to run the command.
@seealso{@ref{XREFunix,,unix}, @ref{XREFdos,,dos}}
@end deftypefn
@c unix scripts/miscellaneous/unix.m
@anchor{XREFunix}
@deftypefn {Function File} {} unix ("@var{command}")
@deftypefnx {Function File} {@var{status} =} unix ("@var{command}")
@deftypefnx {Function File} {[@var{status}, @var{text}] =} unix ("@var{command}")
@deftypefnx {Function File} {[@dots{}] =} 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 from the command in @var{text}.
When called with no output argument, or the @qcode{"-echo"} argument is
given, then @var{text} is also sent to standard output.
@seealso{@ref{XREFdos,,dos}, @ref{XREFsystem,,system}, @ref{XREFisunix,,isunix}, @ref{XREFispc,,ispc}}
@end deftypefn
@c dos scripts/miscellaneous/dos.m
@anchor{XREFdos}
@deftypefn {Function File} {} dos ("@var{command}")
@deftypefnx {Function File} {@var{status} =} dos ("@var{command}")
@deftypefnx {Function File} {[@var{status}, @var{text}] =} dos ("@var{command"})
@deftypefnx {Function File} {[@dots{}] =} 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 from the command in @var{text}.
When called with no output argument, or the @qcode{"-echo"} argument is
given, then @var{text} is also sent to standard output.
@seealso{@ref{XREFunix,,unix}, @ref{XREFsystem,,system}, @ref{XREFisunix,,isunix}, @ref{XREFispc,,ispc}}
@end deftypefn
@c perl scripts/miscellaneous/perl.m
@anchor{XREFperl}
@deftypefn {Function File} {@var{output} =} perl (@var{scriptfile})
@deftypefnx {Function File} {@var{output} =} perl (@var{scriptfile}, @var{argument1}, @var{argument2}, @dots{})
@deftypefnx {Function File} {[@var{output}, @var{status}] =} perl (@dots{})
Invoke Perl script @var{scriptfile}, possibly with a list of command line
arguments. Return output in @var{output} and optional status in
@var{status}. If @var{scriptfile} is not an absolute file name it is
is searched for in the current directory and then in the Octave loadpath.
@seealso{@ref{XREFsystem,,system}, @ref{XREFpython,,python}}
@end deftypefn
@c python scripts/miscellaneous/python.m
@anchor{XREFpython}
@deftypefn {Function File} {@var{output} =} python (@var{scriptfile})
@deftypefnx {Function File} {@var{output} =} python (@var{scriptfile}, @var{argument1}, @var{argument2}, @dots{})
@deftypefnx {Function File} {[@var{output}, @var{status}] =} python (@dots{})
Invoke Python script @var{scriptfile}, possibly with a list of command line
arguments. Return output in @var{output} and optional status in
@var{status}. If @var{scriptfile} is not an absolute file name it is
is searched for in the current directory and then in the Octave loadpath.
@seealso{@ref{XREFsystem,,system}, @ref{XREFperl,,perl}}
@end deftypefn
@c popen libinterp/corefcn/file-io.cc
@anchor{XREFpopen}
@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 @qcode{"r"}
The pipe will be connected to the standard output of the process, and
open for reading.
@item @qcode{"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 pclose libinterp/corefcn/file-io.cc
@anchor{XREFpclose}
@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 popen2 libinterp/corefcn/syscalls.cc
@anchor{XREFpopen2}
@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 @nospell{"reap"} the
child process. If you don't use @code{waitpid} to check the child's
exit status, it will linger until Octave exits.
@seealso{@ref{XREFpopen,,popen}, @ref{XREFwaitpid,,waitpid}}
@end deftypefn
@c EXEC_PATH libinterp/corefcn/defaults.cc
@anchor{XREFEXEC_PATH}
@deftypefn {Built-in Function} {@var{val} =} EXEC_PATH ()
@deftypefnx {Built-in Function} {@var{old_val} =} EXEC_PATH (@var{new_val})
@deftypefnx {Built-in Function} {} EXEC_PATH (@var{new_val}, "local")
Query or set the internal variable that specifies a colon separated
list of directories to append to the shell PATH when executing external
programs. The initial value of is taken from the environment variable
@w{@env{OCTAVE_EXEC_PATH}}, but that value can be overridden by
the command line argument @option{--exec-path PATH}.
When called from inside a function with the @qcode{"local"} option, the
variable is changed locally for the function and any subroutines it calls.
The original variable value is restored when exiting the function.
@seealso{@ref{XREFIMAGE_PATH,,IMAGE_PATH}, @ref{XREFOCTAVE_HOME,,OCTAVE_HOME}}
@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 fork libinterp/corefcn/syscalls.cc
@anchor{XREFfork}
@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 exec libinterp/corefcn/syscalls.cc
@anchor{XREFexec}
@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 pipe libinterp/corefcn/syscalls.cc
@anchor{XREFpipe}
@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.
@seealso{@ref{XREFmkfifo,,mkfifo}}
@end deftypefn
@c dup2 libinterp/corefcn/syscalls.cc
@anchor{XREFdup2}
@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 waitpid libinterp/corefcn/syscalls.cc
@anchor{XREFwaitpid}
@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{XREFWCONTINUE,,WCONTINUE}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWNOHANG,,WNOHANG}, @ref{XREFWSTOPSIG,,WSTOPSIG}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWUNTRACED,,WUNTRACED}}
@end deftypefn
@c WCONTINUE libinterp/corefcn/syscalls.cc
@anchor{XREFWCONTINUE}
@deftypefn {Built-in Function} {} WCONTINUE ()
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{XREFwaitpid,,waitpid}, @ref{XREFWNOHANG,,WNOHANG}, @ref{XREFWUNTRACED,,WUNTRACED}}
@end deftypefn
@c WCOREDUMP libinterp/corefcn/syscalls.cc
@anchor{XREFWCOREDUMP}
@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{XREFwaitpid,,waitpid}, @ref{XREFWIFEXITED,,WIFEXITED}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWSTOPSIG,,WSTOPSIG}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c WEXITSTATUS libinterp/corefcn/syscalls.cc
@anchor{XREFWEXITSTATUS}
@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{XREFwaitpid,,waitpid}, @ref{XREFWIFEXITED,,WIFEXITED}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWSTOPSIG,,WSTOPSIG}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c WIFCONTINUED libinterp/corefcn/syscalls.cc
@anchor{XREFWIFCONTINUED}
@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{XREFwaitpid,,waitpid}, @ref{XREFWIFEXITED,,WIFEXITED}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWSTOPSIG,,WSTOPSIG}}
@end deftypefn
@c WIFSIGNALED libinterp/corefcn/syscalls.cc
@anchor{XREFWIFSIGNALED}
@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{XREFwaitpid,,waitpid}, @ref{XREFWIFEXITED,,WIFEXITED}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWSTOPSIG,,WSTOPSIG}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c WIFSTOPPED libinterp/corefcn/syscalls.cc
@anchor{XREFWIFSTOPPED}
@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{XREFwaitpid,,waitpid}, @ref{XREFWIFEXITED,,WIFEXITED}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWSTOPSIG,,WSTOPSIG}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c WIFEXITED libinterp/corefcn/syscalls.cc
@anchor{XREFWIFEXITED}
@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{XREFwaitpid,,waitpid}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWSTOPSIG,,WSTOPSIG}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c WNOHANG libinterp/corefcn/syscalls.cc
@anchor{XREFWNOHANG}
@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{XREFwaitpid,,waitpid}, @ref{XREFWUNTRACED,,WUNTRACED}, @ref{XREFWCONTINUE,,WCONTINUE}}
@end deftypefn
@c WSTOPSIG libinterp/corefcn/syscalls.cc
@anchor{XREFWSTOPSIG}
@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{XREFwaitpid,,waitpid}, @ref{XREFWIFEXITED,,WIFEXITED}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWTERMSIG,,WTERMSIG}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c WTERMSIG libinterp/corefcn/syscalls.cc
@anchor{XREFWTERMSIG}
@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{XREFwaitpid,,waitpid}, @ref{XREFWIFEXITED,,WIFEXITED}, @ref{XREFWEXITSTATUS,,WEXITSTATUS}, @ref{XREFWIFSIGNALED,,WIFSIGNALED}, @ref{XREFWCOREDUMP,,WCOREDUMP}, @ref{XREFWIFSTOPPED,,WIFSTOPPED}, @ref{XREFWSTOPSIG,,WSTOPSIG}, @ref{XREFWIFCONTINUED,,WIFCONTINUED}}
@end deftypefn
@c WUNTRACED libinterp/corefcn/syscalls.cc
@anchor{XREFWUNTRACED}
@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{XREFwaitpid,,waitpid}, @ref{XREFWNOHANG,,WNOHANG}, @ref{XREFWCONTINUE,,WCONTINUE}}
@end deftypefn
@c fcntl libinterp/corefcn/syscalls.cc
@anchor{XREFfcntl}
@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
Non-blocking 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 kill libinterp/corefcn/syscalls.cc
@anchor{XREFkill}
@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 SIG libinterp/corefcn/sighandlers.cc
@anchor{XREFSIG}
@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 getpgrp libinterp/corefcn/syscalls.cc
@anchor{XREFgetpgrp}
@deftypefn {Built-in Function} {pgid =} getpgrp ()
Return the process group id of the current process.
@end deftypefn
@c getpid libinterp/corefcn/syscalls.cc
@anchor{XREFgetpid}
@deftypefn {Built-in Function} {pid =} getpid ()
Return the process id of the current process.
@end deftypefn
@c getppid libinterp/corefcn/syscalls.cc
@anchor{XREFgetppid}
@deftypefn {Built-in Function} {pid =} getppid ()
Return the process id of the parent process.
@end deftypefn
@c geteuid libinterp/corefcn/syscalls.cc
@anchor{XREFgeteuid}
@deftypefn {Built-in Function} {euid =} geteuid ()
Return the effective user id of the current process.
@end deftypefn
@c getuid libinterp/corefcn/syscalls.cc
@anchor{XREFgetuid}
@deftypefn {Built-in Function} {uid =} getuid ()
Return the real user id of the current process.
@end deftypefn
@c getegid libinterp/corefcn/syscalls.cc
@anchor{XREFgetegid}
@deftypefn {Built-in Function} {egid =} getegid ()
Return the effective group id of the current process.
@end deftypefn
@c getgid libinterp/corefcn/syscalls.cc
@anchor{XREFgetgid}
@deftypefn {Built-in Function} {gid =} getgid ()
Return the real group id of the current process.
@end deftypefn
@node Environment Variables
@section Environment Variables
@c getenv libinterp/corefcn/sysdep.cc
@anchor{XREFgetenv}
@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 putenv libinterp/corefcn/sysdep.cc
@anchor{XREFputenv}
@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 cd libinterp/corefcn/dirfns.cc
@anchor{XREFcd}
@deftypefn {Command} {} cd @var{dir}
@deftypefnx {Command} {} cd
@deftypefnx {Built-in Function} {@var{old_dir} =} cd @var{dir}
@deftypefnx {Command} {} chdir @dots{}
Change the current working directory to @var{dir}.
If @var{dir} is omitted, the current directory is changed to the user's home
directory (@qcode{"~"}).
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.
@code{chdir} is an alias for @code{cd} and can be used in all of the same
calling formats.
Compatibility Note: When called with no arguments, @sc{matlab} prints the
present working directory rather than changing to the user's home directory.
@seealso{@ref{XREFpwd,,pwd}, @ref{XREFmkdir,,mkdir}, @ref{XREFrmdir,,rmdir}, @ref{XREFdir,,dir}, @ref{XREFls,,ls}}
@end deftypefn
@c ls scripts/miscellaneous/ls.m
@anchor{XREFls}
@deftypefn {Command} {} ls
@deftypefnx {Command} {} ls filenames
@deftypefnx {Command} {} ls options
@deftypefnx {Command} {} ls options filenames
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 will vary
from system to system.
Filenames are subject to shell expansion if they contain any wildcard
characters @samp{*}, @samp{?}, @samp{[]}. If you want to find a
literal example of a wildcard character you must escape it using the
backslash operator @samp{\}.
@seealso{@ref{XREFdir,,dir}, @ref{XREFreaddir,,readdir}, @ref{XREFglob,,glob}, @ref{XREFwhat,,what}, @ref{XREFstat,,stat}, @ref{XREFfilesep,,filesep}, @ref{XREFls_command,,ls_command}}
@end deftypefn
@c ls_command scripts/miscellaneous/ls_command.m
@anchor{XREFls_command}
@deftypefn {Function File} {@var{val} =} ls_command ()
@deftypefnx {Function File} {@var{old_val} =} ls_command (@var{new_val})
Query or set the shell command used by Octave's @code{ls} command.
@seealso{@ref{XREFls,,ls}}
@end deftypefn
@c dir scripts/miscellaneous/dir.m
@anchor{XREFdir}
@deftypefn {Function File} {} dir
@deftypefnx {Function File} {} dir (@var{directory})
@deftypefnx {Function File} {[@var{list}] =} dir (@var{directory})
Display file listing for directory @var{directory}.
If @var{directory} is not specified then list the present working directory.
If a return value is requested, return a structure array with the fields
@table @asis
@item name
File or directory name.
@item date
Timestamp of file modification (string value).
@item bytes
File size in bytes.
@item isdir
True if name is a directory.
@item datenum
Timestamp of file modification as serial date number (double).
@item statinfo
Information structure returned from @code{stat}.
@end table
If @var{directory} is a filename, rather than a directory, then return
information about the named file. @var{directory} may also be a list rather
than a single directory or file.
@var{directory} is subject to shell expansion if it contains any wildcard
characters @samp{*}, @samp{?}, @samp{[]}. If you want to find a
literal example of a wildcard character you must escape it using the
backslash operator @samp{\}.
Note that for symbolic links, @code{dir} returns information about
the file that the symbolic link points to rather than the link itself.
However, if the link points to a nonexistent file, @code{dir} returns
information about the link.
@seealso{@ref{XREFls,,ls}, @ref{XREFreaddir,,readdir}, @ref{XREFglob,,glob}, @ref{XREFwhat,,what}, @ref{XREFstat,,stat}}
@end deftypefn
@c pwd libinterp/corefcn/dirfns.cc
@anchor{XREFpwd}
@deftypefn {Built-in Function} {} pwd ()
@deftypefnx {Built-in Function} {@var{dir} =} pwd ()
Return the current working directory.
@seealso{@ref{XREFcd,,cd}, @ref{XREFdir,,dir}, @ref{XREFls,,ls}, @ref{XREFmkdir,,mkdir}, @ref{XREFrmdir,,rmdir}}
@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 getpwent libinterp/corefcn/getpwent.cc
@anchor{XREFgetpwent}
@deftypefn {Built-in 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 getpwuid libinterp/corefcn/getpwent.cc
@anchor{XREFgetpwuid}
@deftypefn {Built-in 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 getpwnam libinterp/corefcn/getpwent.cc
@anchor{XREFgetpwnam}
@deftypefn {Built-in 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 setpwent libinterp/corefcn/getpwent.cc
@anchor{XREFsetpwent}
@deftypefn {Built-in Function} {} setpwent ()
Return the internal pointer to the beginning of the password database.
@end deftypefn
@c endpwent libinterp/corefcn/getpwent.cc
@anchor{XREFendpwent}
@deftypefn {Built-in 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 getgrent libinterp/corefcn/getgrent.cc
@anchor{XREFgetgrent}
@deftypefn {Built-in Function} {@var{grp_struct} =} getgrent ()
Return an entry from the group database, opening it if necessary.
Once the end of data has been reached, @code{getgrent} returns 0.
@end deftypefn
@c getgrgid libinterp/corefcn/getgrent.cc
@anchor{XREFgetgrgid}
@deftypefn {Built-in 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 getgrnam libinterp/corefcn/getgrent.cc
@anchor{XREFgetgrnam}
@deftypefn {Built-in 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 setgrent libinterp/corefcn/getgrent.cc
@anchor{XREFsetgrent}
@deftypefn {Built-in Function} {} setgrent ()
Return the internal pointer to the beginning of the group database.
@end deftypefn
@c endgrent libinterp/corefcn/getgrent.cc
@anchor{XREFendgrent}
@deftypefn {Built-in Function} {} endgrent ()
Close the group database.
@end deftypefn
@node System Information
@section System Information
@c computer scripts/miscellaneous/computer.m
@anchor{XREFcomputer}
@deftypefn {Function File} {[@var{c}, @var{maxsize}, @var{endian}] =} computer ()
@deftypefnx {Function File} {@var{arch} =} computer ("arch")
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 (@qcode{"B"} for big-endian or
@qcode{"L"} for little-endian).
If the argument @qcode{"arch"} is specified, return a string
indicating the architecture of the computer on which Octave is
running.
@end deftypefn
@c uname libinterp/corefcn/syscalls.cc
@anchor{XREFuname}
@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 nproc libinterp/corefcn/nproc.cc
@anchor{XREFnproc}
@deftypefn {Built-in Function} {} nproc ()
@deftypefnx {Built-in Function} {} nproc (@var{query})
Return the current number of available processors.
If called with the optional argument @var{query}, modify how processors
are counted as follows:
@table @code
@item all
total number of processors.
@item current
processors available to the current process.
@item overridable
likewise, but overridable through the @w{@env{OMP_NUM_THREADS}} environment
variable.
@end table
@end deftypefn
@c ispc scripts/miscellaneous/ispc.m
@anchor{XREFispc}
@deftypefn {Function File} {} ispc ()
Return true if Octave is running on a Windows system and false otherwise.
@seealso{@ref{XREFisunix,,isunix}, @ref{XREFismac,,ismac}}
@end deftypefn
@c isunix scripts/miscellaneous/isunix.m
@anchor{XREFisunix}
@deftypefn {Function File} {} isunix ()
Return true if Octave is running on a Unix-like system and false otherwise.
@seealso{@ref{XREFismac,,ismac}, @ref{XREFispc,,ispc}}
@end deftypefn
@c ismac scripts/miscellaneous/ismac.m
@anchor{XREFismac}
@deftypefn {Function File} {} ismac ()
Return true if Octave is running on a Mac OS X system and false otherwise.
@seealso{@ref{XREFisunix,,isunix}, @ref{XREFispc,,ispc}}
@end deftypefn
@c isieee libinterp/corefcn/sysdep.cc
@anchor{XREFisieee}
@deftypefn {Built-in Function} {} isieee ()
Return true if your computer @emph{claims} to conform to the IEEE standard
for floating point calculations. No actual tests are performed.
@end deftypefn
@c isdeployed scripts/miscellaneous/isdeployed.m
@anchor{XREFisdeployed}
@deftypefn {Function File} {} isdeployed ()
Return true if the current program has been compiled and is running
separately from the Octave interpreter and false if it is running in
the Octave interpreter. Currently, this function always returns
false in Octave.
@end deftypefn
@c OCTAVE_HOME libinterp/corefcn/defaults.cc
@anchor{XREFOCTAVE_HOME}
@deftypefn {Built-in Function} {} OCTAVE_HOME ()
Return the name of the top-level Octave installation directory.
@seealso{@ref{XREFEXEC_PATH,,EXEC_PATH}, @ref{XREFIMAGE_PATH,,IMAGE_PATH}}
@end deftypefn
@c matlabroot scripts/path/matlabroot.m
@anchor{XREFmatlabroot}
@deftypefn {Function File} {} matlabroot ()
Return the name of the top-level Octave installation directory.
This is an alias for the function @w{@code{OCTAVE_HOME}} provided
for compatibility.
@seealso{@ref{XREFOCTAVE_HOME,,OCTAVE_HOME}}
@end deftypefn
@c OCTAVE_VERSION libinterp/corefcn/defaults.cc
@anchor{XREFOCTAVE_VERSION}
@deftypefn {Built-in Function} {} OCTAVE_VERSION ()
Return the version number of Octave, as a string.
@end deftypefn
@c version scripts/miscellaneous/version.m
@anchor{XREFversion}
@deftypefn {Function File} {} version ()
Return the version number of Octave, as a string.
This is an alias for the function @w{@env{OCTAVE_VERSION}} provided for
compatibility.
@seealso{@ref{XREFOCTAVE_VERSION,,OCTAVE_VERSION}}
@end deftypefn
@c ver scripts/miscellaneous/ver.m
@anchor{XREFver}
@deftypefn {Function File} {} ver ()
@deftypefnx {Function File} {v =} ver ()
@deftypefnx {Function File} {v =} ver ("Octave")
@deftypefnx {Function File} {v =} ver (@var{package})
Display a header containing the current Octave version number, license
string, and operating system followed by a list of installed packages,
versions, and installation directories.
@code{v = ver ()}
Return a vector of structures describing 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 of the version/revision.
@end table
@code{v = ver ("Octave")}
Return version information for Octave only.
@code{v = ver (@var{package})}
Return version information for @var{package}.
@seealso{@ref{XREFversion,,version}, @ref{XREFoctave_config_info,,octave_config_info}}
@end deftypefn
@c compare_versions scripts/miscellaneous/compare_versions.m
@anchor{XREFcompare_versions}
@deftypefn {Function File} {} compare_versions (@var{v1}, @var{v2}, @var{operator})
Compare two version strings using the given @var{operator}.
This function assumes that versions @var{v1} and @var{v2} are
arbitrarily long strings made of numeric and period characters
possibly followed by an arbitrary string (e.g., @qcode{"1.2.3"},
@qcode{"0.3"}, @qcode{"0.1.2+"}, or @qcode{"1.2.3.4-test1"}).
The version is first split into numeric and character portions
and then the parts are padded to be the same length (i.e., @qcode{"1.1"}
would be padded to be @qcode{"1.1.0"} when being compared with
@qcode{"1.1.1"}, and separately, the character parts of the strings are
padded with nulls).
The operator can be any logical operator from the set
@itemize @bullet
@item
@qcode{"=="}
equal
@item
@qcode{"<"}
less than
@item
@qcode{"<="}
less than or equal to
@item
@qcode{">"}
greater than
@item
@qcode{">="}
greater than or equal to
@item
@qcode{"!="}
not equal
@item
@qcode{"~="}
not equal
@end itemize
Note that version @qcode{"1.1-test2"} will compare as greater than
@qcode{"1.1-test10"}. Also, since the numeric part is compared first,
@qcode{"a"} compares less than @qcode{"1a"} because the second string
starts with a numeric part even though @code{double ("a")} is greater than
@code{double ("1").}
@end deftypefn
@c license scripts/miscellaneous/license.m
@anchor{XREFlicense}
@deftypefn {Command} {} license
@deftypefnx {Function File} {} license ("inuse")
@deftypefnx {Function File} {@var{retval} =} license ("inuse")
@deftypefnx {Function File} {@var{retval} =} license ("test", @var{feature})
@deftypefnx {Function File} {} license ("test", @var{feature}, @var{toggle})
@deftypefnx {Function File} {@var{retval} =} license ("checkout", @var{feature})
Display the license of Octave.
@code{license ("inuse")}
Display a list of packages currently being used.
@code{@var{retval} = license ("inuse")}
Return a structure containing the fields @code{feature} and @code{user}.
@code{@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.
@code{license ("test", @var{feature}, @var{toggle})}
Enable or disable license testing for @var{feature}, depending on
@var{toggle}, which may be one of:
@table @asis
@item @qcode{"enable"}
Future tests for the specified license of @var{feature} are conducted
as usual.
@item @qcode{"disable"}
Future tests for the specified license of @var{feature} return 0.
@end table
@code{@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{XREFver,,ver}, @ref{XREFversion,,version}}
@end deftypefn
@c octave_config_info libinterp/corefcn/toplev.cc
@anchor{XREFoctave_config_info}
@deftypefn {Built-in Function} {} octave_config_info ()
@deftypefnx {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 getrusage libinterp/corefcn/getrusage.cc
@anchor{XREFgetrusage}
@deftypefn {Built-in 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@. The list of possible
fields is:
@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 md5sum libinterp/corefcn/md5sum.cc
@anchor{XREFmd5sum}
@deftypefn {Built-in Function} {} md5sum (@var{file})
@deftypefnx {Built-in Function} {} md5sum (@var{str}, @var{opt})
Calculate 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
|