File: hr.gmo

package info (click to toggle)
bash 5.3-2
  • links: PTS
  • area: main
  • in suites: sid
  • size: 44,432 kB
  • sloc: ansic: 134,747; sh: 8,866; yacc: 5,966; makefile: 4,697; perl: 4,105; asm: 48; awk: 23; sed: 16
file content (2915 lines) | stat: -rw-r--r-- 184,243 bytes parent folder | download | duplicates (2)
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
eD5l&@3*A3l3<3$3
333
4
4,4A4X4	n4x44444455 /5P5d5(5/5;5$6::6u66(6'6"67(7)E7o7377&7&7/!8/Q88.8+88/949E9c9"9999-9:%:B:(S:|::::::);8;W;u;;;;;; <!%<G<]<,w<< <<+<
=0)='Z=.==0==>,>?>O>b>y>>>>
>>?&+?R?h?/???)?@+@3:@n@@@@&@@@A
A!A@A _A9A#AAABBHEBIRIbIFnIJJJJ	J	J%K'Q
;Q[1\m2\]2]_]aYcT2gimhq+w'z||?j}r__g̡4u'v|g
F[v?Ƕ )0	@JSg	{N۷J],+=XfDQb	P@x
"g<5quFFNLqy>sv
Z|ID$%%	%g	&q*y******W,
,,,,5,O-Bc.x.B6Eb66
66}6V9Xj99*9
:
:(:>l@{@eAF#F
;FFFWFiF%F$F'FF%G5GNG.hGGG!GGH,H9H'PH0xHH9HIII%0I.VI4I)II$J)J=J
NJ\JlJ&uJ'J3J9J2K6DK6{KK.FL:uL3L	LL!M
)M37MkM=MMM
M)N2N'RNzNN&NN*N*O)2O)\OOO%O%O OP)PHP-TP#P1P&P&P&&Q5MQ.QQQ!Q!R:"R]RzR RR0R1R+SS#rT(T$TT$T#U':UbUSjU.UUV"V8V)OV
yVVVVVV,V%W!DW,fW"W!WW.W?X+VXXXX1XX#X@Y
XYfYY-Y,Y'Y!Z<Z.LZ,{Z&Z*Z0Z6+[Gb[:[P[(6\ _\)\\\"\?\T8]]]
]8]V]&R^'y^4^^^_(_D_\_s_____#_`"`@`5M`O````	`a5 aVava
~a
a+a9a;a$6b[bdyb$bc"c.c:cSc qccccHcd,dIdVd"id+dddd4d
%eD0e?ue,eee2
f!@f"bf"f0fff	gpg
gfg1g/%h)Uh-h3hh&h2"i5Ui,i
i"i
i1iI#j4mjj.j>j)'kNQk	kk k"k%k l
:lHlUl&bl=ll'lGmNmlmm,m$mAm<4nqnnnn&n6no3oQQo*ooo%p.(p-Wp7p6p2p1'q*Yq,q,q;q#r>rFr\r#|rr6rr
s*s"Gsjs6s	s-s-s#'tKt'Wt'tttt+v:vD3w/xw
w3ww
w'w"x9x!Px	rx|x xx+xx$y 5yVy(jyy&y4y@zAHz+zHzz"{;4{0p{({{!{;|$?|Ad||3|#|>}>U}}5}6}~86~o~.~ ~2~8#Uy(,7Sj6)"&)%Pv"#߁7;!X.zۂ+E,+rCH!?a{„!܄2N!_$ą2C Y!z4ц@.L {
/!"2"U$x/(͈%2b.2ّ
 .= OpG1T-ǦۨNA%
-KC	M,8
?JZuE
P~Xa!bZ!$-Ft-L?Xr#


$=	DNNNt2		990DjU	]V`'',,/334"J6m9;=eq>@?;@*T@AaCRE[EtrEHLtUX`Zmm{Rttt	uu	ezozzz
zz.|	|||}, }M};~yISІ$9K\^#\<ҊVq>Ï+Ɛ+7(O/x3.ܖ((!Q's62җ$0*![ }%&ژ=?A^!™˙(;
@F5%$
,:	S+],CD?8T8Ɯ=~GC	H5R0FȞ"W2106D6B{#Ѡ0&-C-q++ˡ!0+/\7%Ģ)2%DX91ף2	1<4n9ݤ"61O8#"ޥ$&:>JyĦ/x&%Ϩ&1)-[Z2" C_y,$̪	#>*N7y)1۫-
,;hC{@45>T5l0L3$E#j2,),E8Z5Fɯ6:G7PCNO7'ֱ$#>$VL{aȲ*?PFa_-@6:w!Դ..Ll/ȵ"ߵ&)+BnCYö5E
R"]F#Ƿ

-A@L<ϸ)66¹ '!4V s)ٺZQ(l0»6**UeArHüG7T;'(&F@m!	84SmI9=E-A4D(1m:
9J7O%-A&1hV	"&6)]'$A!F6h`( )'J0r.MD ey%A4YI*6E6>|980./_(..C2Z	!0?
[%i,"Q1B>B!U/L)|
Jd}s./J?	SF<i\3Kh:nQ0#`v
NRM~UL]=H(&Xu|dr4H&!'O1P^WS aN$ Cm
1*=5E	`1%97tYcajmc/["+V];H*-QL,xW6I-2|3y\YPGh)eo+<@?Pl7eb,n";7t
8^8ZN\V[MFXgRT_Ip,:F@^Ul62BD]!Zp GUA/:If4K2;9s=[&V>qM_G0%K>{d)TTSEw$byB-rL#Zu}v"gD#A+b5?

94QacEq_@'e`3.Jz.O{(wOA05z(BkiC%~k	6f<)8>YxR*!X'C$DWjotimed out waiting for input: auto-logout
	-%s or -o option
	-ilrsD or -c command or -O shopt_option		(invocation only)

malloc: %s:%d: assertion botched
  (wd: %s) (core dumped) line ! PIPELINE$%s: cannot assign in this way%c%c: invalid option%s can be invoked via %s has null exportstr%s is %s
%s is a function
%s is a shell builtin
%s is a shell keyword
%s is a special shell builtin
%s is aliased to `%s'
%s is hashed (%s)
%s is not bound to any keys.
%s out of range%s%s%s: %s (error token is "%s")%s: %s out of range%s: %s: cannot open as FILE%s: %s: compatibility value out of range%s: %s: invalid value for trace file descriptor%s: %s: must use subscript when assigning associative array%s: %s:%d: cannot allocate %lu bytes%s: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)%s: Is a directory%s: ambiguous job spec%s: arguments must be process or job IDs%s: assigning integer to name reference%s: bad network path specification%s: bad substitution%s: binary operator expected%s: builtin names may not contain slashes%s: cannot allocate %lu bytes%s: cannot allocate %lu bytes (%lu bytes allocated)%s: cannot assign%s: cannot assign list to array member%s: cannot assign to non-numeric index%s: cannot convert associative to indexed array%s: cannot convert indexed to associative array%s: cannot delete: %s%s: cannot destroy array variables in this way%s: cannot execute: required file not found%s: cannot export%s: cannot inherit value from incompatible type%s: cannot unset%s: cannot unset: readonly %s%s: circular name reference%s: dynamic builtin already loaded%s: expression error
%s: file is too large%s: file not found%s: first non-whitespace character is not `"'%s: hash table empty
%s: history expansion failed%s: host unknown%s: ignoring function definition attempt%s: illegal option -- %c
%s: integer expected%s: invalid action name%s: invalid argument%s: invalid array origin%s: invalid callback quantum%s: invalid file descriptor specification%s: invalid indirect expansion%s: invalid job specification%s: invalid limit argument%s: invalid line count%s: invalid option%s: invalid option name%s: invalid service%s: invalid shell option name%s: invalid signal specification%s: invalid timeout specification%s: invalid timestamp%s: invalid variable name%s: invalid variable name for name reference%s: is a directory%s: job %d already in background%s: job has terminated%s: job specification requires leading `%%'%s: line %d: %s: maximum function nesting level exceeded (%d)%s: maximum nameref depth (%d) exceeded%s: maximum source nesting level exceeded (%d)%s: missing separator%s: nameref variable self references not allowed%s: no completion specification%s: no current jobs%s: no job control%s: no such job%s: not a function%s: not a regular file%s: not a shell builtin%s: not an array variable%s: not an indexed array%s: not dynamically loaded%s: not found%s: numeric argument required%s: option requires an argument%s: option requires an argument -- %c
%s: parameter not set%s: parameter null or not set%s: quoted compound array assignment deprecated%s: readonly function%s: readonly variable%s: reference variable cannot be an array%s: removing nameref attribute%s: restricted%s: restricted: cannot specify `/' in command names%s: substring expression < 0%s: unary operator expected%s: unbound variable%s: usage: %s: variable may not be assigned value'

(( expression ))(core dumped) (wd now: %s)
++: assignment requires lvalue--: assignment requires lvalue. [-p path] filename [arguments]/dev/(tcp|udp)/host/port not supported without networking/tmp must be a valid directory name<no current directory>ABORT instructionAborting...Add directories to stack.
    
    Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.
    
    Options:
      -n	Suppresses the normal change of directory when adding
    		directories to the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    		from the left of the list shown by `dirs', starting with
    		zero) is at the top.
    
      -N	Rotates the stack so that the Nth directory (counting
    		from the right of the list shown by `dirs', starting with
    		zero) is at the top.
    
      dir	Adds DIR to the directory stack at the top, making it the
    		new current working directory.
    
    The `dirs' builtin displays the directory stack.
    
    Exit Status:
    Returns success unless an invalid argument is supplied or the directory
    change fails.Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.
    
    Options:
      -n	Suppresses the normal change of directory when adding
    	directories to the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    	from the left of the list shown by `dirs', starting with
    	zero) is at the top.
    
      -N	Rotates the stack so that the Nth directory (counting
    	from the right of the list shown by `dirs', starting with
    	zero) is at the top.
    
      dir	Adds DIR to the directory stack at the top, making it the
    	new current working directory.
    
    The `dirs' builtin displays the directory stack.Alarm (profile)Alarm (virtual)Alarm clockArithmetic for loop.
    
    Equivalent to
    	(( EXP1 ))
    	while (( EXP2 )); do
    		COMMANDS
    		(( EXP3 ))
    	done
    EXP1, EXP2, and EXP3 are arithmetic expressions.  If any expression is
    omitted, it behaves as if it evaluates to 1.
    
    Exit Status:
    Returns the status of the last command executed.BPT trace/trapBad system callBogus signalBroken pipeBus errorCPU limitChange the shell working directory.
    
    Change the current directory to DIR.  The default DIR is the value of the
    HOME shell variable. If DIR is "-", it is converted to $OLDPWD.
    
    The variable CDPATH defines the search path for the directory containing
    DIR.  Alternative directory names in CDPATH are separated by a colon (:).
    A null directory name is the same as the current directory.  If DIR begins
    with a slash (/), then CDPATH is not used.
    
    If the directory is not found, and the shell option `cdable_vars' is set,
    the word is assumed to be  a variable name.  If that variable has a value,
    its value is used for DIR.
    
    Options:
      -L	force symbolic links to be followed: resolve symbolic
    		links in DIR after processing instances of `..'
      -P	use the physical directory structure without following
    		symbolic links: resolve symbolic links in DIR before
    		processing instances of `..'
      -e	if the -P option is supplied, and the current working
    		directory cannot be determined successfully, exit with
    		a non-zero status
      -@	on systems that support it, present a file with extended
    		attributes as a directory containing the file attributes
    
    The default is to follow symbolic links, as if `-L' were specified.
    `..' is processed by removing the immediately previous pathname component
    back to a slash or the beginning of DIR.
    
    Exit Status:
    Returns 0 if the directory is changed, and if $PWD is set successfully when
    -P is used; non-zero otherwise.Child death or stopCommon shell variable names and usage.
    
    BASH_VERSION	Version information for this Bash.
    CDPATH	A colon-separated list of directories to search
    		for directories given as arguments to `cd'.
    GLOBIGNORE	A colon-separated list of patterns describing filenames to
    		be ignored by pathname expansion.
    HISTFILE	The name of the file where your command history is stored.
    HISTFILESIZE	The maximum number of lines this file can contain.
    HISTSIZE	The maximum number of history lines that a running
    		shell can access.
    HOME	The complete pathname to your login directory.
    HOSTNAME	The name of the current host.
    HOSTTYPE	The type of CPU this version of Bash is running under.
    IGNOREEOF	Controls the action of the shell on receipt of an EOF
    		character as the sole input.  If set, then the value
    		of it is the number of EOF characters that can be seen
    		in a row on an empty line before the shell will exit
    		(default 10).  When unset, EOF signifies the end of input.
    MACHTYPE	A string describing the current system Bash is running on.
    MAILCHECK	How often, in seconds, Bash checks for new mail.
    MAILPATH	A colon-separated list of filenames which Bash checks
    		for new mail.
    OSTYPE	The version of Unix this version of Bash is running on.
    PATH	A colon-separated list of directories to search when
    		looking for commands.
    PROMPT_COMMAND	A command to be executed before the printing of each
    		primary prompt.
    PS1		The primary prompt string.
    PS2		The secondary prompt string.
    PWD		The full pathname of the current directory.
    SHELLOPTS	A colon-separated list of enabled shell options.
    TERM	The name of the current terminal type.
    TIMEFORMAT	The output format for timing statistics displayed by the
    		`time' reserved word.
    auto_resume	Non-null means a command word appearing on a line by
    		itself is first looked for in the list of currently
    		stopped jobs.  If found there, that job is foregrounded.
    		A value of `exact' means that the command word must
    		exactly match a command in the list of stopped jobs.  A
    		value of `substring' means that the command word must
    		match a substring of the job.  Any other value means that
    		the command must be a prefix of a stopped job.
    histchars	Characters controlling history expansion and quick
    		substitution.  The first character is the history
    		substitution character, usually `!'.  The second is
    		the `quick substitution' character, usually `^'.  The
    		third is the `history comment' character, usually `#'.
    HISTIGNORE	A colon-separated list of patterns used to decide which
    		commands should be saved on the history list.
ContinueCopyright (C) 2025 Free Software Foundation, Inc.Create a coprocess named NAME.
    
    Execute COMMAND asynchronously, with the standard output and standard
    input of the command connected via a pipe to file descriptors assigned
    to indices 0 and 1 of an array variable NAME in the executing shell.
    The default NAME is "COPROC".
    
    Exit Status:
    The coproc command returns an exit status of 0.DEBUG warning: Define local variables.
    
    Create a local variable called NAME, and give it VALUE.  OPTION can
    be any option accepted by `declare'.
    
    If any NAME is "-", local saves the set of shell options and restores
    them when the function returns.
    
    Local variables can only be used within a function; they are visible
    only to the function where they are defined and its children.
    
    Exit Status:
    Returns success unless an invalid option is supplied, a variable
    assignment error occurs, or the shell is not executing a function.Define or display aliases.
    
    Without arguments, `alias' prints the list of aliases in the reusable
    form `alias NAME=VALUE' on standard output.
    
    Otherwise, an alias is defined for each NAME whose VALUE is given.
    A trailing space in VALUE causes the next word to be checked for
    alias substitution when the alias is expanded.
    
    Options:
      -p	print all defined aliases in a reusable format
    
    Exit Status:
    alias returns true unless a NAME is supplied for which no alias has been
    defined.Define shell function.
    
    Create a shell function named NAME.  When invoked as a simple command,
    NAME runs COMMANDs in the calling shell's context.  When NAME is invoked,
    the arguments are passed to the function as $1...$n, and the function's
    name is in $FUNCNAME.
    
    Exit Status:
    Returns success unless NAME is readonly.Display directory stack.
    
    Display the list of currently remembered directories.  Directories
    find their way onto the list with the `pushd' command; you can get
    back up through the list with the `popd' command.
    
    Options:
      -c	clear the directory stack by deleting all of the elements
      -l	do not print tilde-prefixed versions of directories relative
    		to your home directory
      -p	print the directory stack with one entry per line
      -v	print the directory stack with one entry per line prefixed
    		with its position in the stack
    
    Arguments:
      +N	Displays the Nth entry counting from the left of the list
    		shown by dirs when invoked without options, starting with
    		zero.
    
      -N	Displays the Nth entry counting from the right of the list
    		shown by dirs when invoked without options, starting with
    		zero.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Display information about builtin commands.
    
    Displays brief summaries of builtin commands.  If PATTERN is
    specified, gives detailed help on all commands matching PATTERN,
    otherwise the list of help topics is printed.
    
    Options:
      -d	output short description for each topic
      -m	display usage in pseudo-manpage format
      -s	output only a short usage synopsis for each topic matching
    		PATTERN
    
    Arguments:
      PATTERN	Pattern specifying a help topic
    
    Exit Status:
    Returns success unless PATTERN is not found or an invalid option is given.Display information about command type.
    
    For each NAME, indicate how it would be interpreted if used as a
    command name.
    
    Options:
      -a	display all locations containing an executable named NAME;
    		includes aliases, builtins, and functions, if and only if
    		the `-p' option is not also used
      -f	suppress shell function lookup
      -P	force a PATH search for each NAME, even if it is an alias,
    		builtin, or function, and returns the name of the disk file
    		that would be executed
      -p	returns either the name of the disk file that would be executed,
    		or nothing if `type -t NAME' would not return `file'
      -t	output a single word which is one of `alias', `keyword',
    		`function', `builtin', `file' or `', if NAME is an alias,
    		shell reserved word, shell function, shell builtin, disk file,
    		or not found, respectively
    
    Arguments:
      NAME	Command name to be interpreted.
    
    Exit Status:
    Returns success if all of the NAMEs are found; fails if any are not found.Display or execute commands from the history list.
    
    fc is used to list or edit and re-execute commands from the history list.
    FIRST and LAST can be numbers specifying the range, or FIRST can be a
    string, which means the most recent command beginning with that
    string.
    
    Options:
      -e ENAME	select which editor to use.  Default is FCEDIT, then EDITOR,
    		then vi
      -l 	list lines instead of editing
      -n	omit line numbers when listing
      -r	reverse the order of the lines (newest listed first)
    
    With the `fc -s [pat=rep ...] [command]' format, COMMAND is
    re-executed after the substitution OLD=NEW is performed.
    
    A useful alias to use with this is r='fc -s', so that typing `r cc'
    runs the last command beginning with `cc' and typing `r' re-executes
    the last command.
    
    The history builtin also operates on the history list.
    
    Exit Status:
    Returns success or status of executed command; non-zero if an error occurs.Display or manipulate the history list.
    
    Display the history list with line numbers, prefixing each modified
    entry with a `*'.  An argument of N lists only the last N entries.
    
    Options:
      -c	clear the history list by deleting all of the entries
      -d offset	delete the history entry at position OFFSET. Negative
    		offsets count back from the end of the history list
      -d start-end	delete the history entries beginning at position START
    		through position END.
    
      -a	append history lines from this session to the history file
      -n	read all history lines not already read from the history file
    		and append them to the history list
      -r	read the history file and append the contents to the history
    		list
      -w	write the current history to the history file
    
      -p	perform history expansion on each ARG and display the result
    		without storing it in the history list
      -s	append the ARGs to the history list as a single entry
    
    If FILENAME is given, it is used as the history file.  Otherwise,
    if HISTFILE has a value, that is used. If FILENAME is not supplied
    and HISTFILE is unset or null, the -a, -n, -r, and -w options have
    no effect and return success.
    
    The fc builtin also operates on the history list.
    
    If the HISTTIMEFORMAT variable is set and not null, its value is used
    as a format string for strftime(3) to print the time stamp associated
    with each displayed history entry.  No time stamps are printed otherwise.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.Display or set file mode mask.
    
    Sets the user file-creation mask to MODE.  If MODE is omitted, prints
    the current value of the mask.
    
    If MODE begins with a digit, it is interpreted as an octal number;
    otherwise it is a symbolic mode string like that accepted by chmod(1).
    
    Options:
      -p	if MODE is omitted, output in a form that may be reused as input
      -S	makes the output symbolic; otherwise an octal number is output
    
    Exit Status:
    Returns success unless MODE is invalid or an invalid option is given.Display possible completions depending on the options.
    
    Intended to be used from within a shell function generating possible
    completions.  If the optional WORD argument is present, generate matches
    against WORD.
    
    If the -V option is supplied, store the possible completions in the indexed
    array VARNAME instead of printing them to the standard output.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Display process times.
    
    Prints the accumulated user and system times for the shell and all of its
    child processes.
    
    Exit Status:
    Always succeeds.Display status of jobs.
    
    Lists the active jobs.  JOBSPEC restricts output to that job.
    Without options, the status of all active jobs is displayed.
    
    Options:
      -l	lists process IDs in addition to the normal information
      -n	lists only processes that have changed status since the last
    		notification
      -p	lists process IDs only
      -r	restrict output to running jobs
      -s	restrict output to stopped jobs
    
    If -x is supplied, COMMAND is run after all job specifications that
    appear in ARGS have been replaced with the process ID of that job's
    process group leader.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.
    If -x is used, returns the exit status of COMMAND.Display the list of currently remembered directories.  Directories
    find their way onto the list with the `pushd' command; you can get
    back up through the list with the `popd' command.
    
    Options:
      -c	clear the directory stack by deleting all of the elements
      -l	do not print tilde-prefixed versions of directories relative
    	to your home directory
      -p	print the directory stack with one entry per line
      -v	print the directory stack with one entry per line prefixed
    	with its position in the stack
    
    Arguments:
      +N	Displays the Nth entry counting from the left of the list shown by
    	dirs when invoked without options, starting with zero.
    
      -N	Displays the Nth entry counting from the right of the list shown by
	dirs when invoked without options, starting with zero.DoneDone(%d)EMT instructionEnable and disable shell builtins.
    
    Enables and disables builtin shell commands.  Disabling allows you to
    execute a disk command which has the same name as a shell builtin
    without using a full pathname.
    
    Options:
      -a	print a list of builtins showing whether or not each is enabled
      -n	disable each NAME or display a list of disabled builtins
      -p	print the list of builtins in a reusable format
      -s	print only the names of Posix `special' builtins
    
    Options controlling dynamic loading:
      -f	Load builtin NAME from shared object FILENAME
      -d	Remove a builtin loaded with -f
    
    Without options, each NAME is enabled.
    
    On systems with dynamic loading, the shell variable BASH_LOADABLES_PATH
    defines a search path for the directory containing FILENAMEs that do
    not contain a slash. It may include "." to force a search of the current
    directory.
    
    To use the `test' found in $PATH instead of the shell builtin
    version, type `enable -n test'.
    
    Exit Status:
    Returns success unless NAME is not a shell builtin or an error occurs.Evaluate arithmetic expression.
    
    The EXPRESSION is evaluated according to the rules for arithmetic
    evaluation.  Equivalent to `let "EXPRESSION"'.
    
    Exit Status:
    Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise.Evaluate arithmetic expressions.
    
    Evaluate each ARG as an arithmetic expression.  Evaluation is done in
    fixed-width integers with no check for overflow, though division by 0
    is trapped and flagged as an error.  The following list of operators is
    grouped into levels of equal-precedence operators.  The levels are listed
    in order of decreasing precedence.
    
    	id++, id--	variable post-increment, post-decrement
    	++id, --id	variable pre-increment, pre-decrement
    	-, +		unary minus, plus
    	!, ~		logical and bitwise negation
    	**		exponentiation
    	*, /, %		multiplication, division, remainder
    	+, -		addition, subtraction
    	<<, >>		left and right bitwise shifts
    	<=, >=, <, >	comparison
    	==, !=		equality, inequality
    	&		bitwise AND
    	^		bitwise XOR
    	|		bitwise OR
    	&&		logical AND
    	||		logical OR
    	expr ? expr : expr
    			conditional operator
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=	assignment
    
    Shell variables are allowed as operands.  The name of the variable
    is replaced by its value (coerced to a fixed-width integer) within
    an expression.  The variable need not have its integer attribute
    turned on to be used in an expression.
    
    Operators are evaluated in order of precedence.  Sub-expressions in
    parentheses are evaluated first and may override the precedence
    rules above.
    
    Exit Status:
    If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.Evaluate conditional expression.
    
    Exits with a status of 0 (true) or 1 (false) depending on
    the evaluation of EXPR.  Expressions may be unary or binary.  Unary
    expressions are often used to examine the status of a file.  There
    are string operators and numeric comparison operators as well.
    
    The behavior of test depends on the number of arguments.  Read the
    bash manual page for the complete specification.
    
    File operators:
    
      -a FILE        True if file exists.
      -b FILE        True if file is block special.
      -c FILE        True if file is character special.
      -d FILE        True if file is a directory.
      -e FILE        True if file exists.
      -f FILE        True if file exists and is a regular file.
      -g FILE        True if file is set-group-id.
      -h FILE        True if file is a symbolic link.
      -L FILE        True if file is a symbolic link.
      -k FILE        True if file has its `sticky' bit set.
      -p FILE        True if file is a named pipe.
      -r FILE        True if file is readable by you.
      -s FILE        True if file exists and is not empty.
      -S FILE        True if file is a socket.
      -t FD          True if FD is opened on a terminal.
      -u FILE        True if the file is set-user-id.
      -w FILE        True if the file is writable by you.
      -x FILE        True if the file is executable by you.
      -O FILE        True if the file is effectively owned by you.
      -G FILE        True if the file is effectively owned by your group.
      -N FILE        True if the file has been modified since it was last read.
    
      FILE1 -nt FILE2  True if file1 is newer than file2 (according to
                       modification date).
    
      FILE1 -ot FILE2  True if file1 is older than file2.
    
      FILE1 -ef FILE2  True if file1 is a hard link to file2.
    
    String operators:
    
      -z STRING      True if string is empty.
    
      -n STRING
         STRING      True if string is not empty.
    
      STRING1 = STRING2
                     True if the strings are equal.
      STRING1 != STRING2
                     True if the strings are not equal.
      STRING1 < STRING2
                     True if STRING1 sorts before STRING2 lexicographically.
      STRING1 > STRING2
                     True if STRING1 sorts after STRING2 lexicographically.
    
    Other operators:
    
      -o OPTION      True if the shell option OPTION is enabled.
      -v VAR         True if the shell variable VAR is set.
      -R VAR         True if the shell variable VAR is set and is a name
                     reference.
      ! EXPR         True if expr is false.
      EXPR1 -a EXPR2 True if both expr1 AND expr2 are true.
      EXPR1 -o EXPR2 True if either expr1 OR expr2 is true.
    
      arg1 OP arg2   Arithmetic tests.  OP is one of -eq, -ne,
                     -lt, -le, -gt, or -ge.
    
    Arithmetic binary operators return true if ARG1 is equal, not-equal,
    less-than, less-than-or-equal, greater-than, or greater-than-or-equal
    than ARG2.
    
    Exit Status:
    Returns success if EXPR evaluates to true; fails if EXPR evaluates to
    false or an invalid argument is given.Evaluate conditional expression.
    
    This is a synonym for the "test" builtin, but the last argument must
    be a literal `]', to match the opening `['.Execute PIPELINE, which can be a simple command, and negate PIPELINE's
    return status.
    
    Exit Status:
    The logical negation of PIPELINE's return status.Execute a simple command or display information about commands.
    
    Runs COMMAND with ARGS suppressing  shell function lookup, or display
    information about the specified COMMANDs.  Can be used to invoke commands
    on disk when a function with the same name exists.
    
    Options:
      -p    use a default value for PATH that is guaranteed to find all of
            the standard utilities
      -v    print a single word indicating the command or filename that
            invokes COMMAND
      -V    print a more verbose description of each COMMAND
    
    Exit Status:
    Returns exit status of COMMAND, or failure if COMMAND is not found.Execute arguments as a shell command.
    
    Combine ARGs into a single string, use the result as input to the shell,
    and execute the resulting commands.
    
    Exit Status:
    Returns exit status of command or success if command is null.Execute commands as long as a test does not succeed.
    
    Expand and execute COMMANDS-2 as long as the final command in COMMANDS has
    an exit status which is not zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands as long as a test succeeds.
    
    Expand and execute COMMANDS-2 as long as the final command in COMMANDS has
    an exit status of zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on conditional.
    
    The `if COMMANDS' list is executed.  If its exit status is zero, then the
    `then COMMANDS' list is executed.  Otherwise, each `elif COMMANDS' list is
    executed in turn, and if its exit status is zero, the corresponding
    `then COMMANDS' list is executed and the if command completes.  Otherwise,
    the `else COMMANDS' list is executed, if present.  The exit status of the
    entire construct is the exit status of the last command executed, or zero
    if no condition tested true.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on pattern matching.
    
    Selectively execute COMMANDS based upon WORD matching PATTERN.  The
    `|' is used to separate multiple patterns.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands for each member in a list.
    
    The `for' loop executes a sequence of commands for each member in a
    list of items.  If `in WORDS ...;' is not present, then `in "$@"' is
    assumed.  For each element in WORDS, NAME is set to that element, and
    the COMMANDS are executed.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands from a file in the current shell.
    
    Read and execute commands from FILENAME in the current shell. If the
    -p option is supplied, the PATH argument is treated as a colon-
    separated list of directories to search for FILENAME. If -p is not
    supplied, $PATH is searched to find FILENAME. If any ARGUMENTS are
    supplied, they become the positional parameters when FILENAME is executed.
    
    Exit Status:
    Returns the status of the last command executed in FILENAME; fails if
    FILENAME cannot be read.Execute conditional command.
    
    Returns a status of 0 or 1 depending on the evaluation of the conditional
    expression EXPRESSION.  Expressions are composed of the same primaries used
    by the `test' builtin, and may be combined using the following operators:
    
      ( EXPRESSION )	Returns the value of EXPRESSION
      ! EXPRESSION		True if EXPRESSION is false; else false
      EXPR1 && EXPR2	True if both EXPR1 and EXPR2 are true; else false
      EXPR1 || EXPR2	True if either EXPR1 or EXPR2 is true; else false
    
    When the `==' and `!=' operators are used, the string to the right of
    the operator is used as a pattern and pattern matching is performed.
    When the `=~' operator is used, the string to the right of the operator
    is matched as a regular expression.
    
    The && and || operators do not evaluate EXPR2 if EXPR1 is sufficient to
    determine the expression's value.
    
    Exit Status:
    0 or 1 depending on value of EXPRESSION.Execute shell builtins.
    
    Execute SHELL-BUILTIN with arguments ARGs without performing command
    lookup.  This is useful when you wish to reimplement a shell builtin
    as a shell function, but need to execute the builtin within the function.
    
    Exit Status:
    Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is
    not a shell builtin.Exit %dExit a login shell.
    
    Exits a login shell with exit status N.  Returns an error if not executed
    in a login shell.Exit for, while, or until loops.
    
    Exit a FOR, WHILE or UNTIL loop.  If N is specified, break N enclosing
    loops.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Exit the shell.
    
    Exits the shell with a status of N.  If N is omitted, the exit status
    is that of the last command executed.File limitFloating point exceptionFormats and prints ARGUMENTS under control of the FORMAT.
    
    Options:
      -v var	assign the output to shell variable VAR rather than
    		display it on the standard output
    
    FORMAT is a character string which contains three types of objects: plain
    characters, which are simply copied to standard output; character escape
    sequences, which are converted and copied to the standard output; and
    format specifications, each of which causes printing of the next successive
    argument.
    
    In addition to the standard format characters csndiouxXeEfFgGaA described
    in printf(3), printf interprets:
    
      %b	expand backslash escape sequences in the corresponding argument
      %q	quote the argument in a way that can be reused as shell input
      %Q	like %q, but apply any precision to the unquoted argument before
    		quoting
      %(fmt)T	output the date-time string resulting from using FMT as a format
    	        string for strftime(3)
    
    The format is re-used as necessary to consume all of the arguments.  If
    there are fewer arguments than the format requires,  extra format
    specifications behave as if a zero value or null string, as appropriate,
    had been supplied.
    
    Exit Status:
    Returns success unless an invalid option is given or a write or assignment
    error occurs.GNU bash, version %s (%s)
GNU bash, version %s-(%s)
GNU long options:
General help using GNU software: <http://www.gnu.org/gethelp/>
Group commands as a unit.
    
    Run a set of commands in a group.  This is one way to redirect an
    entire set of commands.
    
    Exit Status:
    Returns the status of the last command executed.HFT input data pendingHFT monitor mode grantedHFT monitor mode retractedHFT sound sequence has completedHOME not setHangupI have no name!I/O readyINFORM: Illegal instructionInformation requestInterruptKilledLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
Mark shell variables as unchangeable.
    
    Mark each NAME as read-only; the values of these NAMEs may not be
    changed by subsequent assignment.  If VALUE is supplied, assign VALUE
    before marking as read-only.
    
    Options:
      -a	refer to indexed array variables
      -A	refer to associative array variables
      -f	refer to shell functions
      -p	display a list of all readonly variables or functions,
    		depending on whether or not the -f option is given
    
    An argument of `--' disables further option processing.
    
    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.Modify or display completion options.
    
    Modify the completion options for each NAME, or, if no NAMEs are supplied,
    the completion currently being executed.  If no OPTIONs are given, print
    the completion options for each NAME or the current completion specification.
    
    Options:
    	-o option	Set completion option OPTION for each NAME
    	-D		Change options for the "default" command completion
    	-E		Change options for the "empty" command completion
    	-I		Change options for completion on the initial word
    
    Using `+o' instead of `-o' turns off the specified option.
    
    Arguments:
    
    Each NAME refers to a command for which a completion specification must
    have previously been defined using the `complete' builtin.  If no NAMEs
    are supplied, compopt must be called by a function currently generating
    completions, and the options for that currently-executing completion
    generator are modified.
    
    Exit Status:
    Returns success unless an invalid option is supplied or NAME does not
    have a completion specification defined.Modify shell resource limits.
    
    Provides control over the resources available to the shell and processes
    it creates, on systems that allow such control.
    
    Options:
      -S	use the `soft' resource limit
      -H	use the `hard' resource limit
      -a	all current limits are reported
      -b	the socket buffer size
      -c	the maximum size of core files created
      -d	the maximum size of a process's data segment
      -e	the maximum scheduling priority (`nice')
      -f	the maximum size of files written by the shell and its children
      -i	the maximum number of pending signals
      -k	the maximum number of kqueues allocated for this process
      -l	the maximum size a process may lock into memory
      -m	the maximum resident set size
      -n	the maximum number of open file descriptors
      -p	the pipe buffer size
      -q	the maximum number of bytes in POSIX message queues
      -r	the maximum real-time scheduling priority
      -s	the maximum stack size
      -t	the maximum amount of cpu time in seconds
      -u	the maximum number of user processes
      -v	the size of virtual memory
      -x	the maximum number of file locks
      -P	the maximum number of pseudoterminals
      -R	the maximum time a real-time process can run before blocking
      -T	the maximum number of threads
    
    Not all options are available on all platforms.
    
    If LIMIT is given, it is the new value of the specified resource; the
    special LIMIT values `soft', `hard', and `unlimited' stand for the
    current soft limit, the current hard limit, and no limit, respectively.
    Otherwise, the current value of the specified resource is printed.  If
    no option is given, then -f is assumed.
    
    Values are in 1024-byte increments, except for -t, which is in seconds;
    -p, which is in increments of 512 bytes; -R, which is in microseconds;
    -b, which is in bytes; and -e, -i, -k, -n, -q, -r, -u, -x, and -P,
    which accept unscaled values.
    
    When in posix mode, values supplied with -c and -f are in 512-byte
    increments.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Move job to the foreground.
    
    Place the job identified by JOB_SPEC in the foreground, making it the
    current job.  If JOB_SPEC is not present, the shell's notion of the
    current job is used.
    
    Exit Status:
    Status of command placed in foreground, or failure if an error occurs.Move jobs to the background.
    
    Place the jobs identified by each JOB_SPEC in the background, as if they
    had been started with `&'.  If JOB_SPEC is not present, the shell's notion
    of the current job is used.
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.Null command.
    
    No effect; the command does nothing.
    
    Exit Status:
    Always succeeds.OLDPWD not setParse option arguments.
    
    Getopts is used by shell procedures to parse positional parameters
    as options.
    
    OPTSTRING contains the option letters to be recognized; if a letter
    is followed by a colon, the option is expected to have an argument,
    which should be separated from it by white space.
    
    Each time it is invoked, getopts will place the next option in the
    shell variable $name, initializing name if it does not exist, and
    the index of the next argument to be processed into the shell
    variable OPTIND.  OPTIND is initialized to 1 each time the shell or
    a shell script is invoked.  When an option requires an argument,
    getopts places that argument into the shell variable OPTARG.
    
    getopts reports errors in one of two ways.  If the first character
    of OPTSTRING is a colon, getopts uses silent error reporting.  In
    this mode, no error messages are printed.  If an invalid option is
    seen, getopts places the option character found into OPTARG.  If a
    required argument is not found, getopts places a ':' into NAME and
    sets OPTARG to the option character found.  If getopts is not in
    silent mode, and an invalid option is seen, getopts places '?' into
    NAME and unsets OPTARG.  If a required argument is not found, a '?'
    is placed in NAME, OPTARG is unset, and a diagnostic message is
    printed.
    
    If the shell variable OPTERR has the value 0, getopts disables the
    printing of error messages, even if the first character of
    OPTSTRING is not a colon.  OPTERR has the value 1 by default.
    
    Getopts normally parses the positional parameters, but if arguments
    are supplied as ARG values, they are parsed instead.
    
    Exit Status:
    Returns success if an option is found; fails if the end of options is
    encountered or an error occurs.Print the name of the current working directory.
    
    Options:
      -L	print the value of $PWD if it names the current working
    		directory
      -P	print the physical directory, without any symbolic links
    
    By default, `pwd' behaves as if `-L' were specified.
    
    Exit Status:
    Returns 0 unless an invalid option is given or the current directory
    cannot be read.QuitRead a line from the standard input and split it into fields.
    
    Reads a single line from the standard input, or from file descriptor FD
    if the -u option is supplied.  The line is split into fields as with word
    splitting, and the first word is assigned to the first NAME, the second
    word to the second NAME, and so on, with any leftover words assigned to
    the last NAME.  Only the characters found in $IFS are recognized as word
    delimiters. By default, the backslash character escapes delimiter characters
    and newline.
    
    If no NAMEs are supplied, the line read is stored in the REPLY variable.
    
    Options:
      -a array	assign the words read to sequential indices of the array
    		variable ARRAY, starting at zero
      -d delim	continue until the first character of DELIM is read, rather
    		than newline
      -e	use Readline to obtain the line
      -E	use Readline to obtain the line and use the bash default
    		completion instead of Readline's default completion
      -i text	use TEXT as the initial text for Readline
      -n nchars	return after reading NCHARS characters rather than waiting
    		for a newline, but honor a delimiter if fewer than
    		NCHARS characters are read before the delimiter
      -N nchars	return only after reading exactly NCHARS characters, unless
    		EOF is encountered or read times out, ignoring any
    		delimiter
      -p prompt	output the string PROMPT without a trailing newline before
    		attempting to read
      -r	do not allow backslashes to escape any characters
      -s	do not echo input coming from a terminal
      -t timeout	time out and return failure if a complete line of
    		input is not read within TIMEOUT seconds.  The value of the
    		TMOUT variable is the default timeout.  TIMEOUT may be a
    		fractional number.  If TIMEOUT is 0, read returns
    		immediately, without trying to read any data, returning
    		success only if input is available on the specified
    		file descriptor.  The exit status is greater than 128
    		if the timeout is exceeded
      -u fd	read from file descriptor FD instead of the standard input
    
    Exit Status:
    The return code is zero, unless end-of-file is encountered, read times out
    (in which case it's greater than 128), a variable assignment error occurs,
    or an invalid file descriptor is supplied as the argument to -u.Read lines from a file into an array variable.
    
    A synonym for `mapfile'.Read lines from the standard input into an indexed array variable.
    
    Read lines from the standard input into the indexed array variable ARRAY, or
    from file descriptor FD if the -u option is supplied.  The variable MAPFILE
    is the default ARRAY.
    
    Options:
      -d delim	Use DELIM to terminate lines, instead of newline
      -n count	Copy at most COUNT lines.  If COUNT is 0, all lines are copied
      -O origin	Begin assigning to ARRAY at index ORIGIN.  The default index is 0
      -s count	Discard the first COUNT lines read
      -t	Remove a trailing DELIM from each line read (default newline)
      -u fd	Read lines from file descriptor FD instead of the standard input
      -C callback	Evaluate CALLBACK each time QUANTUM lines are read
      -c quantum	Specify the number of lines read between each call to
    			CALLBACK
    
    Arguments:
      ARRAY	Array variable name to use for file data
    
    If -C is supplied without -c, the default quantum is 5000.  When
    CALLBACK is evaluated, it is supplied the index of the next array
    element to be assigned and the line to be assigned to that element
    as additional arguments.
    
    If not supplied with an explicit origin, mapfile will clear ARRAY before
    assigning to it.
    
    Exit Status:
    Returns success unless an invalid option is given or ARRAY is readonly or
    not an indexed array.Record lockRemember or display program locations.
    
    Determine and remember the full pathname of each command NAME.  If
    no arguments are given, information about remembered commands is displayed.
    
    Options:
      -d	forget the remembered location of each NAME
      -l	display in a format that may be reused as input
      -p pathname	use PATHNAME as the full pathname of NAME
      -r	forget all remembered locations
      -t	print the remembered location of each NAME, preceding
    		each location with the corresponding NAME if multiple
    		NAMEs are given
    Arguments:
      NAME	Each NAME is searched for in $PATH and added to the list
    		of remembered commands.
    
    Exit Status:
    Returns success unless NAME is not found or an invalid option is given.Remove directories from stack.
    
    Removes entries from the directory stack.  With no arguments, removes
    the top directory from the stack, and changes to the new top directory.
    
    Options:
      -n	Suppresses the normal change of directory when removing
    		directories from the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Removes the Nth entry counting from the left of the list
    		shown by `dirs', starting with zero.  For example: `popd +0'
    		removes the first directory, `popd +1' the second.
    
      -N	Removes the Nth entry counting from the right of the list
    		shown by `dirs', starting with zero.  For example: `popd -0'
    		removes the last directory, `popd -1' the next to last.
    
    The `dirs' builtin displays the directory stack.
    
    Exit Status:
    Returns success unless an invalid argument is supplied or the directory
    change fails.Remove each NAME from the list of defined aliases.
    
    Options:
      -a	remove all alias definitions
    
    Return success unless a NAME is not an existing alias.Remove jobs from current shell.
    
    Removes each JOBSPEC argument from the table of active jobs.  Without
    any JOBSPECs, the shell uses its notion of the current job.
    
    Options:
      -a	remove all jobs if JOBSPEC is not supplied
      -h	mark each JOBSPEC so that SIGHUP is not sent to the job if the
    		shell receives a SIGHUP
      -r	remove only running jobs
    
    Exit Status:
    Returns success unless an invalid option or JOBSPEC is given.Removes entries from the directory stack.  With no arguments, removes
    the top directory from the stack, and changes to the new top directory.
    
    Options:
      -n	Suppresses the normal change of directory when removing
    	directories from the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Removes the Nth entry counting from the left of the list
    	shown by `dirs', starting with zero.  For example: `popd +0'
    	removes the first directory, `popd +1' the second.
    
      -N	Removes the Nth entry counting from the right of the list
    	shown by `dirs', starting with zero.  For example: `popd -0'
    	removes the last directory, `popd -1' the next to last.
    
    The `dirs' builtin displays the directory stack.Replace the shell with the given command.
    
    Execute COMMAND, replacing this shell with the specified program.
    ARGUMENTS become the arguments to COMMAND.  If COMMAND is not specified,
    any redirections take effect in the current shell.
    
    Options:
      -a name	pass NAME as the zeroth argument to COMMAND
      -c	execute COMMAND with an empty environment
      -l	place a dash in the zeroth argument to COMMAND
    
    If the command cannot be executed, a non-interactive shell exits, unless
    the shell option `execfail' is set.
    
    Exit Status:
    Returns success unless COMMAND is not found or a redirection error occurs.Report time consumed by pipeline's execution.
    
    Execute PIPELINE and print a summary of the real time, user CPU time,
    and system CPU time spent executing PIPELINE when it terminates.
    
    Options:
      -p	print the timing summary in the portable Posix format
    
    The value of the TIMEFORMAT variable is used as the output format.
    
    Exit Status:
    The return status is the return status of PIPELINE.Resume for, while, or until loops.
    
    Resumes the next iteration of the enclosing FOR, WHILE or UNTIL loop.
    If N is specified, resumes the Nth enclosing loop.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Resume job in foreground.
    
    Equivalent to the JOB_SPEC argument to the `fg' command.  Resume a
    stopped or background job.  JOB_SPEC can specify either a job name
    or a job number.  Following JOB_SPEC with a `&' places the job in
    the background, as if the job specification had been supplied as an
    argument to `bg'.
    
    Exit Status:
    Returns the status of the resumed job.Return a successful result.
    
    Exit Status:
    Always succeeds.Return an unsuccessful result.
    
    Exit Status:
    Always fails.Return from a shell function.
    
    Causes a function or sourced script to exit with the return value
    specified by N.  If N is omitted, the return status is that of the
    last command executed within the function or script.
    
    Exit Status:
    Returns N, or failure if the shell is not executing a function or script.Return the context of the current subroutine call.
    
    Without EXPR, returns "$line $filename".  With EXPR, returns
    "$line $subroutine $filename"; this extra information can be used to
    provide a stack trace.
    
    The value of EXPR indicates how many call frames to go back before the
    current one; the top frame is frame 0.
    
    Exit Status:
    Returns 0 unless the shell is not executing a shell function or EXPR
    is invalid.Returns the context of the current subroutine call.
    
    Without EXPR, returns "$line $filename".  With EXPR, returns
    "$line $subroutine $filename"; this extra information can be used to
    provide a stack trace.
    
    The value of EXPR indicates how many call frames to go back before the
    current one; the top frame is frame 0.
    
    Exit Status:
    Returns 0 unless the shell is not executing a shell function or EXPR
    is invalid.RunningSegmentation faultSelect words from a list and execute commands.
    
    The WORDS are expanded, generating a list of words.  The
    set of expanded words is printed on the standard error, each
    preceded by a number.  If `in WORDS' is not present, `in "$@"'
    is assumed.  The PS3 prompt is then displayed and a line read
    from the standard input.  If the line consists of the number
    corresponding to one of the displayed words, then NAME is set
    to that word.  If the line is empty, WORDS and the prompt are
    redisplayed.  If EOF is read, the command completes.  Any other
    value read causes NAME to be set to null.  The line read is saved
    in the variable REPLY.  COMMANDS are executed after each selection
    until a break command is executed.
    
    Exit Status:
    Returns the status of the last command executed.Send a signal to a job.
    
    Send the processes identified by PID or JOBSPEC the signal named by
    SIGSPEC or SIGNUM.  If neither SIGSPEC nor SIGNUM is present, then
    SIGTERM is assumed.
    
    Options:
      -s sig	SIG is a signal name
      -n sig	SIG is a signal number
      -l	list the signal names; if arguments follow `-l' they are
    		assumed to be signal numbers for which names should be listed
      -L	synonym for -l
    
    Kill is a shell builtin for two reasons: it allows job IDs to be used
    instead of process IDs, and allows processes to be killed if the limit
    on processes that you can create is reached.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.Set Readline key bindings and variables.
    
    Bind a key sequence to a Readline function or a macro, or set a
    Readline variable.  The non-option argument syntax is equivalent to
    that found in ~/.inputrc, but must be passed as a single argument:
    e.g., bind '"\C-x\C-r": re-read-init-file'.
    
    Options:
      -m  keymap         Use KEYMAP as the keymap for the duration of this
                         command.  Acceptable keymap names are emacs,
                         emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,
                         vi-command, and vi-insert.
      -l                 List names of functions.
      -P                 List function names and bindings.
      -p                 List functions and bindings in a form that can be
                         reused as input.
      -S                 List key sequences that invoke macros and their values
      -s                 List key sequences that invoke macros and their values
                         in a form that can be reused as input.
      -V                 List variable names and values
      -v                 List variable names and values in a form that can
                         be reused as input.
      -q  function-name  Query about which keys invoke the named function.
      -u  function-name  Unbind all keys which are bound to the named function.
      -r  keyseq         Remove the binding for KEYSEQ.
      -f  filename       Read key bindings from FILENAME.
      -x  keyseq:shell-command	Cause SHELL-COMMAND to be executed when
    				KEYSEQ is entered.
      -X                 List key sequences bound with -x and associated commands
                         in a form that can be reused as input.
    
    If arguments remain after option processing, the -p and -P options treat
    them as readline command names and restrict output to those names.
    
    Exit Status:
    bind returns 0 unless an unrecognized option is given or an error occurs.Set and unset shell options.
    
    Change the setting of each shell option OPTNAME.  Without any option
    arguments, list each supplied OPTNAME, or all shell options if no
    OPTNAMEs are given, with an indication of whether or not each is set.
    
    Options:
      -o	restrict OPTNAMEs to those defined for use with `set -o'
      -p	print each shell option with an indication of its status
      -q	suppress output
      -s	enable (set) each OPTNAME
      -u	disable (unset) each OPTNAME
    
    Exit Status:
    Returns success if OPTNAME is enabled; fails if an invalid option is
    given or OPTNAME is disabled.Set export attribute for shell variables.
    
    Marks each NAME for automatic export to the environment of subsequently
    executed commands.  If VALUE is supplied, assign VALUE before exporting.
    
    Options:
      -f	refer to shell functions
      -n	remove the export property from each NAME
      -p	display a list of all exported variables or functions
    
    An argument of `--' disables further option processing.
    
    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.Set or unset values of shell options and positional parameters.
    
    Change the value of shell attributes and positional parameters, or
    display the names and values of shell variables.
    
    Options:
      -a  Mark variables which are modified or created for export.
      -b  Notify of job termination immediately.
      -e  Exit immediately if a command exits with a non-zero status.
      -f  Disable file name generation (globbing).
      -h  Remember the location of commands as they are looked up.
      -k  All assignment arguments are placed in the environment for a
          command, not just those that precede the command name.
      -m  Job control is enabled.
      -n  Read commands but do not execute them.
      -o option-name
          Set the variable corresponding to option-name:
              allexport    same as -a
              braceexpand  same as -B
              emacs        use an emacs-style line editing interface
              errexit      same as -e
              errtrace     same as -E
              functrace    same as -T
              hashall      same as -h
              histexpand   same as -H
              history      enable command history
              ignoreeof    the shell will not exit upon reading EOF
              interactive-comments
                           allow comments to appear in interactive commands
              keyword      same as -k
              monitor      same as -m
              noclobber    same as -C
              noexec       same as -n
              noglob       same as -f
              nolog        currently accepted but ignored
              notify       same as -b
              nounset      same as -u
              onecmd       same as -t
              physical     same as -P
              pipefail     the return value of a pipeline is the status of
                           the last command to exit with a non-zero status,
                           or zero if no command exited with a non-zero status
              posix        change the behavior of bash where the default
                           operation differs from the Posix standard to
                           match the standard
              privileged   same as -p
              verbose      same as -v
              vi           use a vi-style line editing interface
              xtrace       same as -x
      -p  Turned on whenever the real and effective user ids do not match.
          Disables processing of the $ENV file and importing of shell
          functions.  Turning this option off causes the effective uid and
          gid to be set to the real uid and gid.
      -t  Exit after reading and executing one command.
      -u  Treat unset variables as an error when substituting.
      -v  Print shell input lines as they are read.
      -x  Print commands and their arguments as they are executed.
      -B  the shell will perform brace expansion
      -C  If set, disallow existing regular files to be overwritten
          by redirection of output.
      -E  If set, the ERR trap is inherited by shell functions.
      -H  Enable ! style history substitution.  This flag is on
          by default when the shell is interactive.
      -P  If set, do not resolve symbolic links when executing commands
          such as cd which change the current directory.
      -T  If set, the DEBUG and RETURN traps are inherited by shell functions.
      --  Assign any remaining arguments to the positional parameters.
          If there are no remaining arguments, the positional parameters
          are unset.
      -   Assign any remaining arguments to the positional parameters.
          The -x and -v options are turned off.
    
    If -o is supplied with no option-name, set prints the current shell
    option settings. If +o is supplied with no option-name, set prints a
    series of set commands to recreate the current option settings.
    
    Using + rather than - causes these flags to be turned off.  The
    flags can also be used upon invocation of the shell.  The current
    set of flags may be found in $-.  The remaining n ARGs are positional
    parameters and are assigned, in order, to $1, $2, .. $n.  If no
    ARGs are given, all shell variables are printed.
    
    Exit Status:
    Returns success unless an invalid option is given.Set variable values and attributes.
    
    A synonym for `declare'.  See `help declare'.Set variable values and attributes.
    
    Declare variables and give them attributes.  If no NAMEs are given,
    display the attributes and values of all variables.
    
    Options:
      -f	restrict action or display to function names and definitions
      -F	restrict display to function names only (plus line number and
    		source file when debugging)
      -g	create global variables when used in a shell function; otherwise
    		ignored
      -I	if creating a local variable, inherit the attributes and value
    		of a variable with the same name at a previous scope
      -p	display the attributes and value of each NAME
    
    Options which set attributes:
      -a	to make NAMEs indexed arrays (if supported)
      -A	to make NAMEs associative arrays (if supported)
      -i	to make NAMEs have the `integer' attribute
      -l	to convert the value of each NAME to lower case on assignment
      -n	make NAME a reference to the variable named by its value
      -r	to make NAMEs readonly
      -t	to make NAMEs have the `trace' attribute
      -u	to convert the value of each NAME to upper case on assignment
      -x	to make NAMEs export
    
    Using `+' instead of `-' turns off the given attribute, except for a,
    A, and r.
    
    Variables with the integer attribute have arithmetic evaluation (see
    the `let' command) performed when the variable is assigned a value.
    
    When used in a function, `declare' makes NAMEs local, as with the `local'
    command.  The `-g' option suppresses this behavior.
    
    Exit Status:
    Returns success unless an invalid option is supplied or a variable
    assignment error occurs.Shell commands matching keyword `Shell commands matching keywords `Shell options:
Shift positional parameters.
    
    Rename the positional parameters $N+1,$N+2 ... to $1,$2 ...  If N is
    not given, it is assumed to be 1.
    
    Exit Status:
    Returns success unless N is negative or greater than $#.Signal %dSpecify how arguments are to be completed by Readline.
    
    For each NAME, specify how arguments are to be completed.  If no options
    or NAMEs are supplied, display existing completion specifications in a way
    that allows them to be reused as input.
    
    Options:
      -p	print existing completion specifications in a reusable format
      -r	remove a completion specification for each NAME, or, if no
    		NAMEs are supplied, all completion specifications
      -D	apply the completions and actions as the default for commands
    		without any specific completion defined
      -E	apply the completions and actions to "empty" commands --
    		completion attempted on a blank line
      -I	apply the completions and actions to the initial (usually the
    		command) word
    
    When completion is attempted, the actions are applied in the order the
    uppercase-letter options are listed above. If multiple options are supplied,
    the -D option takes precedence over -E, and both take precedence over -I.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.StoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stopped(%s)Suspend shell execution.
    
    Suspend the execution of this shell until it receives a SIGCONT signal.
    Unless forced, login shells and shells without job control cannot be
    suspended.
    
    Options:
      -f	force the suspend, even if the shell is a login shell or job
    		control is not enabled.
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.TIMEFORMAT: `%c': invalid format characterTerminatedThe mail in %s has been read
There are running jobs.
There are stopped jobs.
There is NO WARRANTY, to the extent permitted by law.These shell commands are defined internally.  Type `help' to see this list.
Type `help name' to find out more about the function `name'.
Use `info bash' to find out more about the shell in general.
Use `man -k' or `info' to find out more about commands not in this list.

A star (*) next to a name means that the command is disabled.

This is free software; you are free to change and redistribute it.Trap signals and other events.
    
    Defines and activates handlers to be run when the shell receives signals
    or other conditions.
    
    ACTION is a command to be read and executed when the shell receives the
    signal(s) SIGNAL_SPEC.  If ACTION is absent (and a single SIGNAL_SPEC
    is supplied) or `-', each specified signal is reset to its original
    value.  If ACTION is the null string each SIGNAL_SPEC is ignored by the
    shell and by the commands it invokes.
    
    If a SIGNAL_SPEC is EXIT (0) ACTION is executed on exit from the shell.
    If a SIGNAL_SPEC is DEBUG, ACTION is executed before every simple command
    and selected other commands. If a SIGNAL_SPEC is RETURN, ACTION is
    executed each time a shell function or a script run by the . or source
    builtins finishes executing.  A SIGNAL_SPEC of ERR means to execute ACTION
    each time a command's failure would cause the shell to exit when the -e
    option is enabled.
    
    If no arguments are supplied, trap prints the list of commands associated
    with each trapped signal in a form that may be reused as shell input to
    restore the same signal dispositions.
    
    Options:
      -l	print a list of signal names and their corresponding numbers
      -p	display the trap commands associated with each SIGNAL_SPEC in a
    		form that may be reused as shell input; or for all trapped
    		signals if no arguments are supplied
      -P	display the trap commands associated with each SIGNAL_SPEC. At least
    		one SIGNAL_SPEC must be supplied. -P and -p cannot be used
    		together.
    
    Each SIGNAL_SPEC is either a signal name in <signal.h> or a signal number.
    Signal names are case insensitive and the SIG prefix is optional.  A
    signal may be sent to the shell with "kill -signal $$".
    
    Exit Status:
    Returns success unless a SIGSPEC is invalid or an invalid option is given.Type `%s -c "help set"' for more information about shell options.
Type `%s -c help' for more information about shell builtin commands.
Unknown Signal #%dUnknown errorUnknown statusUnset values and attributes of shell variables and functions.
    
    For each NAME, remove the corresponding variable or function.
    
    Options:
      -f	treat each NAME as a shell function
      -v	treat each NAME as a shell variable
      -n	treat each NAME as a name reference and unset the variable itself
    		rather than the variable it references
    
    Without options, unset first tries to unset a variable, and if that fails,
    tries to unset a function.
    
    Some variables cannot be unset; also see `readonly'.
    
    Exit Status:
    Returns success unless an invalid option is given or a NAME is read-only.Urgent IO conditionUsage:	%s [GNU long option] [option] ...
	%s [GNU long option] [option] script-file ...
Use "%s" to leave the shell.
Use the `bashbug' command to report bugs.
User signal 1User signal 2Wait for job completion and return exit status.
    
    Waits for each process identified by an ID, which may be a process ID or a
    job specification, and reports its termination status.  If ID is not
    given, waits for all currently active child processes, and the return
    status is zero.  If ID is a job specification, waits for all processes
    in that job's pipeline.
    
    If the -n option is supplied, waits for a single job from the list of IDs,
    or, if no IDs are supplied, for the next job to complete and returns its
    exit status.
    
    If the -p option is supplied, the process or job identifier of the job
    for which the exit status is returned is assigned to the variable VAR
    named by the option argument. The variable will be unset initially, before
    any assignment. This is useful only when the -n option is supplied.
    
    If the -f option is supplied, and job control is enabled, waits for the
    specified ID to terminate, instead of waiting for it to change status.
    
    Exit Status:
    Returns the status of the last ID; fails if ID is invalid or an invalid
    option is given, or if -n is supplied and the shell has no unwaited-for
    children.Wait for process completion and return exit status.
    
    Waits for each process specified by a PID and reports its termination status.
    If PID is not given, waits for all currently active child processes,
    and the return status is zero.  PID must be a process ID.
    
    Exit Status:
    Returns the status of the last PID; fails if PID is invalid or an invalid
    option is given.Window changedWrite arguments to the standard output.
    
    Display the ARGs on the standard output followed by a newline.
    
    Options:
      -n	do not append a newline
    
    Exit Status:
    Returns success unless a write error occurs.Write arguments to the standard output.
    
    Display the ARGs, separated by a single space character and followed by a
    newline, on the standard output.
    
    Options:
      -n	do not append a newline
      -e	enable interpretation of the following backslash escapes
      -E	explicitly suppress interpretation of backslash escapes
    
    `echo' interprets the following backslash-escaped characters:
      \a	alert (bell)
      \b	backspace
      \c	suppress further output
      \e	escape character
      \E	escape character
      \f	form feed
      \n	new line
      \r	carriage return
      \t	horizontal tab
      \v	vertical tab
      \\	backslash
      \0nnn	the character whose ASCII code is NNN (octal).  NNN can be
    		0 to 3 octal digits
      \xHH	the eight-bit character whose value is HH (hexadecimal).  HH
    		can be one or two hex digits
      \uHHHH	the Unicode character whose value is the hexadecimal value HHHH.
    		HHHH can be one to four hex digits.
      \UHHHHHHHH the Unicode character whose value is the hexadecimal value
    		HHHHHHHH. HHHHHHHH can be one to eight hex digits.
    
    Exit Status:
    Returns success unless a write error occurs.You have mail in $_You have new mail in $_[ arg... ][[ expression ]]`%c': bad command`%c': invalid format character`%c': invalid symbolic mode character`%c': invalid symbolic mode operator`%c': invalid time format specification`%s': cannot unbind`%s': cannot unbind in command keymap`%s': invalid alias name`%s': invalid keymap name`%s': invalid variable name for name reference`%s': is a special builtin`%s': missing format character`%s': not a pid or valid job spec`%s': not a valid identifier`%s': unknown function name`)' expected`)' expected, found %s`:' expected for conditional expressionadd_process: pid %5ld (%s) marked as still alivealias [-p] [name[=value] ... ]all_local_variables: no function context at current scopeambiguous redirectargumentargument expectedarithmetic syntax error in expressionarithmetic syntax error in variable assignmentarithmetic syntax error: invalid arithmetic operatorarithmetic syntax error: operand expectedarray variable support requiredattempted assignment to non-variablebad array subscriptbad command typebad connectorbad interpreterbad jumpbad substitution: no closing "`" in %sbad substitution: no closing `%s' in %sbash home page: <http://www.gnu.org/software/bash>
bash_execute_unix_command: cannot find keymap for commandbg [job_spec ...]bgp_delete: LOOP: psi (%d) == storage[psi].bucket_nextbgp_search: LOOP: psi (%d) == storage[psi].bucket_nextbind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]brace expansion: cannot allocate memory for %sbrace expansion: failed to allocate memory for %s elementsbrace expansion: failed to allocate memory for `%s'break [n]bug: bad expassign tokenbuiltin [shell-builtin [arg ...]]caller [expr]can only `return' from a function or sourced scriptcan only be used in a functioncannot allocate new file descriptor for bash input from fd %dcannot assign fd to variablecannot change localecannot createcannot create temp file for here-documentcannot duplicate fd %d to fd %dcannot duplicate named pipe %s as fd %dcannot executecannot execute binary filecannot find %s in shared object %s: %scannot get limitcannot make child for command substitutioncannot make child for process substitutioncannot make pipe for command substitutioncannot make pipe for process substitutioncannot modify limitcannot opencannot open named pipe %s for readingcannot open named pipe %s for writingcannot open shared object %s: %scannot open temp filecannot overwrite existing filecannot readcannot redirect standard input from /dev/nullcannot reset nodelay mode for fd %dcannot set and unset shell options simultaneouslycannot set gid to %d: effective gid %dcannot set terminal process group (%d)cannot set uid to %d: effective uid %dcannot simultaneously unset a function and a variablecannot start debugger; debugging mode disabledcannot suspendcannot suspend a login shellcannot use `-f' to make functionscannot use more than one of -anrwcase WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esaccd [-L|[-P [-e]]] [-@] [dir]child setpgid (%ld to %ld)command [-pVv] command [arg ...]command not foundcommand substitution: ignored null byte in inputcommand_substitute: cannot duplicate pipe as fd 1compgen [-V varname] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]completion: function `%s' not foundcompopt [-o|+o option] [-DEI] [name ...]conditional binary operator expectedcontinue [n]coproc [NAME] command [redirections]could not find /tmp, please create!cprintf: `%c': invalid format charactercurrentdeclare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] [name ...]deleting stopped job %d with process group %lddescribe_pid: %ld: no such piddirectory stack emptydirectory stack indexdirs [-clpv] [+N] [-N]disown [-h] [-ar] [jobspec ... | pid ...]division by 0dynamic loading not availableecho [-n] [arg ...]echo [-neE] [arg ...]empty array variable nameempty filenameenable [-a] [-dnps] [-f filename] [name ...]error creating buffered streamerror getting terminal attributeserror importing function definition for `%s'error retrieving current directoryerror setting terminal attributeseval [arg ...]eval: maximum eval nesting level exceeded (%d)exec [-cl] [-a name] [command [argument ...]] [redirection ...]execute_coproc: coproc [%d:%s] still existsexit [n]expected `)'exponent less than 0export [-fn] [name[=value] ...] or export -p [-f]expression expectedexpression recursion level exceededfc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]fg [job_spec]file descriptor out of rangefilename argument requiredfor (( exp1; exp2; exp3 )); do COMMANDS; donefor NAME [in WORDS ... ] ; do COMMANDS; doneforked pid %d appears in running job %dformat parsing problem: %sframe not foundfree: called with already freed block argumentfree: called with unallocated block argumentfree: start and end chunk sizes differfree: underflow detected; magic8 corruptedfree: underflow detected; mh_nbytes out of rangefunction name { COMMANDS ; } or name () { COMMANDS ; }function_substitute: cannot duplicate anonymous file as standard outputfunction_substitute: cannot open anonymous file for outputfuture versions of the shell will force evaluation as an arithmetic substitutiongetcwd: cannot access parent directoriesgetopts optstring name [arg ...]hash [-lr] [-p pathname] [-dt] [name ...]hashing disabledhelp [-dms] [pattern ...]help not available in this versionhere-document at line %d delimited by end-of-file (wanted `%s')history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]history positionhistory specificationhits	command
identifier expected after pre-increment or pre-decrementif COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fiinitialize_job_control: getpgrp failedinitialize_job_control: line disciplineinitialize_job_control: no job control in backgroundinitialize_job_control: setpgidinvalid arithmetic baseinvalid baseinvalid character %d in exportstr for %sinvalid file descriptorinvalid glob sort typeinvalid hex numberinvalid integer constantinvalid numberinvalid octal numberinvalid regular expression `%s'invalid regular expression `%s': %sinvalid signal numberjob %d started without job controljob_spec [&]jobs [-lnprs] [jobspec ...] or jobs -x command [args]kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]last command: %s
let arg [arg ...]limitline %d: line editing not enabledload function for %s returns failure (%d): not loadedlocal [option] name[=value] ...logout
logout [n]loop countmake_here_document: bad instruction type %dmake_local_variable: no function context at current scopemake_redirection: redirection instruction `%d' out of rangemalloc: block on free list clobberedmalloc: failed assertion: %s
mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]maximum here-document count exceededmigrate process to another CPUmissing `)'missing `]'missing hex digit for \xmissing unicode digit for \%cnetwork operations not supportedno `=' in exportstr for %sno closing `%c' in %sno command foundno help topics match `%s'.  Try `help help' or `man -k %s' or `info %s'.no job controlno job control in this shellno match: %sno other directoryno other options allowed with `-x'not currently executing completion functionnot login shell: use `exit'null directoryoctal numberonly meaningful in a `for', `while', or `until' looppipe errorpop_scope: head of shell_variables not a temporary environment scopepop_var_context: head of shell_variables not a function contextpop_var_context: no global_variables contextpopd [-n] [+N | -N]power failure imminentpretty-printing mode ignored in interactive shellsprint_command: bad connector `%d'printf [-v var] format [arguments]progcomp_insert: %s: NULL COMPSPECprogrammable_completion: %s: possible retry loopprogramming errorpushd [-n] [+N | -N | dir]pwd [-LP]read [-Eers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]read errorreadarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]readonly [-aAf] [name[=value] ...] or readonly -prealloc: called with unallocated block argumentrealloc: start and end chunk sizes differrealloc: underflow detected; magic8 corruptedrealloc: underflow detected; mh_nbytes out of rangerecursion stack underflowredirection error: cannot duplicate fdregister_alloc: %p already in table as allocated?
register_alloc: alloc table is full with FIND_ALLOC?
register_free: %p already in table as free?
restrictedrestricted: cannot redirect outputreturn [n]run_pending_traps: bad value in trap_list[%d]: %prun_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myselfsave_bash_input: buffer already exists for new fd %dscript file read errorselect NAME [in WORDS ... ;] do COMMANDS; doneset [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]shell level (%d) too high, resetting to 1shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line truncatedshift [n]shift countshopt [-pqsu] [-o] [optname ...]sigprocmask: %d: invalid operationsource [-p path] filename [arguments]start_pipeline: pgrp pipestring lengthsuspend [-f]syntax errorsyntax error in conditional expressionsyntax error in conditional expression: unexpected token `%s'syntax error near `%s'syntax error near unexpected token `%s'syntax error near unexpected token `%s' while looking for matching `%c'syntax error: `%s' unexpectedsyntax error: `((%s))'syntax error: `;' unexpectedsyntax error: arithmetic expression requiredsyntax error: unexpected end of filesyntax error: unexpected end of file from `%s' command on line %dsyntax error: unexpected end of file from command on line %dsystem crash imminenttest [expr]time [-p] pipelinetoo many argumentstrap [-Plp] [[action] signal_spec ...]trap handler: maximum trap handler level exceeded (%d)trap_handler: bad signal %dtype [-afptP] name [name ...]typeset [-aAfFgiIlnrtux] name[=value] ... or typeset -p [-aAfFilnrtux] [name ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limit]umask [-p] [-S] [mode]unalias [-a] name [name ...]unexpected EOF while looking for `]]'unexpected EOF while looking for matching `%c'unexpected EOF while looking for matching `)'unexpected argument `%s' to conditional binary operatorunexpected argument `%s' to conditional unary operatorunexpected argument to conditional binary operatorunexpected argument to conditional unary operatorunexpected token %d in conditional commandunexpected token `%c' in conditional commandunexpected token `%s' in conditional commandunexpected token `%s', conditional binary operator expectedunexpected token `%s', expected `)'unknownunknown command errorunset [-f] [-v] [-n] [name ...]until COMMANDS; do COMMANDS-2; donevalue too great for basevariables - Names and meanings of some shell variableswait [-fn] [-p var] [id ...]wait [pid ...]wait: pid %ld is not a child of this shellwait_for: No record of process %ldwait_for_job: job %d is stoppedwaitchld: turning on WNOHANG to avoid indefinite blockwarning: warning: -C option may not work as you expectwarning: -F option may not work as you expectwhile COMMANDS; do COMMANDS-2; donewrite errorxtrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: invalid file descriptorxtrace_set: NULL file pointer{ COMMANDS ; }Project-Id-Version: bash-5.3-rc2
Report-Msgid-Bugs-To: 
PO-Revision-Date: 2025-06-05 11:50-0700
Last-Translator: Božidar Putanec <bozidarp@yahoo.com>
Language-Team: Croatian <lokalizacija@linux.hr>
Language: hr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
X-Bugs: Report translation errors to the Language-Team address.
X-Generator: Vim9.1
čekanje unosa predugo traje: auto-logout
	-%s,  ili -o opcija  (može se promijeniti sa „set”)
	-ilrsD,  ili -c NAREDBA,  ili -O SHOPT-OPCIJA  (samo za pozivanje)

malloc(): %s:%d: neuspješni kontrolni test
  (wd: %s) (core dumped [ispis stanja memorije je spremljen]) redak ! CJEVOVOD$%s: ne može dodijeliti na ovaj način%c%c: nevaljana opcija%s se može pozvati s *** %s ima prazni string za izvoz%s je %s
%s je funkcija
%s je ugrađena funkcija ljuske
%s je ključna riječ ljuske
%s je specijalna ugrađena funkcija ljuske
%s je alias za „%s”
%s je hashiran (predmemoriran) (%s)
%s nije vezan na nijednu tipku.
%s je izvan raspona%s%s%s: %s (netočan simbol je „%s”)%s: %s je izvan raspona%s: %s: ne može otvoriti kao DATOTEKU%s: %s vrijednost za kompatibilnost je izvan raspona%s: %s: nevaljana vrijednost za „trace” deskriptora datoteke%s: %s: indeks je potreban kada se dodjeljuje asocijativnom polju%s: %s:%d: ne može rezervirati %lu bajtova%s: %s:%d: ne može rezervirati %lu bajtova (rezervirano je %lu bajtova)%s: je direktorij%s: oznaka posla nije jednoznačna%s: argumenti moraju biti ID-ovi procesa ili ID-ovi poslova%s: nazivu referencije se dodjeljuje cijeli broj%s: loša specifikacija za mrežnu stazu%s: loša supstitucija%s: očekivan je binarni operator%s: imena ugrađenih naredbi ne smiju sadržavati kose crte%s: ne može rezervirati %lu bajtova%s: ne može rezervirati %lu bajtova (rezervirano je %lu bajtova)%s: ne može dodijeliti%s: ne može dodijeliti popis (list) elementu polja%s: nenumerički indeks nije moguć%s: ne može pretvoriti asocijativno polje u indeksirano polje%s: ne može pretvoriti indeksirano polje u asocijativno polje%s: ne može izbrisati: %s%s: ne može uništiti varijable polja na ovaj način%s: ne može izvršiti: potrebna datoteka nije nađena%s: ne može eksportirati%s: ne može naslijediti vrijednost nekompatibilnog tipane može izbrisati %s%s: ne može izbrisati: %s je samo-za-čitanje%s: cirkularna referencija imena%s: dinamička ugrađena funkcija je već učitana%s: greška u izrazu
%s: datoteka je prevelika%s: datoteka nije pronađena%s: prvi nebijeli znak nije „"”%s: hash tablica je prazna
%s: proširivanje povijesti nije uspjelo%s: nepoznati host%s: ignoriramo pokušaj definiranja funkcije%s: neispravna opcija -- %c
%s: očekivan je cjeli broj%s: nevaljano ime za akciju%s: nevaljani argument%s: nevaljani početak polja%s: nevaljani callback kvantum (redaka između poziva)%s: nevaljana oznaka deskriptora datoteke%s: nevaljana neizravna ekspanzija%s: nevaljana oznaka za posao%s: nevaljani argument za ograničenje%s: nevaljani broj (količina) redaka%s: nevaljana opcija%s: nevaljano ime za opciju%s: nevaljana usluga%s: nevaljano ime za opciju ljuske%s: nevaljana specifikacija signala%s: pogrešno navedeno vremensko ograničenje (timeout)%s: nevaljani vremenski žig„%s”: nevaljano ime varijable%s: nevaljano ime varijable za ime referencije%s: je direktorij%s: posao %d je već u pozadini%s: posao je zatvoren%s: oznaka posla mora započeti sa „%%”%s: redak %d: %s: premašena je dopuštena razina ugniježđenosti za funkciju (%d)%s: premašena najveća dubina nameref (%d)%s: premašena je dopuštena razina ugniježđenosti za source (%d)%s: nema separatora%s: ime referentne varijable (nameref) nije dopušteno samoreferencirati%s: nije indikacija kompletiranja%s: nema tekućih poslova%s: nema upravljanja poslovima%s: nema takvog posla%s: nije funkcija%s: nije obična datoteka%s: nije ugrađena naredba ljuske%s: nije varijabla polja%s: nije indeksirano polje%s: nije dinamički učitan%s: nije nađeno%s: nužan je numerički argument%s: opcija zahtijeva argument%s: opcija zahtijeva argument -- %c
%s: parametar nije postavljen%s: parametar je prazan (null) ili nije postavljen%s: dodjela vrijednosti u navodnicima složenom polju je zastarjela%s: je samo-za-čitanje funkcija%s: je varijabla samo-za-čitanje%s: referentna varijabla ne može biti polje (array)%s: uklanjamo atribut nameref%s: ograničeni način rada%s: ograničenje : znak „/” nije dopušten u imenima naredba%s: rezultat od dijela stringa (substring) < 0%s: očekivan je unarni operator%s: nevezana varijabla%s: Uporaba: %s: vrijednost se ne može dodijeliti varijabli”

(( IZRAZ ))(ispis memorije je stvoren!) (wd je sad: %s)
++: dodjeljivanje zahtijeva lvalue--: dodjeljivanje zahtijeva lvalue. [-p path] IME_DATOTEKE [ARGUMENTI]/dev/(tcp|udp)/host/port nije moguć bez mreže/tmp mora biti valjano ime za direktorij<nema trenutnog direktorija>ABORT instrukcijaPrekidamo...Doda direktorije na stȏg.

    Doda direktorij na vrh stȏga direktorija ili zarotira stȏg tako da
    učini novi vrh stȏga trenutnim radnim direktorijem. Bez argumenata
    razmijeni pozicije dvama direktorijima na vrhu stȏga.

    Opcije:
      -n   izostavi uobičajenu promjenu direktorija kad dodaje
           direktorije u stȏg, odnosno samo manipulira sa stȏgom

    Argumenti:
      DIREKTORIJ  Doda DIREKTORIJ na vrh stȏga direktorija i
                    učini ga novim trenutnim radnim direktorijem.
      +N   Zarotira stȏg tako, da N-ti direktorij u stȏgu (brojeći od nule s
             lijeve strane popisa pokazanog s „dirs”) postane novi vrh stȏga.
      -N   Zarotira stȏg tako, da N-ti direktorij u stȏgu (brojeći od nule s
             desne strane popisa pokazanog s „dirs”) postane novi vrh stȏga.

      Naredba „dirs” prikaže trenutni sadržaj stȏga direktorija.

    Završi s uspjehom osim ako je dana nevaljana opcija ili promjena
    direktorija nije uspjelaDoda direktorij na vrh stȏga direktorija ili zarotira stȏg tako da
    učini novi vrh stȏga trenutnim radnim direktorijem. Bez argumenata
    razmijeni pozicije dvama direktorijima na vrhu stȏga.

    Opcije:
      -n   spriječi uobičajenu promjenu direktorija kad dodaje
           direktorije u stȏg, odnosno samo manipulira sa stȏgom

     Argumenti:
      +N   Zarotira stȏg tako, da N-ti direktorij u stȏgu (brojeći od nule s
             lijeve strane popisa pokazanog s „dirs”) postane novi vrh stȏga.
      -N   Zarotira stȏg tako, da N-ti direktorij u stȏgu (brojeći od nule s
             desne strane popisa pokazanog s „dirs”) postane novi vrh stȏga.
      DIR  Doda DIREKTORIJ na vrh stȏga direktorija i
             učini ga novim radnim direktorijem.

      Ugrađena naredba „dirs” prikaže sadržaj stȏga direktorija.Alarm (profil)Alarm (virtualni)BudilicaAritmetička „for” petlja.

    Isto kao:

        (( EXP1 )); while (( EXP2 )); do NAREDBE; (( EXP3 )); done

    EXP1, EXP2, EXP3 su aritmetički izrazi. Ako bilo koji izraz nije
    naveden, uzima se da mu je vrijednost jednaka 1.

    Završi s kȏdom zadnje izvršene naredbe.BPT trag/zamka instrukcija (Trace/Breakpoint trap)Loš sustavni pozivLažni signalPotrgana cijevGreška sabirniceOgraničenje (vremena) procesoraPromjeni trenutni direktorij.

    Promijeni trenutni direktorij u dani DIREKTORIJ. Ako DIREKTORIJ nije dan,
    koristi se vrijednost varijable HOME. Ako je DIREKTORIJ "-", premjesti se
    u $OLDPWD.

    Varijabla CDPATH definira staze (direktorije) po kojima se
    traži DIREKTORIJ.

    Imena alternativnih direktorija u CDPATH su razdvojeni s dvotočkom (:);
    Ime null-direktorija je isto što i trenutni direktorij (.)
    Ako DIREKTORIJ započinje s kosom crtom (/), CDPATH se ne koristi

    Ako se direktorij ne pronađe i omogućena je opcija „cdable_vars”,
    navedena riječ koristi se kao varijabla; ako ta varijabla sadrži ime
    „cd” ode u direktorij s tim imenom.

    Opcije:
      -L    slijedi simbolične linkove; simbolične linkove u DIREKTORIJU
              razriješi nakon obrade pojave „..”
      -P    rabi fizičku strukturu direktorija umjesto da slijedi simbolične
              linkove; simbolične linkove u DIREKTORIJU razriješi prije
              procesiranja pojava „..”
      -e    ako je dana s opcijom -P, i trenutni radni direktorij nije
              moguće uspješno odrediti nakon uspješne promjene direktorija,
              „cd” završi s kȏdom različitim od 0.
      -@    opiše proširene atribute povezane s datotekom kao direktorij
              koji sadrži atribute datoteke (ako sustav to podržava)

    Zadano, simbolične linkove slijedi kao da je navedena opcija -L.
    „..” (ako se pojavi u DIREKTORIJU) obradi je uklanjanjem komponente
    staze koja mu neposredno prethodi unatrag do kose crte „/” ili do početka
    DIREKTORIJA.

    Završi s uspjehom ako je direktorij promijenjen i ako je
    varijabla okruženja PWD uspješno postavljena kad je dana opcija „-P”;
    u suprotnom završi s kȏdom 1.Potomak mrtav ili pauziranZnačenje i upotreba nekih uobičajenih varijabli ljuske.

    U nastavku je opis nekih varijabli od kojih neke sadrže popis
    elemenata. U svakom od tih popisa elementi su razdvojeni dvotočkama.

    BASH_VERSION  inačica ovog „bash” programa
    CDPATH        popis direktorija u kojima se traži direktorij
                    kad argument od „cd” (direktorij) nije u
                    trenutnom radnom direktoriju
    GLOBIGNORE    popis uzoraka koji opisuju imena datoteka koje
                    su zanemarene prilikom ekspanzije imena staza
    HISTFILE      ime datoteke koja sadrži povijest vaših naredbi
    HISTFILESIZE  maksimalni broj redaka datoteke s povijesti naredba
    HISTIGNORE    popis uzoraka koji opisuju naredbe koje ne treba zapisati
                    u datoteku koja sadrži povijest vaših naredbi
    HISTSIZE      maksimalni broj redaka koje trenutna ljuska može dosegnuti
    HOME          puni naziv staze do vašega vlastitog direktorija
    HOSTNAME      ime računala na kojem se izvršava „bash”
    HOSTTYPE      tip CPU-a na kojem se izvršava „bash”
    IGNOREEOF     broj zanemarenih Ctrl-D (EOF) prije zatvaranja ljuske
    MACHTYPE      vrsta računala na kojem se izvršava „bash”
    MAILCHECK     kako često (u sekundama) „bash” gleda ima li nove pošte
    MAILPATH      popis datoteka koje „bash” provjeri za novu poštu
    OSTYPE        distribucija Unix-a no kojem se izvršava ovaj „bash”
    PATH          popis direktorija u kojima se traže naredbe
    PROMPT_COMMAND  naredba koja se izvrši prije ispisa primarnog prompta
    PS1           string koji opisuje primarni prompt
    PS2           string koji opisuje sekundarni prompt (zadano, „>”)
    PWD           puni naziv staze trenutnog radnog direktorija
    SHELLOPTS     popis svih omogućenih opcija ljuske
    TERM          naziv tipa trenutnog terminala
    TIMEFORMAT    pravilo za format ispisa „time” statistika
    auto_resume   ako nije prazan, učini da se naredbena riječ na naredbenom
                    retku prvo potraži na popisu pauziranih poslova,
                    i ako se tamo pronađe, doviva prioritet, tj. prelazi u
                    prvi plan; vrijednost „exact” znači da naredbena
                    riječ mora strikno podudariti naredbu iz popisa;
                    vrijednost „substring” znači da naredbena riječ mora
                    podudariti podstring naredbe iz popisa; bilo koja druga
                    vrijednost znači da naredbena riječ mora biti prefiks
                    pauzirane naredbe
    histchars     znakovi koje upravljaju s proširenjem i brzom supstitucijom
                    povijesti; prvi znak je znak za „supstituciju
                    povijesti”, obično „!”; drugi znak je „znak brze
                    supstitucije”, obično „^”; treći znak je „komentar
                    povijesti”, obično „#”.
NastavljanjeCopyright (C) 2025 Free Software Foundation, Inc.Stvori koproces nazvan IME.

    Izvrši NAREDBU asinkrono, sa standardnim izlazom i standardnim ulazom
    naredbe spojene preko cijevi na deskriptore datoteke dodijeljene
    indeksima 0 i 1 varijable polja IME u izvršnoj ljusci.
    Zadano, IME je "COPROC".

    Naredba coproc završi s kȏdom 0.DEBUG upozorenje: Definira lokalne varijable.

    Stvori lokalnu varijablu IME i dodijeli joj vrijednost. OPCIJA može biti
    bilo koja od opcija koju prihvaća naredba „declare”.

    Ako je bilo koje IME "-", local sprema skup ljuskinih opcija uspostavi ih
    kada se funkcija vrati.

    Lokalne varijable mogu se koristiti samo unutar funkcije i vidljive su
    samo toj funkciji i njezinim potomcima.

    Završi s uspjehom osim ako su navedene nevaljane opcije, ili se dogodila
    greška pri dodijeli ili ljuska ne izvrši funkciju.Definira ili prikaže aliase.

    Bez argumenata (ili s opcijom -p), „alias” ispiše popis aliasa na
    standardni izlaz u upotrebljivom formatu: alias IME='ZAMJENA'.
    S argumentima, alias je definiran za svako IME za koje je navedena ZAMJENA.
    Zaostali razmak (bjelina) u ZAMJENI čini da „alias” prilikom ekspanzije
    provjerava je li i sljedeća riječ zamjenska.

    Options:
      -p       ispiše sve definirane aliase u upotrebljivom formatu

    Završi s uspjehom osim ako alias nije definiran za dano IME.Definira funkciju ljuske.

    Stvori funkciju ljuske nazvanu IME. Kad se pokrene kao jednostavna
    naredba, IME izvrši NAREDBE unutar konteksta pozivne ljuske.
    Kad se IME pozove, argumenti se proslijede funkciji kao $1...$N,
    a ime funkcije je $FUNCNAME.

    Završi s uspjehom osim ako je IME readonly (samo-za-čitanje).Ispiše sadržaj stȏga direktorija.

    Pokaže popis trenutno zapamćenih direktorija. Direktoriji se unose
    na popis pomoću naredbe „pushd”, a s naredbom „popd” se uklanjaju.

    Opcije:
      -c   počisti stȏg direktorija brisanjem svih elemenata
      -l   ispiše apsolutne staze direktorija u odnosu na osobni
             direktorij (ne skraćuje staze upotrebom tilde)
      -p   ispiše sadržaj stȏga po jedan direktorij po retku
      -v   kao „-p”, ali s prefiksom koji pokazuje
             poziciju direktorija u stȏgu

    Argumenti:
      +N   Pokaže N-ti direktorij iz stȏga, brojeći od od nule s
             lijeve strane popisa kad se „dirs” pokrene bez opcija.
      -N   Pokaže N-ti direktorij iz stȏga, brojeći od nule s
             desne strane popisa kad se „dirs” pokrene bez opcija.

    Završi s uspjehom osim ako je dana nevaljana opcija ili se dogodila greška.Prikaže podatke o ugrađenim (builtins) naredbama.

    Prikaže kratke sažetke o ugrađenim naredbama. Ako je specificiran
    UZORAK, prikaže detaljnu pomoć za sve naredbe koje podudaraju UZORAK;
    inače ispiše popis tema za koje možete potražiti detalje.

    Opcije:
      -d   ukratko opisano djelovanje naredbe
      -m   prikaže uporabu u pseudo manpage formatu
      -s   prikaže samo sažetak uporabe za svaku naredbu koja podudara UZORAK

    Završi s uspjehom osim ako UZORAK nije pronađen, ili je dana nevaljana
    opcija.Prikaže informacije o tipu naredbe.

    Prikaže kako bi se interpretiralo svako dano IME kad bi se IME koristilo
    kao naredba.

    Opcije:
     -a   prikaže sve lokacije koje sadrže izvršnu datoteku IME; ako nije
            dana opcija „-p” prikaže i aliase, ugrađene naredbe ljuske,
            funkcije, ključne riječi, i datoteke na disku
     -f   zanemari funkcije ljuske (ne traži ih, slično naredbi „command”)
     -P   traži svako navedeno IME po stazama u PATH čak i ako je IME
            alias, ugrađena naredba ljuske ili funkcija pa vrati ime izvršne
            datoteke na disku
     -p   ispiše ime izvršne datoteke na disku ili ništa ako je IME alias,
            ugrađena naredba ljuske, funkcija ili ključna riječ
     -t   ispiše samo vrstu navedenih IMENA: „alias”, „builtin”, „file”,
            „function” ili „keyword”, ovisno o tome je li riječ o aliasu,
            ugrađenoj funkciji (builtin), datoteci na disku, definiranoj
            funkciji ili ključnoj riječi; ili ništa, ako je ime nepoznato
      
    Završi s uspjehom ako se pronađu sva IMENA, inače s 1.Prikaže ili izvrši naredbe iz popisa povijesti.

    Koristi se za pokazivanje dosadašnjih, za uređivanje ili za ponovno
    pokretanje naredbi. PRVA i ZADNJA mogu biti brojevi koji specificiraju
    raspon ili PRVA može biti string s koji specificira najnoviju naredbu
    koja započinje s tim slovima.

    Opcije:
      -e EDITOR  ime EDITORA koji će se koristi; zadano, koristi se FCEDIT,
                 zatim EDITOR ili konačno editor vi
      -l         izlista popis naredbi (umjesto uređivanja)
      -n         popis bez brojeva
      -r         popis s obrnutim redoslijedom (najnovija prva)

    U obliku „fc -s [UZORAK=ZAMJENA...] [NAREDBA]”,
    fc nakon provedenih naznačenih supstitucija ponovno izvrši NAREDBU.

    Prikladni alias s ovom funkcijom je r='fc -s'. Tako, utipkani „r” izvrši
    ponovno posljednju naredbu, a utipkani „r cc” izvrši posljednju naredbu
    koja započinje s „cc”.

    Ugrađen hystory radi s popisom povijesti.

    Završi s kȏdom izvršene naredbe, a različito od 0 ako se dogodi greška.Prikaže ili manipulira povijest naredbi.

    Prikaže numerirani popis izvršenih naredbi (povijest); ispred
    modificiranih stavki stoji prefiks „*”. S argumentom N
    ispiše samo N posljednjih redaka povijesti.

    Opcije:
      -c   izbriše povijest iz memorije; zaboravi sve izvršene naredbe
      -d   POZICIJA izbriše redak povijesti na toj POZICIJI. Negativna
           POZICIJA se odbrojava od kraja popisa.
      -d   START-END izbriše povijest od pozicije START do pozicije END
      -a   doda povijest ove sjednice povijesnoj datoteci
      -n   pročita sve retke povijesti još ne pročitane iz povijesne datoteke
             i pridoda ih popisu povijesti
      -r   pročita i doda povijesnu datoteku popisu povijesti
      -w   trenutnu povijest zapiše u povijesnu datoteku
      
      -p   proširi povijest na svakom ARGUMENTU i prikaže rezultat
             bez spremanja u povijesni popis
      -s   doda ARGUMENTE kao jednu stavku popisu povijesti

    Ako je dana, DATOTEKA se koristi se kao povijest naredbi; ako nije dana,
    koristi se varijabla HISTFILE (ako ima vrijednost). Ako DATOTEKA nije dana
    i HISTFILE nije postavljen ili je prazan , opcije -a, -n, -r i -w nemaju
    učinka, i vraćaju uspjeh

    Dodatno, ugrađena naredba, fc, djeluje na popis povijesti
    Ako HISTTIMEFORMAT varijabla postoji i nije nula, njezinu vrijednost
    koristi strftime(3) kao format string za ispis vremenskih oznaka
    povijesnih stavki; inače, vremenske oznake se ne ispisuju.

    Završi s uspjehom osim ako nije dana nevaljana opcija ili se dogodila
    greška.Prikaže ili postavi masku prilikom stvaranja datoteke.

    Postavi masku datoteke koju stvori korisnik na MODE.
    Ako MODE nije naveden, ispiše trenutnu vrijednost maske.

    Ako MODE počinje sa znamenkom, interpretira se kao oktalni broj;
    inače to je simbolični mode string kakav prihvaća chmod(1).

    Opcije:
      -p   ako nije naveden MODE, generira izlaz u obliku
             koji se može iskoristiti kao ulaz
      -S   napravi simbolični izlaz; inače izlaz je oktalni broj

    Završi s uspjehom osim ako MODE nije valjan ili je dana nevaljana opcija.Prikaže moguća kompletiranja ovisno o opcijama.

    Namijenjen za upotrebu unutar ljuskine funkcije koja može generirati
    moguća kompletiranja. Ako je prisutan neobvezni argument RIJEČ (word)
    generira samo odgovarajuća kompletiranja.

    Ako je dana opcija -V, spremi moguća kompletiranja u indeksirano polje
    IME_VARIJABLE umjesto ispisa na standardni izlaz.

    Završi s uspjehom osim ako je dana nevaljana opcija ili se dogodila greška.Prikaže potrošnju vremena procesa.

    Prikaže ukupno potrošeno vrijeme korisnikom i sustavom; prvo, vrijeme
    potrošeno samom ljuskom, a zatim svim potomcima pokrenutih ljuskom.

    Završi uvijek s kȏdom 0.Prikaže stanje poslova.

    Izlista aktivne poslove. OZNAKA_POSLA ograniči izlaz samo za
    taj posao. Bez opcija, prikaže status svih aktivnih poslova.

    Opcije:
      -l   prikaže i ID-ove procesa uz uobičajene obavijesti
      -n   prikaže samo procese koji su se promijenili od zadnjeg izvješća
      -p   prikaže samo ID-ove procesa
      -r   ograniči izlaz samo na tekuće poslove
      -s   ograniči izlaz samo na pauzirane poslove

    Ako je navedena opcija '-x', dana NAREDBA se izvrši tek nakon završetka
    svih poslova (u ARGUMENTIMA), tj. njihov proces-ID je zamijenjen s ID-om
    njima nadređenog procesa.

    Završi s uspjehom osim ako je dana nevaljana opcija ili se dogodila greška.
    Ako je dana opcija -x, završi sa izlaznim kȏdom NAREDBE.Pokaže popis trenutno zapamćenih direktorija. Direktoriji se unose
    na popis pomoću naredbe „pushd”, a s naredbom „popd” se uklanjaju.

    Opcije:
      -c   ukloni stȏg direktorija brisanjem svih elemenata
      -l   ispiše apsolutne staze direktorija u odnosu na vaš vlastiti
             direktorij (ne skraćuje staze upotrebom tilde ~)
      -p   ispiše sadržaj stȏga po jedan direktorij po retku
      -v   kao „-p”, ali s prefiksom koji pokazuje
             poziciju direktorija u stȏgu

    Argumenti:
      +N   Pokaže N-ti direktorij iz stȏga, brojeći od od nule s
             lijeve strane popisa kad se „dirs” pokrene bez opcija.
      -N   Pokaže N-ti direktorij iz stȏga, brojeći od nule s
             desne strane popisa kad se „dirs” pokrene bez opcija.GotovoGotovo(%d)EMT instrukcijaOmogući ili onemogući ugrađene naredbe ljuske.

    Omogućuje i onemogućuje ugrađene naredbe ljuske. Onemogućavanje
    dopušta pokretanje datoteke na disku s istim imenom kao ugrađena
    naredba, a bez potrebe specificiranja kompletne staze.

    Opcije:
      -a   ispiše ugrađene naredbe i prikaže jesu li o(ne)mogućene
      -n   onemogući IMENOVANE naredbe ili izlista onemogućene naredbe
      -p   generira izlaz koji se može koristi za ulaz (zadano)
      -s   ispiše samo imena specijalnih POSIX ugrađenih naredbi

    Opcije koje upravljaju dinamičko učitavanje:
      -f   učita ugrađenu naredbu IME iz dijeljenog objekta DATOTEKA
      -d   ukloni ugrađenu naredbu učitanu s -f

    Bez opcija, sva IMENA su omogućene.

    Na sustavima s dinamičkim učitavanjem, varijabla ljuske BASH_LOADABLES_PATH
    definira staze pretraživanja za direktorij koji sadrži IMENA datoteka a koje
    ne sadrži kosu crtu. Može sadržavati "." da prisili pretraživanje
    trenutnog direktorija.

    Primjer: da koristite binarnu datoteku „test” koja se nalazi na stazi
    pretraživanja PATH, umjesto ugrađene (test) naredbe, utipkajte
    (bez navodnika) „enable -n test”.

    Završi s uspjehom osim ako IME nije ugrađena naredba ili se nije
    dogodila greškaIzračuna aritmetički izraz.

    IZRAZ se izračuna po aritmetičkim pravilima.
    To je isto kao „let "IZRAZ"”.

    Završi s kȏdom 1 ako je rezultat IZRAZA jednak 0;
    inače završi s uspjehom.Vrednuje aritmetičke izraze.

    Vrednuje svaki ARGUMENT kao aritmetički izraz. Vrednovanje se
    obavlja za cijele brojeve fiksne širine bez provjere prelijevanja.
    Ipak, dijeljenje s nulom se detektira i prijavi kao greška.

    Popis koji slijedi opisuje operatore s jednakom prednošću u istom retku,
    a redci su poredani po opadajućoj prednosti.

        var++, var--    post-inkrement, post-dekrement varijable
        ++var, --var    pre-inkrement, pre-dekrement varijable
        -, +            unarni minus, unarni plus
        !, ~            logička i bitwise negacija
        **              potenciranje
        *, /, %         množenje, dijeljenje, ostatak dijeljenja
        +, -            zbrajanje, oduzimanje
        <<, >>          bitwise pomak ulijevo, udesno
        <=, >=, <, >    usporedba
        ==, !=          jednako, nejednako
        &               bitwise AND
        ^               bitwise XOR
        |               bitwise OR
        &&              logički AND
        ||              logički OR

        expr ? expr : expr    uvjetni izraz

        =, *=, /=, %=, +=, -=, <<=, >>=,  &=, ^=, |=    pridruživanje

    Varijable ljuske su dopuštene kao parametri. Ime varijable se zamijeni
    s njezinom vrijednošću (ako treba, pretvori se u cijeli broj).
    Varijable, za upotrebu u izrazima, ne moraju imati atribut cijelog broja.

    Operatori se vrednuju prema pravilima prednosti. Najprije se
    vrednuju pod-izrazi u zagradama i tako mogu redefinirati gore
    opisana pravilila prednosti.

    Ako je vrednovanje zadnjeg ARGUMENTA nula (0), „let” završi s kȏdom 1;
    inače završi s uspjehom.Vrednuje uvjetni izraz.

    Vrednuje IZRAZ; ovisno o rezultatu vrednovanja, završi s izlaznim
    kȏdom 0 (istina) ili 1 (neistina, laž). Izrazi mogu biti unarni
    ili binarni. Unarni izrazi se često koriste za ispitivanje stanja
    datoteke. Također postoje operatori za usporedbu stringova i brojeva.

    Ponašanje od „test” ovisi o broju argumenata. Potražite u „bash”
    uputama detalje za uporabu.

    Operatori za datoteke:
        -a DATOTEKA     istina ako datoteka postoji
        -b DATOTEKA     istina ako je datoteka blok uređaj
        -c DATOTEKA     istina ako je datoteka znakovni uređaj
        -d DATOTEKA     istina ako je datoteka direktorij
        -e DATOTEKA     istina ako datoteka postoji
        -f DATOTEKA     istina ako je datoteka regularna datoteka
        -G DATOTEKA     istina ako je datoteka efektivno vlasništvo vaše skupine
        -g DATOTEKA     istina ako je datoteka SETGUID
        -h DATOTEKA     istina ako je datoteka simbolični link
        -k DATOTEKA     istina ako datoteka ima postavljeni "sticky" bit
        -L DATOTEKA     istina ako je datoteka simbolični link
        -N DATOTEKA     istina ako se datoteka promijenila od zadnjeg čitanja
        -O DATOTEKA     istina ako je datoteka efektivno vaše vlasništvo
        -p DATOTEKA     istina ako je datoteka imenovana cijev
        -r DATOTEKA     istina ako vi možete čitati datoteku
        -S DATOTEKA     istina ako je datoteka utičnica
        -s DATOTEKA     istina ako datoteka nije prazna
        -t DESKRIPTOR   istina ako je deskriptor datoteke otvoren u terminalu
        -u DATOTEKA     istina ako je datoteka SETUID
        -w DATOTEKA     istina ako vi možete pisati datoteku
        -x DATOTEKA     istina ako vi možete izvršiti datoteku

      DTEKA1 -nt DTEKA2   istina ako je prva datoteka promijenjena
                            kasnije od druge
      DTEKA1 -ot DTEKA2   istina ako je prva datoteka promijenjena
                            ranije od druge
      DTEKA1 -ef DTEKA2   istina ako je prva datoteka čvrsti link na drugu

    Operatori za stringove:
        -z STRING         istina ako je string prazni
        -n STRING         istina ako string nije prazni
        STRING            istina ako string nije prazni
      STRING1 = STRING2   istina ako su stringovi jednaki
      STRING1 != STRING2  istina ako stringovi nisu jednaki
      STRING1 < STRING2   istina ako se leksikografski prvi string
                            razvrsta ispred drugog
      STRING1 > STRING2   istina ako se leksikografski prvi string
                            razvrsta iza drugog

    Ostali operatori:
        -o OPCIJA         istina ako je ova OPCIJA ljuske omogućena
        -v VARIJABLA      istina ako ova VARIJABLA ima vrijednost
        -R VARIJABLA      istina ako je ova VARIJABLA referencija (nameref) 
        ! IZRAZ           istina ako IZRAZ neistinit
      IZRAZ1 -a IZRAZ2    istina ako su oba izraza istinita
      IZRAZ1 -o IZRAZ2    laž ako su oba izraza neistinita
      ARG1 OP ARG2        istina ako je aritmetika valjana; operator OP je
                            jedan od: -eq, -ne, -lt, -le, -gt ili -ge;
                            koji znače: jednako, nejednako, manje od, manje,
                            ili jednako, veće od, veće ili jednako.

    Završi s uspjehom ako je IZRAZ istinit, 1 ako je IZRAZ neistinit,
    ili 2 ako je dan nevaljani argument.Provjeri uvjetni izraz.

    To je sinonim za ugrađenu funkciju „test”, ali zadnji argument
    mora biti zagrada „]” kao par zagradi „[” na početku.Execute PIPELINE, which can be a simple command, and negate PIPELINE's
    return status.

    Exit Status:
    The logical negation of PIPELINE's return status.Izvrši jednostavnu naredbu ili prikaže informacije o naredbama.

    Izvrši danu NAREDBU s navedenim ARGUMENTIMA zanemarujući pritom bilo
    koju funkciju ljuske s istim imenom (naredba). Može se koristiti da
    pokrenete naredbu na disku i onda kad postoji funkcija s istim imenom.

    Opcije:
      -p   rabi zadanu vrijednost za PATH kao garanciju
             pronalaženja svih standardnih programa
      -v   ispiše jednu riječ koja pokaže naredbu ili
            datoteku koja poziva NAREDBU
      -V   ispiše opširnije opis svaka NAREDBE

    Završi s izlaznim kȏdom NAREDBE
    ili s 1 ako NAREDBA nije pronađena.Izvrši argumente kao naredbu ljuske.

    Združi argumente u jedinstveni string, upotrijebi ga kao ulaz za ljusku
    i izvrši rezultirajuću naredbu.

    Završi s kȏdom naredbe ili uspješno ako je naredba prazna.Izvršava naredbe tako dugo dok test ne uspije.

    Proširi i izvrši NAREDBE-2 tako dugo dok zadnja naredba u NAREDBAMA
    završi s kȏdom različitim od 0.

    Završi s kȏdom zadnje izvršene naredbe.Izvršava naredbe tako dugo dok je test uspješan.

    Proširi i izvrši NAREDBE-2 tako dugo dok zadnja naredba u NAREDBAMA
    završi s kȏdom 0.

    Završi s kȏdom zadnje izvršene naredbe.Izvrši naredbe u skladu s uvjetima.

    Izvrši naredbe iza „if”; ako to završi s kȏdom 0, izvrši naredbe
    iza prvog „then”; inače, izvrši naredbe iza sljedećeg „elif”
    (ako postoji) ili „else” (ako postoji). Ako „elif” završi s kȏdom
    nula, izvrši naredbe iza odgovarajućeg „then”. Ako nema više „elif”,
    ili „else” ili nakon izvršenih naredbi iza „then”, „if” naredba završi.

    „if” završi s kȏdom zadnje izvršene naredbe.Izvrši naredbe ovisno o podudaranju s uzorkom.

    Izvrši onu NAREDBU koja odgovara prvom UZORKU podudarnom s RIJEČI.
    Znak „|” rabi se za razdvajanje više uzoraka.

    Završi s kȏdom zadnje izvršene naredbe.Izvrši naredbe za svakog člana u popisu.

    Petlja „for” izvrši sekvenciju naredbi za svakog člana u popisu stavki.
    Ako nema operanda „in RIJEČIMA...; podrazumijeva se operand
    „in "$@"”. Svakom elementu u RIJEČIMA, IME se postavi na taj element
    i NAREDBE se izvrše.

    Završi s kȏdom zadnje izvršene naredbe.Izvrši naredbe iz datoteke u trenutnoj ljusci.

    Čita i izvršava naredbe iz DATOTEKE u trenutnoj ljusci. Ako je navedena
    opcija -p, argument PATH će se tretirati kao popis direktorija, odvojenih
    dvotočkama, u kojima se traži DATOTEKA. Ako -p nije naveden, pretraži se
    $PATH da se nađe direktorij s DATOTEKOM. Ako su navedeni bilo koji
    ARGUMENTI, oni postanu pozicijski parametri kad se DATOTEKA izvrši.

    Završi s kȏdom zadnje izvršene naredbe iz DATOTEKE ili s kȏdom 1 ako se
    DATOTEKA ne može pročitati.Izvrši uvjetnu naredbu.

    Vrednuje dani uvjetni IZRAZ; ovisno o rezultatu evaluacije završi s
    izlaznim kȏdom 0 (istina) ili 1 (neistina, laž).  Izrazi koriste iste
    osnovne komponente koje koristi ugrađena naredba (builtin) „test”,
    i mogu se kombinirati sa sljedećim operatorima:

        ( IZRAZ )     vrati vrijednost danog IZRAZA
        ! IZRAZ       istina ako je IZRAZ istina, inače laž
        IZRAZ1 && IZRAZ2    istina ako su oba izraza istinita, inače laž
        IZRAZ1 || IZRAZ2    laž ako su oba izraza neistinita, inače istina

    Ako se rabe operatori „==” ili „!=”, onda se string desno od operatora
    smatra za uzorak i provodi se podudaranje uzoraka.
    Ako se rabi operator „=~”, onda se string na desno od operatora podudara
    kao regularni izraz.

    Operatori „&&” i „|| ne vrednuju IZRAZ2 ako je IZRAZ1 dovoljan za
    određivanje konačnog rezultata.

    Završi s uspjehom ili 1 ovisno o IZRAZU.Izvrši ugrađenu funkciju ljuske (shell builtins).

    Izvrši UGRAĐENU_SHELL_FUNKCIJU s navedenim ARGUMENTIMA.
    To je korisno ako želite redefinirati implementaciju ugrađene shell
    funkcije kao vlastitu shell funkciju (skriptu s istim imenom kao ugrađena
    shell funkcija), a potrebna vam je funkcionalnost te ugrađene shell
    funkcije unutar vaše vlastite skripte.

    Završi s kȏdom UGRAĐENE_SHELL_FUNKCIJE ili s kȏdom 1 ako
    UGRAĐENA_SHELL_FUNKCIJA nije ugrađene funkcija ljuske.Exit %dIzlaz iz prijavne ljuske.

    Završi s kȏdom N. Završi s greškom ako to nije prijavna ljuska.Završi for, while ili until petlju.

    Završi FOR, WHILE ili UNTIL petlju. Ako je naveden N, završi N razina
    petlji.

    Završi s uspjehom osim ako je N manji od 1.Izlaz iz ljuske.

    Završi s kȏdom N. Bez N završi s kȏdom zadnje izvršene naredbe.Ograničenje (veličine) datotekePogreška izračuna broja s pomičnim zarezomOblikuje i ispiše ARGUMENTE prema pravilima formatiranja.

    Ispiše navedene ARGUMENTE u danom FORMATU.

    Opcije:
      -v VARIJABLA  preusmjeri (dodijeli) izlaz (ispis) u shell VARIJABLU
                    umjesto na standardni izlaz

    FORMAT je znakovni string koji sadrži tri vrste objekta:
    obične znakove koji se jednostavno kopiraju na izlaz; kontrolne znakove
    koji se pretvore i kopiraju na izlaz; simbole za formatiranje od kojih
    svaki uzrokuje ispisivanje sljedećeg sukcesivnog argumenta.

    Pored standardnih simbola "csndiouxXeEfFgGaA" za format opisanih u
    printf(3), printf interpretira:
      %b       proširi s kosom crtom (\) kontrolne znakove u odgovarajuće
               argumente
      %q       opskrbi argument s navodnicima tako da se može iskoristi kao
                 ulaz za ljusku
      %Q       kao %q, ali primijeni preciznost na argument bez navodnika prije
                 nego ga opskrbi s navodnicima; %(FORMAT)T znači da se
                 datum-vrijeme prikaže primjenom ovog formata na strftime(3)

    Dani format se koristi sve dok se ne potroše svi argumenti. Ako ima
    manje argumenata nego što format treba, suvišne format specifikacije
    se ponašaju kao da im dana vrijednost nula ili prazni string.

    Završi s uspjehom osim ako je dana nevaljana opcija ili se dogodila greška
    u pisanju ili greška pri dodijeli.GNU bash, inačica %s (%s)
GNU bash, inačica %s-(%s)
GNU duge opcije:
Općenita pomoć za korištenje GNU softvera: <http://www.gnu.org/gethelp/>
Skupi naredbe u jednu jedinicu.

    Izvrši skup naredbi u skupini (kao da je jedna). To je jedan
    od načina za preusmjeravanje čitavog skupa naredbi

    Završi s kȏdom zadnje izvršene naredbe.HFT ulazni podaci čekajuHFT nadzor je dopuštenHFT nadzor je oduzetHFT sekvencija zvukova je završenaHOME nije definiranPoklopiNemam ime!U/I (I/O) je spremaninformacija: neispravna instrukcijaZahtjev za informacijamaPrekidEliminranLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
Označi varijable ljuske kao nepromjenjive.

    Označi svako IME kao nepromjenjivo (readonly), tako da se vrijednosti
    ovih IMENA ne mogu promijeniti kasnijim operacijama. Ako je dana
    VRIJEDNOST, prvo mu dodijeli VRIJEDNOST, a zatim ga označi nepromjenjivim.

    Opcije:
      -a  svako IME se odnosi na varijable indeksiranog polja
      -A  svako IME se odnosi na varijable asocijativnog polja
      -f  svako IME se odnosi na funkcije ljuske
      -p  prikaže popis svih nepromjenjivih varijabli ili funkcija
            ovisno o opciji „-f” (je li ili nije dana).

    Argument „--” onemogući daljnje obrađivanje opcija.

    Završi s uspjehom osim ako je dana nevaljana opcija ili je IME nevaljano.Promijeni ili pokaže opcije za kompletiranje.

    Promijeni opcije za kompletiranje za svako IME ili ako nisu navedana IMEna,
    za kompletiranje koje je se trenutno izvršava. Ako nijedna OPCIJA nije dana,
    ispiše opcije za kompletiranja za svako IME ili za trenutno kompletiranje.

    Opcije:
      -o OPCIJA   postavi ovu OPCIJU kompletiranja za svako IME
      -D          promijeni opcije za „zadano” kompletiranje naredbe
      -E          promijeni opcije za kompletiranje „prazne” naredbe
      -I          promijeni opcije za kompletiranje na početnu riječ

    „+o” umjesto „-o” isključi navedanu opciju.

    Svako IME ukazuje na naredbu za koju specifikacija kompletiranja mora
    već prije biti definirana koristeći ugrađenu naredbu „complete”. Ako nije
    dano nijedno IME, funkcija koja trenutno generira kompletiranja mora
    pozvati „compopt” i opcije za generator koji trenutno izvršava kompletiranja
    se modificiraju

    Završi s uspjehom osim ako nije dana nevaljana opcija ili nije definirana
    specifikacija za kompletiranje IMENA.Modificira ograničenja ljuskinih resursa.

    Omogući upravljanje s resursima koji su dostupni ovoj ljusci i
    procesima koje stvara -- na sustavima koji to dopuštaju.

    Opcije:
      -S    rabi „mekano” (soft) ograničenje resursa
      -H    rabi „tvrdo” (hard) ograničenje resursa
      -a    popis svih trenutnih ograničenja
      -b    maks. veličina međuspremnika utičnice
      -c    maks. veličina „core” datoteka (u kB)
      -d    maks. veličina segmenta s procesnim podacima (in kB)
      -e    maks. prednost raspoređivanja („nice” vrijednost)
      -f    maks. veličina datoteka ljuska i njeni potomci mogu zapisati
      -i    maks. broj signala koji može biti na čekanju
      -l    maks. veličina koju proces može zaključati u memoriju
      -k    maks. broj rezerviranih/dodijeljenih „kqueues” za taj proces
      -m    maks. iznos fizičke memorije procesa (in kB)
      -n    maks. broj otvorenih deskriptora datoteka
      -p    maks. veličina međuspremnika cijevi
      -q    maks. broj bajtova za red POSIX poruka
      -r    maks. prednost raspoređivanja u stvarnom vremenu
      -s    maks. veličina stȏga (stack) (u kB)
      -t    maks. iznos CPU vremena (u sekundama)
      -u    maks. broj korisničkih procesa
      -v    maks. veličina virtualne memorije (u kB)
      -x    maks. broj datotečnih brava (lokota, locks)
      -P    maks. broj pseudo terminala
      -R    maks. trajanje rada procesa u stvarnom vremenu do blokiranja
      -T    maks. broj dretvi

    Nisu sve opisane opcije dostupne na svim platformama.

    Ako je specificirani, LIMIT postane nova vrijednost za specificirani
    resurs, inače se prikažu trenutne vrijednosti. Specijalne vrijednosti,
    „soft”, „hard”, i „unlimited” su trenutni soft limit, trenutni hard
    limit i unlimited. Ako nijedna opcija nije specificirana, podrazumijeva
    se da je aktivna „-f” opcija.

    Vrijednosti su višekratnik od 1024 bajta, osim za -t koji je
    u sekundama; -p je višekratnik od 512 bajta; -R je u mikrosekudama;
    -b je u bajtovima; i -e, -i, -k, -n, -q, -r, -u, i -P, prihvaćaju
    unscaled vrijednosti.

    U posix načinu, vrijednosti navedene s -c i -f su višekratnik od 512 bajta

    Završi s uspjehom osim ako je dana nevaljana opcija
    ili se dogodila greška.Premjesti posao u prednji plan.

    Premjesti specificirani posao u prednji plan i učini ga trenutnim poslom
    Bez navedene specifikacije posla, premjesti u prednji plan posao koji
    ljuska smatra trenutnim.

    Završi s kȏdom trenutne naredbe u prednjem planu ili s neuspjehom ako se
    dogodi greška.Premjesti poslove u pozadinu.

    Premjesti specificirane poslove u pozadinu, kao da su pokrenuti s „&”
    Ako nije navedena nijedna OZNAKA_POSLA, premjesti u pozadinu
    posao koji ljuska smatra trenutnim.

    Završi s uspjehom osim ako upravljanje poslovima nije omogućeno
    ili se dogodila greška.Nema učinka; uvijek završi s kodom 0, što znači „uspješno”.OLDPWD nije definiranRaščlamba argumenata opcija.

    „getopts” se može koristiti u skriptama za raščlanjivanje
    pozicijskih parametara kao opcija.

    STRING_OPCIJA sadrži slova opcije koje treba prepoznati; ako iza
    slova slijedi dvotočka, očekuje se da opcija ima argument koji treba
    biti bjelinom odvojen od opcije.

    Svaki put kad se pozove, getopts će smjestiti sljedeću opciju u ljuskinu
    varijablu IME (ako IME ne postoji, getopts ga inicijalizira), a indeks
    sljedećeg argumenta koji treba procesirati u ljuskinu varijablu OPTIND.
    OPTIND je inicijaliziran na 1 pri svakom pozivanju ljuske ili ljuskine
    skripte. Ako opcija zahtijeva argument, getopts smjesti taj argument u
    ljuskinu varijablu OPTARG.

    getopts javlja greške na jedan od dva načina. Ako je dvotočka prvi znaku
    u STRINGU_OPCIJA, getopts tiho prijavi grešku, tj. ne ispisuje poruke o
    greškama. Ako naiđe na nevaljanu opciju, getopts smjesti nađeni znak opcije
    u OPTARG. Ako zahtijevani argument nije pronađen, getopts smjesti „:” u IME
    i postavi OPTARG na pronađeni znak opcije. Ako getopts ne radi tiho i naiđe
    na nevaljanu opciju, getopts smjesti „?” u IME i poništi OPTARG.
    Ako zahtijevani argument nije pronađen, getopts smjesti „?” u IME, poništi
    OPTARG i ispiše poruku o greškama.

    Ako ljuskina varijabla OPTERR ima vrijednost 0, getopts onemogući ispis
    poruka o greškama, čak i kad prvi znak u STRINGU_OPCIJA nije dvotočka.
    Zadano, OPTERR ima vrijednost 1.

    Getopts obično analizira pozicijske parametre, a ako su
    argumenti navedeni kao ARG vrijednosti, onda njih analizira.

    Završi s uspjehom ako pronađe opciju; ako naiđe na kraj opcija
    ili ako se dogodi greška, završi s neuspjehom.Ispiše ime trenutnog radnog direktorija.

    Opcije:
      -L   ispiše vrijednost od $PWD ako sadrži trenutni radni direktorij
      -P   ispiše stvarnu fizičku stazu do direktorija bez simboličnih linkova

    Bez opcija, „pwd” se ponaša kao da je navedena opcija „-L”

    Završi s uspjehom osim ako nije dana nevaljana opcija
    ili se trenutni radni direktorij ne može pročitati.ZavršiPročita redak iz standardnog ulaza i razdijeli ga na polja.

    Pročita jedan redak iz standardnog ulaza (ili navedenog deskriptora
    datoteke FD ako je dana opcija „-u”) i dodijeli prvu riječ prvom IMENU,
    drugu riječ drugom IMENU, i tako dalje; preostale riječi dodijeli zadnjem
    IMENU. Samo se znakovi sadržani u  varijabli $IFS prepoznaju kao MEĐA
    (separator riječi). Zadano, obratna kosa crta (backslash) maskira znakove
    za separator i znak za novi redak.

    Ako nije navedeno nijedno IME, pročitani redak se spremi u varijablu REPLY.

    Opcije:
      -a POLJE   pročitane riječi dodijeli sekvencijalnim indeksima POLJA
                   počevši od nule
      -d MEĐA    nastavi čitati sve dok ne pročita prvu MEĐU (umjesto LF znaka)
      -e         koristi Readline za dobivanje retka
      -E         koristi Readline za dobivanje retka koristeći bash
                 kompletiranje umjesto zadanog Readline kompletiranja
      -i TEKST   rabi TEKST kao početni tekst za „Readline”
      -n BROJ    zaustavi čitanje nakon pročitanih ne više od BROJ znakova
                   ili nakon LF znaka (umjesto da uvijek čeka na LF znak)
      -N BROJ    zaustavi čitanje samo nakon pročitanih ne više od BROJ
                   znakova ili nakon EOF znaka ili nakon isteka „t SEKUNDA
      -p PROMPT  ispiše taj string kao prompt (bez LF) prije početka čitanja
      -r         backslash je doslovno kosa crta (nema posebno značenje)
      -s         ne odjekuje (echo) ulaz koji dolazi iz terminala
      -t BROJ    nakon isteka BROJA sekundi  prestane čekati na ulaz i završi
                   s kȏdom većim od 128; zadano, broj sekundi čekanja je
                   vrijednost varijable TMOUT; BROJ može biti i realni broj;
                   Ako je BROJ = 0, „read” završi odmah bez da išta čita, a
                   samo ako je ulaz dostupni na specificiranom deskriptoru
                   datoteke Završi s uspjehom

      -u FD      čita iz deskriptora datoteke FD umjesto iz standardnog ulaza

      Završi s uspjehom osim ako ne naiđe na konac datoteke (EOF) ili je
      isteklo vrijeme čekanja ili se dogodila greška pri dodjeli ili je
      naveden nevaljani deskriptor datoteke kao argument opciji „-u”.U varijablu indeksirano polje učita retke iz datoteke.

    Sinonim za „mapfile”.Čitanje redaka u indeksiranu polje-varijablu.

    Čita retke iz standardnog ulaza u varijablu polja POLJE.
    Ako nije navedeno POLJE, koristi se varijabla MAPFILE

    Opcije:
      -d ZNAK      koristi ZNAK (umjesto LF) za kraj retka
      -n KOLIČINA  kopira ne više od KOLIČINE redaka (0 kopira sve retke)
      -O POČETAK   upisivanje u POLJE počinje na indeksu POČETAK (zadano 0)
      -s BROJ      preskoči (izostavi) prvih BROJ redaka
      -t           ukloni znak novog retka iz svakog učitanog retka
      -u FD        čita iz deskriptora datoteke FD umjesto standardnog ulaza
      -C FUNKCIJA  vrednuje FUNKCIJU svaki put nakon KVANTUM pročitanih redaka
      -c KVANTUM   svaki put nakon učitanih KVANTUM redaka pozove FUNKCIJU

    Argument:
      POLJE        ime varijable polja u koju se trebaju upisati redci

    Ako je opcija „-C” navedena bez opcije „-c”, KVANTUM je 5000 (zadano).
    Kad je FUNKCIJA pozvana, dobije indeks sljedećeg elementa polja i redak koji
    se dodijeljuje kao dodatne argumente.

    Ako nije dan izričit POČETAK, POLJE se briše prije početka dodijeljivanja.

    Završi s uspjehom osim ako je POLJE readonly (samo-za-čitanje) ili nije
    indeksirano polje ili je dana nevaljana opcija.Zapis je zaključanZapamti ili prikaže lokacije programa.

    Odredi i zapamti apsolutnu stazu za svaku navedenu naredbu IME. Bez
    argumenata prikaže podatke o zapamćenim naredbama.

    Opcije:
      -d            zaboravi zapamćene lokacije za svako navedeno IME
      -l            generira izlaz u obliku koji se može koristi kao ulaz
      -p STAZA      rabi STAZU kao kao apsolutnu stazu za naredbu IME
      -r            zaboravi sve zapamćene lokacije
      -t            ispiše zapamćene lokacije za svako navedeno IME
                      (s prefiksom IME ako je navedeno više IMENA)

    Svako navedeno IME traži se u $PATH i doda se popisu zapamćenih
    naredbi.

    Završi s uspjehom osim ako nije pronađeno IME ili je dana nevaljana opcija.Ukloni direktorije iz stȏga.

    Ukloni zapise iz stȏga direktorija. Bez argumenata, ukloni direktorij na
    vrhu stȏga i učini da je trenutni radni direktorij jednak novom direktoriju
    na vrhu stȏga.

    Opcije:
      -n   izostavi uobičajenu promjenu direktorija kad uklanja
           direktorije iz stȏga, odnosno samo manipulira sa stȏgom

    Argumenti:
      +N   Ukloni da N-ti direktorij iz stȏga brojeći od nule s lijeve
             strane popisa pokazanog s „dirs”. Na primjer: „popd +0”
             ukloni prvi, a „popd +1” ukloni drugi direktorij.
      +N   Ukloni da N-ti direktorij iz stȏga brojeći od nule s desne
             strane popisa pokazanog s „dirs”. Na primjer.: „popd -0”
             ukloni zadnji, a „popd -1” ukloni predzadnji direktorij.

    Naredba „dirs” prikaže trenutni sadržaj stȏga direktorija.

    Završi s uspjehom osim ako je dana nevaljana opcija ili promjena
    direktorija nije uspjela.Ukloni svako navedeno IME iz popisa definiranih aliasa.

    S opcijom -a izbriše sve definirane aliase.

    Završi s uspjehom osim ako IME nije postojeći alias.Uklanja poslove iz trenutne ljuske.

    Ukloni svaki posao iz tablice aktivnih poslova.
    Ako nije navedena nijedna OZNAKA_POSLA, onda ukloni posao
    koji ljuska smatra trenutnim.

    Opcije:
      -a   ukloni sve poslove (ako nije specificiran nijedan posao)
      -h   ne ukloni, ali označi svaku OZNAKU_POSLA zato da se
             poslu ne pošalje SIGHUP ako (ili kad) ljuska primi SIGHUP
      -r   ukloni samo tekuće poslove

    Završi s uspjehom osim ako je dana nevaljana opcija ili nije
    navedena OZNAKA_POSLA.Uklanja zapise iz stȏga direktorija. Bez argumenata, ukloni vršni direktorij iz
    stȏga i premjesti se u novi vršni direktorij.

    Opcije:
      -n   spriječi uobičajenu promjenu direktorija kad uklanja
           direktorije iz stȏga, odnosno samo manipulira sa stȏgom

    Argumenti:
      +N   Ukloni da N-ti direktorij iz stȏga brojeći od nule s lijeve
           strane popisa pokazanog s „dirs”. Na primjer: „popd +0”
           ukloni prvi, a „popd +1” ukloni drugi direktorij.
      +N   Ukloni da N-ti direktorij iz stȏga brojeći od nule s desne
           strane popisa pokazanog s „dirs”. Na primjer.: „popd -0”
           ukloni zadnji, a „popd -1” ukloni predzadnji direktorij.

    Ugrađena naredba „dirs” prikaže sadržaj stȏga direktorija.Zamijeni ljusku s danom naredbom.

    Izvrši danu NAREDBU, zamjenjujući ovu ljusku s ovim programom.
    Eventualni ARGUMENTI postanu argumenti NAREDBE. Ako NAREDBA nije
    specificirana, sva preusmjeravanja se dogode u trenutnoj ljusci.

    Opcije:
      -a IME   dȁde IME kao nulti argument NAREDBI
      -c       izvrši NAREDBU u praznoj okolini
      -l       proslijedi crticu („-”) kao nulti argument NAREDBE

    Ako se naredba ne može izvršiti, ne-interaktivna ljuska završi,
    osim ako je aktivna opcija ljuske „execfail”.

    Završi s uspjehom, osim ako NAREDBA nije pronađena ili se dogodila
    greška preusmjeravanja.Prikaže vrijeme potrošeno cjevovodom.

    Nakon završetka izvršavanja CJEVOVODA prikaže sažetak statistike
    trošenja vremena: ukupno potrošeno vrijeme, CPU vrijeme potrošeno
    korisnikom i CPU vrijeme potrošeno sustavom za izvršavanje naredbi.

    Izlazni format se može prilagoditi s varijablom okruženja TIMEFORMAT.
    Opcija „-p” zanemari TIMEFORMAT i ispiše izlaz u prenosivom POSIX
    formatu.

    Završi s izlaznim kȏdom CJEVOVODA.Započne slijedeću iteraciju trenutne for, while ili until petlje.
    Ako je dan N, započne s N-tom petljom

    Završi s uspjehom osim ako je N manji od 1.Nastavi posao u interaktivnom načinu.

    Nastavi pauzirani ili pozadinski posao u interaktivnom modu
    To je ekvivalentno naredbi „fg”. OZNAKU_POSLA može specificirati
    ime posla ili broj posla. Ako „&” slijedi iza OZNAKE_POSLA
    onda posao prelazi u pozadinu. To je ekvivalentno naredbi „bg”

    Završi s kȏdom nastavljenog posla.Uvijek završi uspješno s kodom 0, što znači „uspješno“.Uvijek vraća izlazni kod 0, što znači „neuspješno”.Vraćanje iz funkcije ljuske.

    Učini da funkcija ili pokrenuta skripta završi sa izlaznom vrijednošću
    specificiranom s N. Ako N nije dan, završi s kȏdom zadnje naredbe
    izvršene unutar funkcije ili skripte.

    Vrati vrijednost N ili 1 ako ljuska ne izvrši funkciju ili skriptu.Vrati kontekst trenutnog poziva funkciji.

    Bez IZRAZA, vrati „$line $filename”. Ako je dan IZRAZ, onda vrati
    „$line $subroutine $filename”; ova dodatna informacija može
    poslužiti za stvaranje ‘stack trace’ (trasiranje stȏga).

    Vrijednost IZRAZA naznačuje koliko okvira se treba vratiti
    unatrag od trenutne pozicije; vršni okvir ima vrijednost 0.

    Završi s uspjehom osim ako ljuska ne izvršava ljuskinu funkciju
    ili je IZRAZ nevaljani.Prikaže kontekst od trenutnog poziva potprogramu.

    Bez IZRAZA, vrati "$broj_retka $ime_datoteke". Ako je dȃn IZRAZ, onda
    vrati "$broj_retka $funkcija $ime_datoteke"; ova dodatna informacija može
    poslužiti za stvaranje ‘stack trace’ (trasiranje stȏga).

    Vrijednost IZRAZA naznačuje koliko se okvira poziva treba vratiti
    unatrag od trenutne pozicije; vršni okvir a vrijednost 0.

    Završi s uspjehom osim ako ljuska ne izvršava funkciju ili je IZRAZ
    nevaljan.U tijekuSegmentacijska greškaPripremi izbornik i izvrši izabrane naredbe.

    Proširenjem RIJEČI, „select” generira i prikaže izbornik na standardnom
    izlazu za greške s brojem ispred svake riječi. Ako operand „u RIJEČIMA”
    nije naveden, podrazumijeva se operand „in "$@"”.
    Nakon izbornika prikaže se PS3 prompt i redak se čita iz standardnog
    ulaza; ako se redak sastoji od broja koji odgovara jednoj od pokazanih
    riječi, onda varijabla IME dobije vrijednost te riječi; ako je redak
    prazan, RIJEČI i prompt se ponovno prikažu; ako se pročita EOF (Ctrl-D)
    „select” naredba završi. Bilo koja druga pročitana vrijednost učini da se
    IME isprazni (nulira). Pročitani redak se spremi u varijablu REPLY.
    NAREDBE se izvršavaju nakon svakog izbora, tako dugo dok „break” naredba
    ne prekine posao.

    Završi s kȏdom zadnje izvršene naredbe.Pošalje signal poslu.

    Procesima označenim s PID-om ili sa OZNAKOM_POSLA pošalje signal
    naveden brojem ili imenom. Ako nije naveden ni broj ni ime, „kill” pošalje
    SIGTERM.

    Opcije:
      -s IME          IME je ime signala koji se šalje
      -n BROJ         BROJ je broj signala koji se šalje
      -l              izlista imena dostupnih signala; ako su dani argumenti
                        iza „-l”, to su brojevi signala čija odgovarajuća
                        imena treba ispisati
      -L              == -l

    „kill” je ugrađena ljuskina naredba iz dva razloga: dopušta korištenje
    ID posla umjesto ID procesa i također dopušta ubiti procese iako
    ste dostigli vaše ograničenje za broj procesa koje možete stvoriti;
    tj. ne morate pokrenuti novi proces da ubijete prekobrojne procese.

    Završi s uspjehom osim ako je dana nevaljana opcija ili se dogodila greška.Postavlja Readline tipkovničke prečace i varijable.

    Veže niz (kombinaciju) tipki na Readline funkciju ili na makronaredbe ili na
    Readline varijablu. Sintaksa za argumente koji nisu opcija je ista kao za
    ~/.inputrc, ali moraju biti proslijeđeni kao jedan argument;
    primjer: bind '"\C-x\C-r": re-read-init-file'

    Opcije:
      -f IME_DATOTEKE    iz DATOTEKE čita mapu tipki
      -l                 izlista imena svih poznatih funkcija
      -m MAPA_TIPKI      koristi MAPU_TIPKI (keymap) dok traje ova naredba;
                         moguće MAPE_TIPKI su jedna od emacs, emacs-standard,
                         emacs-meta, emacs-ctlx, vi, vi-move, vi-command,
                         i vi-insert.
      -P                 izlista imena funkcija i njihovih prečaca
      -p                 ispiše imena funkcija i njihovih prečaca u obliku
                           koji se može iskoristiti kao ulaz
      -r SEKVENCIJA      poništi SEKVENCIJU (ukloni slijed tipki za prečac)
      -q IME_FUNKCIJE    pokaže tipke koje pozivaju tu funkciju
      -S                 izlista nizove tipki koji pozivaju makronaredbe s
                           njihovim vrijednostima
      -s                 izlista nizove tipki koie pozivaju makronaredbe s
                           njihovim vrijednostima u obliku koji se može
                           iskoristiti kao ulaz
      -u IME_FUNKCIJE    ukloni sve sekvencije vezane na tu funkciju
      -V                 izlista imena varijabli s njihovim vrijednostima
      -v                 ispiše imena varijabli s njihovim vrijednostima
                           u obliku koji se može iskoristiti kao ulaz
      -x SEKVENCIJA:SHELL-NAREDBA  izvrši tu SHELL-NAREDBU svaki put kad se
                                     unese ta SEKVENCIJA (taj slijed tipki)
      -X                 izlista popis sekvencija tipki vezane s -x i
                           njima pridružene naredbe u obliku koji se može
                           iskoristiti kao ulaz

    Ako bilo koji argumenti ostanu nakon obrade opcija, opcije -p i -P tretiraju
    te argumente kao imena readline naredbi i izlaz ograniče na ta imena.

    Završi s uspjehom osim ako je dana neprepoznata opcija ili se
    dogodila greška.Omogući ili onemogući opcije ljuske.

    Postavi/promijeni vrijednost svakoj opciji ljuske IME_OPCIJE. Bez ikakvih
    argumenata opcije izlista sva dana IMENA_OPCIJA, ili prikaže sve ljuskine
    opcije, ako nijedno IME_OPCIJE nije navedeno.

    Opcije:
      -o   ograniči IME_OPCIJE na ona koja su definirana
             za upotrebu sa „set -o”
      -p   generira izlaz koji se može koristi za ulaz
      -q   izostavi izlaz (ništa ne ispisuje)
      -s   omogući (uključi) svako IME_OPCIJE
      -u   onemogući (isključi) svako IME_OPCIJE

    Bez opcija (ili samo s opcijom „-q”) završi s uspjehom ako je IME_OPCIJE
    omogućeno, a s 1 ako je onemogućeno. Završi s 1 i ako je dano
    nevaljano IME_OPCIJE, a završi s 2 ako je dana nevaljana opcija.Postavi izvozni atribut na varijable ljuske.

    Označi svako navedeno IME za automatski izvoz u okolinu za naknadno
    izvršavanje naredbi. Ako je dana VRIJEDNOST, dodijeli VRIJEDNOST
    prije izvoza.

    Opcije:
      -f   navedena IMENA se odnose samo na funkcije
      -n   ukloni izvezeni atribut iz svakog IMENA
      -p   izlista popis svih izvezenih varijabli ili funkcija

    Argument „--” spriječi daljnje procesiranje opcija.

    Završi s uspjehom osim ako je dana nevaljana opcija ili nije navedeno
    valjano IME.Postavlja ili uklanja vrijednosti opcija ljuske i pozicijskih parametara.

    Mijenja svojstva ljuske i vrijednosti pozicijskih parametara.
    Bez opcija ili argumenata „set” ispiše imena i vrijednosti svih definiranih
    varijabli i funkcija u obliku koji se može iskoristiti kao ulaz.
    Opcije („-”  postavi/omogući, a „+” poništi/onemogući opciju):

      -a  označi modificirane varijable ili stvorene za izvoz
      -b  smjesta prijavi prekid posla (ne čeka da završi trenutna naredba)
      -e  završi odmah ako naredba završi s kȏdom različitim od nula
      -f  onemogući globbing znakove (npr. *, ?, [] za imena datoteka
      -h  zapamti apsolutnu stazu (lokaciju) naredbi nakon prvog pretraživanja
      -k  svi argumenti dodjele smješteni su u okruženje za naredbu, a ne samo
            oni argumenti koji prethode imenu naredbe)
      -m  upravljanje poslovima je omogućeno
      -n  čita naredbe, ali ih ne izvršava
      -o  IME_OPCIJE
           Postavi/omogući varijablu koja odgovara imenu IME_OPCIJE
             Dugi nazivi za IME_OPCIJE i ekvivalentni kratki nazivi
              allexport    isto kao -a
              braceexpand  isto kao -B
              emacs        koristi stilsko sučelje „emacs” za uređivanje redaka
              errexit      isto kao -e
              errtrace     isto kao -E
              functrace    isto kao -T
              hashall      isto kao -h
              histexpand   isto kao -H
              history      omogući naredbu „history”
              ignoreeof    ne iziđe iz ljuske nakon pročitanog kraja datoteke
              interactive-comments
                           dopusti komentiranje u interaktivnim naredbama
              keyword      isto kao -k
              monitor      isto kao -m
              noclobber    isto kao -C
              noexec       isto kao -n
              noglob       isto kao -f
              nolog        (prepoznata opcija, ali je zanemarena)
              notify       isto kao -b
              nounset      isto kao -u
              onecmd       isto kao -t
              physical     isto kao -P
              pipefail     cjevovod vrati status posljednje neuspješne naredbe
                             ili 0 ako su sve naredbe uspješno završene
              posix        striktno poštuje POSIX standard
              privileged   isto kao -p
              verbose      isto kao -v
              vi           za uređivanje redaka koristi sučelje u „vi” stilu
              xtrace       isto kao -x
      -p  uključi privilegirani način: datoteke BASH_ENV i ENV se zanemare,
          funkcije ljuske se ne uvoze iz okruženja, a zanemari se i
          sve SHELLOPTS; taj način se automatski aktivira kad god se stvarni
          i efektivni UID i GID ne podudaraju. Isključivanje ove opcije
          učini da je efektivni UID i GID isti kao i stvarni UID i GID
      -t  završi nakon čitanja i izvršenja naredbe
      -u  tretira korištenje nepostojećih varijabli kao grešku pri supstituciji
      -v  ispisuje ulaz (odjekuje ih) istovremeno dok čitam
      -x  ispisuje naredbe s argumentima istovremeno dok izvršava
      -B  ljuska izvrši proširenje vitičastih zagrada (npr. a{b,c} -> ab ac)
      -C  preusmjeravanje izlaza ne će prebrisati regularne datoteke
      -E  Ako je postavljeno, ERR zamka (trap) nasljeđuju funkcije ljuske
      -H  omogući upotrebu znaka „!” za pozivanje naredbi iz popisa povijesti
          naredba -- zadano, ako je ljuska interaktivna
      -P  ne rješava simbolične poveznice pri izvršavanju naredbi poput „cd”
            koje promijene trenutni direktorij
      -T  Ako je postavljeno, funkcije ljuske nasljeđuju zamke DEBUG i RETURN
      --  dodijeli sve preostale argumente pozicijskim parametrima; ako nema
          preostalih argumenata, postojeći pozicijski argumenti se brišu
      -   isključi opcije -v i -x; argumenti koji slijede su pozicijski
            parametri (ali ako ih nema, postojeći pozicijski argumenti
            se ne brišu)

    Ako je opcija -o dana bez IME_OPCIJE, set ispiše trenutne postavke ljuske.
    Ako je opcija +o dana bez IME_OPCIJE, set ispiše popis naredbi za stvaranje
    trenutnog stanja ljuske.

    Korištenje + umjesto - onemogući navedene zastavice. Zastavice se mogu
    također koristiti nakom pokretanja ljuske.

    Trenutno omogućene zastavice mogu se naći u $-. Preostali argumenti smatraju
    smatraju se pozicijskim parametrima i dodjeljeni su redom, $1, $2, .. $n.
    Ako ARGUMENTI nisu navedeni, ispiše se popis svih varijabli ljuske.

    Završi s uspjehom osim ako je dana nevaljana opcija.Postavi vrijednosti i svojstva varijabli.

    Sinonim za „declare”.  Za detalje utipkajte (bez navodnika) „help declare”.Postavlja vrijednosti i atribute varijablama.

    Deklarira varijable i dodjeljuje im atribute. Ako IMENA nisu dana,
    prikaže atribute i vrijednosti svih varijabli.

    Opcije:
      -f   prikaže samo definirane funkcije (ne prikaže varijable)
      -F   prikaže samo imena funkcija bez definicija
      -g   stvori globalne varijable samo za upotrebu u funkciji ljuske;
             inače su zanemarene
      -I   ako stvori lokalnu varijablu, neka naslijedi atribute i vrijednost
             varijable s istim imenom u prethodnom opsegu
      -p   prikaže atribute i vrijednost za svako dano IME

    Opcije koje postavljaju atribute:
      -a   učini od navedenih IMENA indeksirana polja (ako je to podržano)
      -A   učini od navedenih IMENA asocijativna polja (ako je to podržano)
      -i   učini da navedena IMENA dobiju „integer” svojstva
      -l   pretvori slova navedenih IMENA u mala slova prilikom upotrebe
      -n   učini da dano IME referira na varijablu imenovanu
             sa svojom vrijednosti
      -r   učini navedena IMENA readonly
      -t   učini da navedena IMENA dobiju „trace” svojstva
      -u   pretvori slova navedenih IMENA u velika slova prilikom upotrebe
      -x   označi navedena IMENA za ekport

    „+” umjesto „-” isključi dani atribut, osim za a, A i r.

    Varijable s „integer” atributom obavljaju aritmetičke operacije tijekom
    izvođenja i upotrebe (pogledajte „let” naredbu).

    Unutar funkcije „declare” učini navedena IMENA lokalnima, slično kao
    naredba „local”. Opcija „-g” spriječi takvo ponašanje.

    Završi s uspjehom osim ako je dana nevaljana opcija
    ili se dogodila greška prilikom zadavanja varijabli.Naredba ljuske koja podudara riječ „Naredbe ljuske koje podudaraju riječ „Naredbi ljuske koje podudaraju riječ „Kratke opcije:
Pomakne pozicijske parametre.

    Preimenuje pozicijske parametre $N+1,$N+2,... u $1,$2,...
    Ako nije naveden N, uzima se da je N = 1.

    Završi s uspjehom osim ako je N negativni ili veći od $#.Signal %dSpecificira kako Readline treba kompletirati argumente.

    Za svako navedeno IME specificira kako se kompletiraju argumenti. Ako nisu
    navedene opcije ili IMENA, ispiše postojeća pravila kompletiranja u obliku
    upotrebljivom za ulaz.

    Opcije:
      -p   ispiše postojeće specifikacije kompletiranja u formatu
             upotrebljivom za ulaz
      -r   ukloni specifikaciju kompletiranja za svako navedeno IME
             ili ukloni sve specifikacije ako nisu navedena IMENA
      -D   na naredbe koje nemaju vlastitu specifikaciju za kompletiranje
             primjeni „zadane” akcije i specifikacije kompletiranja
      -E   primjeni zadano ponašanje specifikacija i akcija i na „prazne”
             naredbe -- kompletiranje praznih redaka
      -I   primjeni zadano kompletiranje i akcije na početnu riječ
             (obično naredba)

    Redoslijed akcija pri pokušaju kompletiranja slijedi gore dan poredak
    opcija pisanih u verzalu. Ako je navedeno više opcija, opcija „-D” ima veću
    prednost od opcije „-E”, a obje imaju veću prednost od opcije „-I”

    Završi s uspjehom osim ako je dana nevaljana opcija
    ili se dogodila greška.PauziranoPauzirano (signalom)Pauzirano (ulaz u terminal)Pauzirano (izlaz iz terminala)Pauzirano(%s)Suspendira izvršavanje ljuske.

    Suspendira izvršavanje ove ljuske sve dok ne primi signal SIGCONT.
    Normalno, prijavne ljuske i ljuske bez upravljanja poslovima ne mogu biti
    suspendirane, osim ako nisu prisiljene.

    Opcije:
      -f  prisili obustavu, čak i ako je to prijavna ljuska, a upravljanje
          poslovima nije omogućeno

    Završi s uspjehom, osim ako upravljanje poslovima nije omogućeno
    ili se dogodila greška.TIMEFORMAT: „%c”: nevaljani znak za formatZavršenoPošta u %s je pročitana
Još ima tekućih poslova.
Još ima pauziranih poslova.
NEMA JAMSTVA do granica dopuštenih zakonom.Ispod su navedene sve interne naredbe ljuske. Upišite (bez navodnika) „help”
da vidite popis tih naredbi. Upišite „help ime” za detalje o naredbi „ime”.
Upišite „info bash” za detaljne informacije i upute o ljusci.
Koristite „man -k ...” ili „info ...” za više informacija o ostalim poslovima.

Zvjezdica (*) pokraj imena znači da je naredba onemogućena.

Ovo je slobodan softver: slobodno ga mijenjajte i dijelite.Prikupljanje (hvatanje) signala i drugih događaja.

    Definira i aktivira postupke rukovanja koji se pokrenu kad ljuska
    primi signal ili se dogodi neki drugi slučaj.

    AKCIJA je naredba koja se pročita i izvrši kad ljuska primi jedan od
    specificiranih signala (SIGNAL_SPEC). Ako nema AKCIJE (i dan je samo
    jedan SIGNAL_SPEC) ili je -, svaki specificirani signal se vrati na svoju
    originalnu vrijednost (koju je imao na startu ove ljuske). Ako je AKCIJA
    prazni string, ljuska igorira svaki SIGNAL_SPEC i pozvane naredbe.

    Ako je SIGNAL_SPEC EXIT 0, AKCIJA se izvrši pri izlasku iz ljuske.
    Ako je SIGNAL_SPEC DEBUG, AKCIJA se izvrši prije svake jednostavne
    naredbe i ostalih odabranih naredba. Ako je SIGNAL_SPEC RETURN, AKCIJA se
    izvrši svaki put kad se pokrene ljuskina funkcija ili skripta izvršena s . 
    ili s 'buildins source' završi izvršavanje. SIGNAL_SPEC ERR znači da se
    AKCIJA izvrši svaki put kad bi neuspješna naredba uzrokovala izlaz ljuske
    kad je opcija -e omogućena.

    Ako nije navedena nikakva AKCIJA, trap izlista popis asocijacije naredbi
    sa svakim uhvaćenim signalom, u obliku koji se može iskoristiti kao ljuskin
    ulaz, za povratak na istu konfiguraciju signala

    Opcije:
      -l   popis imena signala i njihov odgovarajući broj
      -p   prikaže trap naredbe povezane sa svakim SIGNAL_SPEC u obliku koji
             se može iskoristiti kao ljuskin ulaz; ili za sve uhvaćene signale,
             ako argumenti nisu navedeni
      -P   prikaže trap naredbe povezane sa svakim SIGNAL_SPEC. Mora se navesti
             najmanje jedan SIGNAL_SPEC. -P i -p se ne mogu zajedno koristiti.
      
    Svaki SIGNAL_SPEC je ime signala iz <signal.h> ili broj signala.
    Signal se može poslati ljusci s "kill -signal $$".

    Završi s uspjehom osim ako SIGNAL_SPEC nije valjan ili je dana
    nevaljana opcija.Upišite „%s -c "help set"” za dodatne obavijesti o opcijama ljuske.
Upišite „%s -c help set” za dodatne obavijesti o ugrađenim naredbama ljuske.
Nepoznati signal #%dNepoznata greškaNepoznato stanjeUkloni vrijednosti i atribute varijabli i funkcija ljuske.

    Za svako IME ukloni odgovarajuću varijablu ili funkciju

    Opcije:
      -f   tretira svako IME kao funkciju ljuske
      -v   tretira svako IME kao varijablu ljuske
      -n   tretira svako IME kao referenciju na neki objekt i ukloni
             samu varijablu IME umjesto referiranog objekta

    Bez opcija, „unset” prvo pokuša ukloniti varijablu, a ako to
    ne uspije, onda pokuša ukloniti funkciju. Neke varijable ne može
    ukloniti; pogledajte „readonly.

    Završi s uspjehom osim ako je dana nevaljana opcija ili IME je
    „samo-za-čitanje”. (bez navodnika)Žurno U/I stanjeUporaba:  %s [GNU duga opcija] [opcija]...
          %s [GNU duga opcija] [opcija] skripta...
Koristite "%s" za izlaz iz ljuske.
Koristite naredbu „bashbug” za prijavljivanje grešaka.
Korisnički signal 1Korisnički signal 2Čeka da posao završi i vrati njegov izlazni kȏd.

    Čeka na svaki posao identificiran s ID, to jest indikatorom posla ili
    indikatorom procesa, pa izvijesti njegov završni status. Ako nije dan
    ID, čeka na sve trenutno aktivne potomke, a završni status je nula.
    Ako je ID oznaka posla, čeka na sve procese u cjevovodu tog posla.

    Ako je dana opcija „-n”, čeka na svršetak jednog posla iz popisa ID-ova
    ili ako nije dan nijedan ID, čeka da završi sljedeći posao i vrati
    njegov izlazni kȏd.

    Ako je dana opcija „-f” i upravljanje poslovima je omogućeno, čeka dok
    specificirani ID ne završi, umjesto da promijeni status.

    Završi s kȏdom zadnjeg ID-a; s kȏdom 1 ako je ID nevaljan ili je dana
    nevaljana opcija ili ako je -n dan, a ljuska nema neočekivane podređene.
    procese (potomke).Čeka da proces završi i vrati njegov izlazni kȏd.

    Čeka na svaki proces identificirani s PID i izvijesti njegov završni
    status. Ako nije naveden PID, čeka na sve trenutno aktivne potomke,
    a završni status je nula. PID mora biti proces ID.

    Završi s kȏdom zadnjeg PID-a, s kȏdom 1 ako je PID nevaljani,
    ili s 2 ako je dana nevaljana opcija.Prozor promijenjenIspiše argumente na standardni izlaz.

    Prikaže ARGUMENTE na standardnom izlazu (pripoji im znak za novi redak).
    Opcijom „-n” može se isključiti pripajanje znaka za novi redak.

    Završi s uspjehom osim ako se ne dogodi greška pri pisanju.Navedene argumente ispiše na standardni izlaz.

    Ispiše navedene argumente na standardni izlaz međusobno
    odvojene s jednim znakom za razmak i završi s novim retkom.

    Opcije:
      -n   ne pripaja znak novog retka (LF)
      -e   interpretira sljedeće backslash (\) kontrolne kȏdove
      -E   ne interpretira sljedeće backslash (\) kontrolne kȏdove

    „echo” interpretira ove kontrolne kȏdove:
      \a   alert (zvučni signal)
      \b   backspace
      \c   spriječi daljni izlaz
      \e   znak za escape (ESC)
      \E   znak za escape (ESC)
      \f   nova stranica (znak za FF, form feed)
      \n   novi redak (znak za LF, line feed)
      \r   na početak novog retka (Enter, znak za CR, carriage return)
      \t   horizontalni tabulator
      \v   vertikalni tabulator
      \\     backslash (\)
      \0NNN   znak s ASCII kȏdom NNN (oktalni, 1 do 3 oktalne znamenke)
      \xHH    osmobitni znak čija je vrijednost HH (heksadekadska)
      \uHHHH  unicode znak čija je vrijednost HHHH  (heksadekadska)
                 HHHH može biti od 1 do 4 heksadekadske znamenke
      \UHHHHHHHH  unicode znak čija je vrijednost HHHH  (heksadekadska)
                     HHHHHHHH može biti od 1 do 8 heksadekadskih znamenki

    Završi s uspjehom osim ako se ne dogodi greška pri pisanju.Imate poštu u $_Imate novu poštu u $_[ ARGUMENT... ][[ IZRAZ ]]„%c”: loša naredba„%c”: nevaljani znak za formatiranje„%c”: nevaljani znak u simboličnom načinu„%c”: nevaljani operator u simboličnom načinu„%c”: nevaljani pokazatelj formata vremena„%s”: ne može razvezatine može ukloniti „%s” iz mape tipki„%s”: ime aliasa nije valjano„%s”: nevaljani naziv za mapu tipki„%s”: nevaljano ime varijable za referenciju imena„%s” je specijalna ugrađena ljuskina funkcija„%s”: nema znaka za formatiranje„%s”: nije PID ili nije valjana oznaka posla„%s”: nevaljani identifikator„%s”: nepoznato ime funkcijeočekivana je „)”očekivana je „)”, a nađen je %sočekivan je „:” u uvjetnom izrazuadd_process(): PID %5ld (%s) označen kao još uvijek aktivanalias [-p] [IME[=ZAMJENA]... ]all_local_variables(): u trenutnom opsegu nema konteksta funkcijepreusmjeravanje nije jednoznačnoargumentočekivan je argumentpogrešna aritmetička sintaksa u izrazupogrešna aritmetička sintaksa pri dodjeljivanju varijablipogrešna aritmetička sintaksa: nevaljani aritmetički operatorpogrešna aritmetička sintaksa: očekivan je operandnužna je podrška za varijable poljapokušano dodjeljivanje ne-varijabliloši indeks poljaloš tip naredbeloš konektor%s: %s: loš interpreterloš skokloša supstitucija: ne zatvara „`” u %sloša supstitucija: ne zatvara „%s” u %sPočetna mrežna bash stranica: <http://www.gnu.org/software/bash>
bash_execute_unix_command(): ne može pronaći mapu tipki za dodjelubg [OZNAKA_POSLA...]bgp_delete: PETLJA: psi (%d) == storage[psi].bucket_nextbgp_search: PETLJA: psi (%d) == storage[psi].bucket_nextbind [-lpsvPSVX] [-m MAPA_TIPKI] [-f IME_DATOTEKE] [-q IME]
           [-u IME] [-r NIZ_TIPKI] [-x NIZ_TIPKI:SHELL_NAREDBA]
           [NIZ_TIPKI:READLINE_FUNKCIJA | READLINE_NAREDBA]proširenje vitičastih zagrada: nema dovoljno memorije za %sproširenje vitičastih zagrada: nema dovoljno memorije za %s elemenataproširenje vitičastih zagrada: nema dovoljno memorije za „%s”break [N]**interna greška** : loš simbol u izrazu za dodjelubuiltin [UGRAĐENA_SHELL_FUNKCIJA [ARGUMENT...]]caller [IZRAZ]moguće je „return” samo iz funkcije ili skripte pozvane sa sourcemože se koristiti samo u funkcijine može rezervirati novi datotečni deskriptor za bash unos iz deskriptora datoteke %dne može dodijeliti deskriptor datoteke varijabline može promijeniti jezično područje (locale)ne može stvoritine može stvoriti privremenu datoteku za here-documentne može duplicirati deskriptor datoteke %d u deskriptor datoteke %dne može duplicirati imenovanu cijev %s kao deskriptor datoteke %dne može izvršitine može izvršiti binarnu datotekune može pronaći %s u dijeljenom objektu %s: %sne može dobiti ograničenjene može napraviti potomka za zamjenu naredbine može napraviti potomka za zamjenu procesane može napraviti cijev za zamjenu naredbine može napraviti cijev za zamjenu procesane može promijeniti ograničenjene može otvoritine može otvoriti imenovanu cijev %s za čitanjene može otvoriti imenovanu cijev %s za pisanjene može otvoriti dijeljeni (zajednički) objekt %s: %sne može otvoriti privremenu datotekune može pisati preko postojeće datotekene može čitatine može preusmjeriti standardni unos iz /dev/nullne može onemogućiti „nodelay” način za deskriptor datoteke %dne može istovremeno postaviti i poništiti opcije ljuskene može postaviti GID na %d: efektivni GID je %dne može postaviti procesnu skupinu (%d) terminalane može postaviti UID na %d: efektivni UID je %dne može istovremeno poništiti funkciju i varijablune može pokrenuti debugger; dijagnostika je onemogućenapauziranje nije mogućene može pauzirati prijavnu ljusku„-f” se ne može koristiti za definiranje funkcijamožete koristiti samo jedan od -a, -n, -r ili -wcase RIJEČ in [UZORAK [| UZORAK]...) NAREDBE;;]... esaccd [-L|[-P [-e]]] [-@] [DIREKTORIJ]setpgid na potomku (iz %ld na %ld)command [-pVv] NAREDBA [ARGUMENT...]naredba nije pronađenacommand substitution: zanemaren prazni (null) bajt u ulazucommand_substitute(): ne može duplicirati cijev kao deskriptor datoteke 1compgen [-V IME_VARIJABLE] [-abcdefgjksuv] [-o OPCIJA] [-A AKCIJA]
                 [-C NAREDBA] [-F FUNCIJA] [-G GLOB_UZORAK] [-P PREFIKS]
                 [-S SUFIKS] [-W POPIS_RIJEČI] [-X FILTAR_UZORAKA]  [RIJEČ]complete [-abcdefgjksuv] [-pr] [-DEI] [-o OPCIJA] [-A AKCIJA]
                   [-C NAREDBA] [-F FUNKCIJA] [-G GLOB_UZORAK] [-P PREFIKS]
                   [-S SUFIKS] [-W POPIS_RIJEČI] [-X FILTAR_UZORAKA]  [IME...]completion(): funkcija „%s” nije pronađenacompopt [-o|+o OPCIJA] [-DEI] [IME...]očekivan je uvjetni binarni operatorcontinue [N]coproc [IME] NAREDBA [PREUSMJERAVANJA]ne može pronaći /tmp; napravite taj direktorij!cprintf(): „%c”: nevaljani znak za formattrenutnodeclare [-aAfFgiIlnrtux] [IME[=VRIJEDNOST]...]
    ili: declare -p [-aAfFilnrtux] [IME...]brišemo pauzirani posao %d s procesnom grupom %lddescribe_pid(): PID %ld ne postojistȏg direktorija je prazanindeks stȏga direktorijadirs [-clpv] [+N] [-N]disown [-h] [-ar] [OZNAKA_POSLA... | PID...]dijeljenje s 0dinamičko učitavanje nije dostupnoecho [-n] [ARGUMENT...]echo [-neE] [ARGUMENT...]prazno ime varijable poljaprazna datotekaenable [-a] [-dnps] [-f DATOTEKA] [IME...]pogreška pri pokušaju stvaranja toka u međuspremnikugreška pri dobivanju svojstava terminalagreška pri uvozu definicije funkcije za „%s”greška pri dohvaćanju trenutnog direktorijagreška pri postavljanju svojstava terminalaeval [ARGUMENT...]eval: premašena je dopuštena razina ugniježđenosti za eval (%d)exec [-cl] [-a IME] [NAREDBA [ARGUMENT...]] [PREUSMJERAVANJE...]execute_coproc(): coproc [%d:%s] još uvijek postojiexit [N]očekivana je „)”eksponent je manji od 0export [-fn] [IME[=VRIJEDNOST]...] ili export -p [-f]očekivan je izrazpremašena je dopuštena razina rekurzija izraza fc [-e EDITOR] [-lnr] [PRVA] [ZADNJA]
ili: fc -s [UZORAK=ZAMJENA] [NAREDBA]fg [OZNAKA_POSLA]deskriptor datoteke je izvan rasponaime datoteke je nužno kao argumentfor (( IZRAZ1; IZRAZ2; IZRAZ3 )); do NAREDBE; donefor IME [in RIJEČIMA...].; do NAREDBE; doneračvani PID %d pripada tekućem poslu %dproblem s raščlanjivanjem formatiranja: %sokvir nije pronađenfree(): pozvana s argumentom bloka koji je već slobodanfree(): pozvana s argumentom bloka koji se ne koristifree(): veličine početnog i zaključnog (dijela) bloka su različitefree(): otkriveno je podlijevanje; magic8 je oštećenfree(): otkriveno je podlijevanje, mh_nbytes izvan rasponafunction IME { NAREDBE ; }   ili:  IME () { NAREDBE ; }function_substitute: ne može duplicirati anonimnu datoteku kao standardni izlazfunction_substitute(): ne može otvoriti anonimnu datoteku za izlazbuduće inačice ljuske prisilit će vrednovanje kao aritmetičku supstitucijugetcwd(): ne može pristupiti nadređenim direktorijimagetopts STRING_OPCIJA IME [ARGUMENT...]hash [-lr] [-p STAZA] [-dt] [IME...]hashiranje je onemogućenohelp [-dms] [UZORAK...]u ovoj inačici pomoć nije dostupnahere-document u retku %d završava s krajem datoteke (očekivan je „%s”)history [-c] [-d POZICIJA] [N]
    ili: history -anrw [DATOTEKA]
    ili: history -ps ARGUMENT...pozicija u povijestioznaka povijestipogodci	naredba
identifikator (ime) je očekivan nakon pre-increment ili pre-decrementif NAREDBE; then NAREDBE; [ elif NAREDBE; then NAREDBE; ]...
                [else NAREDBE;] fiinitialize_job_control: neuspješna getpgrp()initialize_job_control: disciplina/implementacija redaka (LDISC)initialize_job_control: nema upravljanja poslom u pozadiniinitialize_job_control: setpgid()nevaljana aritmetička bazanevaljana baza*** nevaljani znak %d u izvoznom stringu za %snevaljani deskriptor datotekenevaljana vrsta glob-sortiranjanevaljani heksadekadski broj%s: nevaljana cijelo brojna (integer) konstantanevaljani brojnevaljani oktalni brojnevaljani regularni izraz „%s”nevaljani regularni izraz „%s”: %snevaljani broj za signalposao %d pokrenut je bez upravljanja poslomOZNAKA_POSLA [&]jobs [-lnprs] [OZNAKA_POSLA...]
 ili: jobs -x NAREDBA [ARGUMENT...]kill [-s SIGNAL_IME | -n SIGNAL_BROJ | -SIGNAL] PID | OZNAKA_POSLA
 ili: kill -l [SIGNAL]posljednja naredba: %s
let ARGUMENT...ograničenjeredak %d: uređivanje redaka nije omogućenofunkcija učitavanja za %s završila je s greškom (%d): nije učitanolocal [OPCIJA] IME[=VRIJEDNOST ]...odjavljen
logout [N]broj ponavljanjamake_here_document(): loš tip instrukcije %dmake_local_variable(): u trenutnom opsegu nema konteksta funkcijemake_redirection(): instrukcija za preusmjeravanje „%d” je izvan rasponamalloc(): pokazivač na listi slobodnih blokova je prebrisanmalloc(): neuspješni kontrolni test: %s
mapfile [-d MEĐA] [-n KOLIČINA [-O POČETAK] [-s BROJ] [-t]
                 [-u DESCRIPTOR_DATOTEKE] [-C FUNKCIJA] [-c KVANTUM]  [POLJE]premašen je maksimalni broj (količina) here-documentpreseli proces na drugi procesornema „)”nema „]”nema heksadekadske znamenke za \xnema unicode znamenke za \%cmrežne operacije nisu podržane*** nema „=” u izvoznom stringu za %sne zatvoreni „%c” u %snijedna naredba nije nađenaNema pomoći za „%s”.
Pokušajte s „help help”, „man -k %s” ili „info %s”.nema upravljanja poslovimanema upravljanja poslovima u ovoj ljuscinema podudaranja: %snema drugog direktorijauz „-x” nije dopuštena nijedna druga opcijanijedna funkcija kompletiranja trenutno nije pokrenutanema prijavne ljuske; koristite „exit”null-direktorijoktalni brojima smisla samo u „for”, „while” ili „until” petljamagreška cijevipop_scope(): vrh od „shell_variables” nije privremeni doseg okružjapop_var_context(): glava „shell_variables” nije funkcijski kontekstpop_var_context(): nije „global_variables” kontekstpopd [-n] [+N | -N]prijeti prekid napajanjau interaktivnoj ljusci pretty-printing način se zanemarujeprint_command(): loš konektor „%d”printf [-v VARIJABLA] FORMAT [ARGUMENTI]progcomp_insert(): %s: prazni COMPSPECprogrammable_completion(): %s: moguća petlja ponovnog pokušajaprogramska greškapushd [-n] [+N | -N | DIREKTORIJ]pwd [-LP]read [-Eers] [-a POLJE] [-d MEĐA] [-i TEKST] [-p PROMPT]
           [-n BROJ_ZNAKOVA] [-N BROJ_ZNAKOVA] [-t TAJMOUT]
           [-u DESCRIPTOR_DATOTEKE]  [IME...]greška čitanjareadarray [-d MEĐA] [-n KOLIČINA] [-O POČETAK] [-s BROJ] [-t]
                     [-u DESCRIPTOR_DATOTEKE] [-C FUNKCIJA] [-c KVANTUM] [POLJE]readonly [-aAf] [IME[=VRIJEDNOST]...]   ili: readonly -prealloc(): poziva se s neiskorištenim blokom kao argument (blok još nije odabran)realloc(): veličine početnog i zaključnog (dijela) bloka su različiterealloc(): otkriveno je podlijevanje; magic8 je oštećenrealloc(): otkriveno je podlijevanje, mh_nbytes izvan rasponapodlijevanje (underflow) pri rekurziji stȏgagreška preusmjeravanja: ne može duplicirati deskriptor datotekeregister_alloc(): %p je već rezerviran u tablici??
register_alloc(): rezervacijska tablica je popunjena s FIND_ALLOC??
register_free(): %p je već slobodan u tablici??
ograničeni način radaograničeni način: preusmjeravanje izlaza nije dopuštenoreturn [N]run_pending_traps(): loša vrijednost u trap_list[%d]: %prun_pending_traps: signalom rukuje SIG_DFL, opet šalje %d (%s) samom sebicheck_bash_input(): međuspremnik već postoji za novi datotečni deskriptor %dgreška pri čitanju datoteke skripteselect IME [in RIJEČI... ;] do NAREDBE; doneset [-abefhkmnptuvxBCEHPT] [-o IME_OPCIJE] [--] [-] [ARGUMENT...]razina ljuske (%d) je previsoka, vraćamo ju na 1shell_getc(): shell_input_line_size (%zu) premašuje SIZE_MAX (%lu): redak je skraćenshift [N]broj (količina) pomakashopt [-pqsu] [-o] [IME_OPCIJE...]sigprocmask(): %d: nevaljana operacijasource [-p path] IME_DATOTEKE [ARGUMENTI]start_pipeline(): procesna grupa cijevidužina stringasuspend [-f]pogrešna sintaksapogrešna sintaksa u uvjetnom izrazupogrešna sintaksa u uvjetnom izrazu: neočekivan simbol „%s”pogrešna sintaksa blizu „%s”pogrešna sintaksa blizu neočekivanog tokena „%s”pogrešna sintaksa blizu neočekivanog tokena „%s” tijekom traženja odgovarajućeg „%c”pogrešna sintaksa: neočekivan „%s”pogrešna sintaksa: „((%s))”pogrešna sintaksa: neočekivan „;”pogrešna sintaksa: nužan je aritmetički izrazpogrešna sintaksa: neočekivani kraj datotekepogrešna sintaksa: neočekivani kraj datoteke od „%s” naredbe u retku %dpogrešna sintaksa: neočekivani kraj datoteke od naredbe u retku %dprijeti pad sustavatest [IZRAZ]time [-p] CJEVOVODpreviše argumenatatrap [-Plp] [[AKCIJA] SIGNAL_SPEC...]trap handler: maksimalna razina 'trap-handler' je premašena (%d)trap_handler(): loš signal %dtype [-afptP] IME...typeset [-aAfFgiIlnrtux] IME[=VRIJEDNOST] ...
    ili: typeset -p [-aAfFilnrtux] [IME...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [LIMIT]umask [-p] [-S] [MODE]unalias [-a] IME [IME...]neočekivan kraj datoteke (EOF) pri traženju „]]”neočekivan kraj datoteke (EOF) pri traženju odgovarajućeg „%c”neočekivani kraj datoteke pri traženju odgovarajuće „)”neočekivan argument „%s” uvjetnom binarnom operatoruneočekivan argument „%s” za uvjetni unarni operatorneočekivan argument uvjetnom binarnom operatoruneočekivan argument za uvjetni unarni operatorneočekivan simbol %d u uvjetnoj naredbineočekivan simbol „%c” u uvjetnoj naredbineočekivan simbol „%s” u uvjetnoj naredbineočekivani simbol „%s”; očekivan je uvjetni binarni operatorneočekivan simbol „%s”; očekivana je „)”nepoznatonepoznata greška naredbeunset [-f] [-v] [-n] [IME...]until NAREDBE; do NAREDBE-2; donevrijednost baze je prevelikavar — imena i značenje nekih varijabla ljuskewait [-fn] [-p VAR] [ID...]wait [PID...]wait: PID %ld nije potomak ove ljuskewait_for: proces %ld nije nigdje registriranwait_for_job: posao %d je pauziranwaitchld(): WNOHANG je omogućen da se izbjegne blokiranje na neodređeno vrijemeupozorenje: upozorenje: opcija -C možda neće funkcionirati prema očekivanjuupozorenje: opcija -F možda neće funkcionirati prema očekivanjuwhile NAREDBE; do NAREDBE-2; donegreška pisanjadeskriptor datoteke xtrace (%d) !=  broj datoteke od pokazivača xtrace datoteke (%d)xtrace_set(): %d: nevaljani deskriptor datotekextrace_set(): pokazivač datoteke je NULL{ NAREDBE; }