summaryrefslogtreecommitdiffstats
path: root/zsh/zsh-lovers.1
blob: 7ae00f480feda732304ff641486e9cad498eea42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
.\"     Title: zsh-lovers
.\"    Author: 
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\"      Date: 03/12/2009
.\"    Manual: 
.\"    Source: 
.\"
.TH "ZSH\-LOVERS" "1" "03/12/2009" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
zsh-lovers \- tips, tricks and examples for the Z shell
.SH "SYNOPSIS"
Just read it\&. ;\-)
.sp
.SH "OVERVIEW"
Whenever we look at the zsh manual we wonder why there are no examples or those simply things in (shell) life\&. The zsh contains many features, but there was no manpage with some examples (like procmailex(5))\&. That\'s why we wrote this manpage\&.
.sp
Most of the tricks and oneliner come from the mailinglists zsh\-users, zsh\-workers, google, newsgroups and from ourself\&. See section \fBLINKS\fR for details\&.
.sp
Note: This manpage (zsh\-lovers(1)) is \fBnot\fR an offical part of the Z shell! It\'s just a just for fun \- manpage ;) For comments, bugreports and feedback take a quick look at the section \fBBUGS\fR\&.
.sp
.SH "SHELL-SCRIPTING"
This section provides some examples for often needed shellscript\-stuff\&. Notice that you should not use otherwise most examples won\'t work\&. Parse options in shellscripts\&. Example taken from ZWS by Adam Chodorowski (http://www\&.chodorowski\&.com/projects/zws/):
.sp
.sp
.RS 4
.nf
parse_options()
{
    o_port=(\-p 9999)
    o_root=(\-r WWW)
    o_log=(\-d ZWS\&.log)

    zparseopts \-K \-\- p:=o_port r:=o_root l:=o_log h=o_help
    if [[ $? != 0 || "$o_help" != "" ]]; then
        echo Usage: $(basename "$0") "[\-p PORT] [\-r DIRECTORY]"
        exit 1
    fi

    port=$o_port[2]
    root=$o_root[2]
    log=$o_log[2]

    if [[ $root[1] != \'/\' ]]; then root="$PWD/$root"; fi
}
# now use the function:
parse_options $*
.fi
.RE
.SH "EXAMPLES"
Available subsections are \fBAliases\fR, \fBCompletion\fR, \fBUnsorted/Misc examples\fR, \fB(Recursive) Globbing \- Examples\fR, \fBModifiers usage\fR, \fBRedirection\-Examples\fR, \fBZMV\-Examples\fR and \fBModule\-Examples\fR\&.
.sp
.SS "ALIASES"
Suffix aliases are supported in zsh since version 4\&.2\&.0\&. Some examples:
.sp
.sp
.RS 4
.nf
alias \-s tex=vim
alias \-s html=w3m
alias \-s org=w3m
.fi
.RE
Now pressing return\-key after entering \fIfoobar\&.tex\fR starts vim with foobar\&.tex\&. Calling a html\-file runs browser w3m\&. \fIwww\&.zsh\&.org\fR and pressing enter starts w3m with argument www\&.zsh\&.org\&. Global aliases can be used anywhere in the command line\&. Example:
.sp
.sp
.RS 4
.nf
$ alias \-g C=\'| wc \-l\'
$ grep alias ~/\&.zsh/* C
443
.fi
.RE
Some more or less useful global aliases (choose whether they are useful or not for you on your own):
.sp
.sp
.RS 4
.nf
alias \-g \&.\&.\&.=\'\&.\&./\&.\&.\'
alias \-g \&.\&.\&.\&.=\'\&.\&./\&.\&./\&.\&.\'
alias \-g \&.\&.\&.\&.\&.=\'\&.\&./\&.\&./\&.\&./\&.\&.\'
alias \-g CA="2>&1 | cat \-A"
alias \-g C=\'| wc \-l\'
alias \-g D="DISPLAY=:0\&.0"
alias \-g DN=/dev/null
alias \-g ED="export DISPLAY=:0\&.0"
alias \-g EG=\'|& egrep\'
alias \-g EH=\'|& head\'
alias \-g EL=\'|& less\'
alias \-g ELS=\'|& less \-S\'
alias \-g ETL=\'|& tail \-20\'
alias \-g ET=\'|& tail\'
alias \-g F=\' | fmt \-\'
alias \-g G=\'| egrep\'
alias \-g H=\'| head\'
alias \-g HL=\'|& head \-20\'
alias \-g Sk="*~(*\&.bz2|*\&.gz|*\&.tgz|*\&.zip|*\&.z)"
alias \-g LL="2>&1 | less"
alias \-g L="| less"
alias \-g LS=\'| less \-S\'
alias \-g MM=\'| most\'
alias \-g M=\'| more\'
alias \-g NE="2> /dev/null"
alias \-g NS=\'| sort \-n\'
alias \-g NUL="> /dev/null 2>&1"
alias \-g PIPE=\'|\'
alias \-g R=\' > /c/aaa/tee\&.txt \'
alias \-g RNS=\'| sort \-nr\'
alias \-g S=\'| sort\'
alias \-g TL=\'| tail \-20\'
alias \-g T=\'| tail\'
alias \-g US=\'| sort \-u\'
alias \-g VM=/var/log/messages
alias \-g X0G=\'| xargs \-0 egrep\'
alias \-g X0=\'| xargs \-0\'
alias \-g XG=\'| xargs egrep\'
alias \-g X=\'| xargs\'
.fi
.RE
.SS "COMPLETION"
See also man 1 zshcompctl zshcompsys zshcompwid\&. zshcompctl is the old style of zsh programmable completion, zshcompsys is the new completion system, zshcompwid are the zsh completion widgets\&.
.sp
Some functions, like _apt and _dpkg, are very slow\&. You can use a cache in order to proxy the list of results (like the list of available debian packages) Use a cache:
.sp
.sp
.RS 4
.nf
zstyle \':completion:*\' use\-cache on
zstyle \':completion:*\' cache\-path ~/\&.zsh/cache
.fi
.RE
Prevent CVS files/directories from being completed:
.sp
.sp
.RS 4
.nf
zstyle \':completion:*:(all\-|)files\' ignored\-patterns \'(|*/)CVS\'
zstyle \':completion:*:cd:*\' ignored\-patterns \'(*/)#CVS\'
.fi
.RE
Fuzzy matching of completions for when you mistype them:
.sp
.sp
.RS 4
.nf
zstyle \':completion:*\' completer _complete _match _approximate
zstyle \':completion:*:match:*\' original only
zstyle \':completion:*:approximate:*\' max\-errors 1 numeric
.fi
.RE
And if you want the number of errors allowed by _approximate to increase with the length of what you have typed so far:
.sp
.sp
.RS 4
.nf
zstyle \-e \':completion:*:approximate:*\' \e
        max\-errors \'reply=($((($#PREFIX+$#SUFFIX)/3))numeric)\'
.fi
.RE
Ignore completion functions for commands you don\'t have:
.sp
.sp
.RS 4
.nf
zstyle \':completion:*:functions\' ignored\-patterns \'_*\'
.fi
.RE
With helper functions like:
.sp
.sp
.RS 4
.nf
xdvi() { command xdvi ${*:\-*\&.dvi(om[1])} }
.fi
.RE
you can avoid having to complete at all in many cases, but if you do, you might want to fall into menu selection immediately and to have the words sorted by time:
.sp
.sp
.RS 4
.nf
zstyle \':completion:*:*:xdvi:*\' menu yes select
zstyle \':completion:*:*:xdvi:*\' file\-sort time
.fi
.RE
Completing process IDs with menu selection:
.sp
.sp
.RS 4
.nf
zstyle \':completion:*:*:kill:*\' menu yes select
zstyle \':completion:*:kill:*\'   force\-list always
.fi
.RE
If you end up using a directory as argument, this will remove the trailing slash (usefull in ln)
.sp
.sp
.RS 4
.nf
zstyle \':completion:*\' squeeze\-slashes true
.fi
.RE
cd will never select the parent directory (e\&.g\&.: cd \&.\&./<TAB>):
.sp
.sp
.RS 4
.nf
zstyle \':completion:*:cd:*\' ignore\-parents parent pwd
.fi
.RE
Another method for \fIquick change directories\fR\&. Add this to your ~/\&.zshrc, then just enter \(lqcd \&...\&./dir\(rq
.sp
.sp
.RS 4
.nf
rationalise\-dot() {
  if [[ $LBUFFER = *\&.\&. ]]; then
    LBUFFER+=/\&.\&.
  else
    LBUFFER+=\&.
  fi
}
zle \-N rationalise\-dot
bindkey \&. rationalise\-dot
.fi
.RE
.SS "UNSORTED/MISC examples"
Hint: A list of valid glob Qualifiers can be found in zshexpn(1)\&. See \(lqman 1 zshexpn | less \-p\(rq Qualifiers for details\&.
.sp
.sp
.RS 4
.nf
# Get the names of all files that *don\'t* match a pattern *anywhere* on the
# file (and without ``\-L\'\' because its GNUish)
  $ print \-rl \-\- *(\&.^e{\'grep \-q pattern $REPLY\'})
  # or
  $ : *(\&.e{\'grep \-q pattern $REPLY || print \-r \-\- $REPLY\'})

# random numbers
  $ echo $[${RANDOM}%1000]     # random between 0\-999
  $ echo $[${RANDOM}%11+10]    # random between 10\-20
  $ echo ${(l:3::0:)${RANDOM}} # N digits long (3 digits)

# reverse a word
  $ echo "${(j::)${(@Oa)${(s::):\-hello}}}"

# Show newest directory
  $ ls \-ld *(/om[1])

# random array element
  $ FILES=( \&.\&.\&./files/* )
  $ feh $FILES[$RANDOM%$#FILES+1]

# cat first line in all files in this dir
  $ for file (*(ND\-\&.)) IFS= read \-re < $file

# test if a parameter is numeric
  $ if [[ $1 == <\-> ]] ; then
         echo numeric
    else
         echo non\-numeric
    fi

# Show me all the \&.c files for which there doesn\'t exist a \&.o file\&.
  $ print *\&.c(e_\'[[ ! \-e $REPLY:r\&.o ]]\'_)

# All files in /var/ that are not owned by root
  $ ls \-ld /var/*(^u:root)

# All files for which the owner hat read and execute permissions
  $ echo *(f:u+rx:)

# The same, but also others dont have execute permissions
  $ echo *(f:u+rx,o\-x:)

# brace expansion \- example
  $ X=(A B C)
  $ Y=(+ \-)
  $ print \-r \-\- $^X\&.$^Y
  A\&.+ A\&.\- B\&.+ B\&.\- C\&.+ C\&.\-

# Fetch the newest file containing the string \'fgractg*\&.log\' in the
# filename and contains the string \'ORA\-\' in it
  $ file=(fgractg*\&.log(Nm0om[1]))
  $ (($#file)) && grep \-l ORA\- $file
  # without Zsh
  $ files=$( find \&. \-name \&. \-o \-prune \-name \'fgractg*>log\' \-mtime 0 \-print )
  > if [ \-n "$files" ]; then
  >    IFS=\'
  > \'
  > set \-f
  > file=$(ls \-td $files | head \-1)
  > grep \-l ORA\- "$file"
  > fi

# keep specified number of child processes running until entire task finished
  $ zsh \-c \'sleep 1 & sleep 3 & sleep 2& print \-rl \-\- $jobtexts\'

# Remove zero length and \&.bak files in a directory
  $ rm \-i *(\&.L0) *\&.bak(\&.)

# print out files that dont have extensions
  $ printf \'%s\en\' ^?*\&.*
  $ printf \'%s\en\' ^?*\&.[^\&.]*(D)
  $ ls \-d \-\- ^?*\&.*(D)

# Finding files which does not contain a specific string
  $ print \-rl file* | comm \-2 \-3 \- <(grep \-l string file*)\'
  $ for f (file*(N)) grep \-q string $f || print \-r $f\'

# Show/Check whether a option is set or not\&. It works both with $options as
# with $builtins
  $ echo $options[correct]
  off
  $ $options[zle]
  on

# Count the number of directories on the stack
  $ print $((${${(z)${(f)"$(dirs \-v)"}[\-1]}[1]} + 1)) # or
  $ dirs \-v | awk \'{n=$1}END{print n+1}\'

# Matching all files which do not have a dot in filename
  $ ls *~*\&.*(\&.)

# Show only the ip\-address from ``ifconfig device\'\'
  # ifconfig from net\-tools (Linux)
  $ print ${${$(LC_ALL=C /sbin/ifconfig eth0)[7]}:gs/addr://}
  # ifconfig from 4\&.2BSD {Free,Net,Open}BSD
  $ print ${$(/sbin/ifconfig tun0)[6]}

# Ping all the IP addresses in a couple of class C\'s or all hosts
# into /etc/hosts
  $ for i in {1\&.\&.254}; do ping \-c 1 192\&.168\&.13\&.$i; done
  or
  $ I=1
  $ while ( [[ $I \-le 255 ]] ) ; do ping \-1 2 150\&.150\&.150\&.$I; let I++; done
  or
  $ for i in $(sed \'s/#\&.*//\' > /etc/hosts | awk \'{print $2}\')
  : do
  :    echo "Trying $i \&.\&.\&. "
  :    ping \-c 1 $i ;
  :    echo \'=============================\'
  : done

# load all available modules at startup
  $ typeset \-U m
  $ m=()
  $ for md ($module_path) m=($m $md/**/*(*e:\'REPLY=${REPLY#$md/}\'::r))
  $ zmodload \-i $m

# Rename all files within a directory such that their names get a numeral
# prefix in the default sort order\&.
  $ i=1; for j in *; do mv $j $i\&.$j; ((i++)); done
  $ i=1; for f in *; do mv $f $(echo $i | \e
    awk \'{ printf("%03d", $0)}\')\&.$f; ((i++)); done
  $ integer i=0; for f in *; do mv $f $[i+=1]\&.$f; done

# Find (and print) all symbolic links without a target within the current
# dirtree\&.
  $ $ file **/*(D@) | fgrep broken
  $ for i in **/*(D@); [[ \-f $i || \-d $i ]] || echo $i
  $ echo **/*(@\-^\&./=%p)
  $ print \-l **/*(\-@)

# List all plain files that do not have extensions listed in `fignore\'
  $ ls **/*~*(${~${(j/|/)fignore}})(\&.)
  # see above, but now omit executables
  $ ls **/*~*(${~${(j/|/)fignore}})(\&.^*)

# Print out files that dont have extensions (require *setopt extendedglob*
# and *setopt dotglob*)
  $ printf \'%s\en\' ^?*\&.*

# List files in reverse order sorted by name
  $ print \-rl \-\- *(On)
  or
  $ print \-rl \-\- *(^on)

# Synonymic to ``ps ax | awk \'{print $1}\'\'\'
  $ print \-l /proc/*/cwd(:h:t:s/self//)

# Get the PID of a process (without ``ps\'\', ``sed\'\', ``pgrep\'\', \&.\&.
# (under Linux)
  $ pid2 () {
  >   local i
  >   for i in /proc/<\->/stat
  > do
  >   [[ "$(< $i)" = *\e((${(j:|:)~@})\e)* ]] && echo $i:h:t
  > done
  > }

# for X in \'n\' \'o\' \'p\' \'q\' \'r\' \'s\' \'t\' \'u\' \'v\' \'w\' \'x\' \'y\'; do \&.\&.\&.
  $ for (( i = 36#n; i <= 36#y; i++ )); do
  >   print ${$(([##36]i)):l}
  > done
# or in combination with ``dc\'\'
  $ print {$((##n))\&.\&.$((##y))}P\e 10P | dc
# or with ``eval\'\'
  $ eval print \'${$(([##36]\'{$((36#n))\&.\&.$((36#y))}\')):l}\'

# foreach in one line of shell
  $ for f (*) print \-r \-\- $f

# copy a directory recursively without data/files
  $ dirs=(**/*(/))
  $ cd \-\- $dest_root
  $ mkdir \-p \-\- $dirs
# or without zsh
  $ find \&. \-type d \-exec env d="$dest_root" \e
    sh \-c \' exec mkdir \-p \-\- "$d/$1"\' \'{}\' \'{}\' \e;

# If `foo=23\'\', then print with 10 digit with leading \'0\'\&.
  $ foo=23
  $ print ${(r:10::0:)foo}

# find the name of all the files in their home directory that have
# more than 20 characters in their file names
  print \-rl $HOME/${(l:20::?:)~:\-}*

# Save arrays
  $ print \-r \-\- ${(qq)m} > $nameoffile      # save it
  $ eval "m=($(cat \-\- $nameoffile)"            # or use
  $ m=("${(@Q)${(z)"$(cat \-\- $nameoffile)"}}") # to restore it

# get a "ls \-l" on all the files in the tree that are younger than a
# specified age (e\&.g "ls \-l" all the files in the tree that where
# modified in the last 2 days)
  $ ls \-tld **/*(m\-2)
# This will give you a listing 1 file perl line (not à la ls \-R)\&.
# Think of an easy way to have a "ls \-R" style output with
# only files newer than 2 day old\&.
  $ for d (\&. \&./**/*(/)) {
  >   print \-r \-\- $\'\en\'${d}:
  >   cd $d && {
  >       l=(*(Nm\-2))
  >       (($#l)) && ls \-ltd \-\- $l
  >       cd ~\-
  >   }
  > }
# If you also want directories to be included even if their mtime
# is more than 2 days old:
  $ for d (\&. \&./**/*(/)) {
  >   print \-r \-\- $\'\en\'${d}:
  >   cd $d && {
  >      l=(*(N/,m\-2))
  >      (($#l)) && ls \-ltd \-\- $l
  >      cd ~\-
  >   }
  > }
# And if you want only the directories with mtime < 2 days to be listed:
  $ for d (\&. \&./**/*(N/m\-2)) {
  >   print \-r \-\- $\'\en\'${d}:
  >   cd $d && {
  >      l=(*(Nm\-2))
  >      (($#l)) && ls \-ltd \-\- $l
  >      cd ~\-
  >   }
  > }

# print 42 ``\-\'\'
  $ echo ${(l:42::\-:)}
# or use ``$COLUMS\'\'
  $ echo ${(l:$COLUMNS::\-:)}
# and now with colors (require autoload colors ;colors)
  $ echo "$bg[red]$fg[black]${(l:42::\-:)}"

# Redirect STDERR to a command like xless without redirecting STDOUT as well\&.
  $ foo 2>>(xless)
# but this executes the command asynchronously\&. To do it synchronously:
  $ { { foo 1>&3 } 2>&1 | xless } 3>&1

# Rename all MP3\-Files from name with spaces\&.mp3 to Name With Spaces\&.mp3
  $ for i in *\&.mp3; do
  >     mv $i ${${(C)i}:s/Mp3/mp3/}
  > done

# Match file names containing only digits and ending with \&.xml (require
# *setopt kshglob*)
  $ ls \-l [0\-9]##\&.xml
  $ ls \-l <0\->\&.xml

# Remove all "non txt" files
  $ rm \&./^*\&.txt

# Move 200 files from a directory into another
  $ mv \-\- *([1,200]) /another/Dir

# Convert images (foo\&.gif => foo\&.png):
  $ for i in **/*\&.gif; convert $i $i:r\&.png

# convert a collection of mp3 files to wave or cdr,
# e\&.g\&. file\&.wav \-> file\&.mp3)
  $ for i (\&./*\&.mp3){mpg321 \-\-w \- $i > ${i:r}\&.wav}

# Download with LaTeX2HTML  created Files (for example the ZSH\-Guide):
  $ for f in http://zsh\&.sunsite\&.dk/Guide/zshguide{,{01\&.\&.08}}\&.html; do
  >     lynx \-source $f >${f:t}
  > done

# Move all files in dir1 and dir2 that have line counts greater than 10 to
# another directory say "/more10"
  $ mv dir[12]/**/*\&.cr(\-\&.e{\'((`wc \-l < $REPLY` > 10))\'}) /more10

# Make with dpkg a master\-list of everyfile that it has installed
  $ diff <(find / | sort) <(cat /var/lib/dpkg/info/*\&.list | sort)

# Replace this fucking Escape\-Sequences:
  $ autoload colors ; colors
  $ print "$bg[cyan]$fg[blue]You are a idiot" >> /dev/pts/3

# Get ASCII value of a character
  $ char=N ; print $((#char))

# Filename "Erweiterung"
# Note: The (N) says to use the nullglob option for this particular
# glob pattern\&.
  $ for i in *\&.o(N); do
  >     rm $i
  > done

# Rename files; i\&. e\&. FOO to foo and bar to BAR
  $ for i in *(\&.); mv $i ${i:l} # `FOO\' to `foo\'
  $ for i in *(\&.); mv $i ${i:u} # `bar to `BAR\'

# Show all suid\-files in $PATH
  $ ls \-latg ${(s\&.:\&.)PATH} | grep \'^\&.\&.\&.s\'
# or more complex ;)
  $ print \-l ${^path}/*(Ns,S)
# or show only executables with a user given pattern
  $ print \-l ${^path}/*vim*(*N)

# gzip files when containing a certain string
  $ gzip ${(ps:\e0:)"$(grep \-lZ foobar \&./*\&.txt(\&.))"}

# A small  one\-liner, that reads from stdin and prints to stdout the first
# unique line i\&. e\&. does not print lines that have been printed before
# (this is similar to the unique command, but unique can only handle
# adjacent lines)\&.
  $ IFS=$\'\en\en\'; print \-rl \-\- ${(Oau)${(Oa)$(cat file;echo \&.)[1,\-2]}}

# Lists every executable in PATH
  $ print \-l ${^path}/*(\-*N)

# Match all \&.c files in all subdirectories, _except_ any SCCS subdirectories?
  $ ls **/*\&.c~(*/)#SCCS/*

# List all `README\' \- files case\-insensitive with max\&. one typo
  $ ls **/*(#ia2)readme

# case insensitive checking for variables
  $ if [[ $OSTYPE == (#i)LINUX*(#I) ]]; then
  >    echo "Penguin on board\&."
  > else
  >    echo "Not a Linux\&."
  > fi
.fi
.RE
.SS "(Recursive) Globbing \- Examples"
A list of valid glob Qualifiers can be found in zshexpn(1)\&. \fBNote:\fR **/ is equivalent to (*/)#! For example:
.sp
.sp
.RS 4
.nf
$ print (*/)#zsh_us\&.ps
zsh\-4\&.2\&.3/Doc/zsh_us\&.ps
$ print **/zsh_us\&.ps
zsh\-4\&.2\&.3/Doc/zsh_us\&.ps
.fi
.RE
.sp
.RS 4
.nf
# Search for `README\' in all Subdirectories
  $ ls \-l **/README

# find directories that contain both "index\&.php" and "index\&.html", or in
# general, directories that contain more than one file matching "index\&.*"
  $ ls **/*(D/e:\'[[ \-e $REPLY/index\&.php && \-e $REPLY/index\&.html ]]\':)
  # or
  $ ls **/*(D/e:\'l=($REPLY/index\&.*(N)); (( $#l >= 2 ))\':)

# Find command to search for directory name instead of basename
  $ print \-rl /**/*~^*/path(|/*)
  # or \- without Zsh
  $ find / | grep \-e /path/ \-e \'/path$\'

# Print he path of the directories holding the ten biggest C regular files
# in the current directory and subdirectories\&.
  $ print \-rl \-\- **/*\&.c(D\&.OL[1,10]:h) | sort \-u

# Find files with size == 0 and send a mail
  $ files=(**/*(ND\&.L0m+0m\-2))
  > (( $#files > 0 )) && print \-rl \-\- $files | \e
    mailx \-s "empty files" foo@bar\&.tdl

# recursive chmod
  $ chmod 700 **/(\&.) # Only files
  $ chmod 700 **/(/) # Only directories

# print out all of the files in that directory in 2 columns
  $ print \-rC2 \-\- ${1:[\&.\&.\&.]}/*(D:t)
#            ^\- number ob columns
# or \- if you feel concerned about special characters \- use
  $ list=(${1:[\&.\&.\&.]}/*(ND:t))
  $ (($#list)) && print \-rC2 \-\- ${(V)list}

# Search all files in /home/*/*\-mail/ with a setting ``chmod \-s\'\' flag
# (recursive, include  dotfiles) remove the setgid/setuid flag and print
# a message
  $ chmod \-s /home/*/*\-mail(DNs,S) /home/*/*\-mail/**/*(DNs,S))
# or with a small script
  $ for file (/home/*/*\-mail(DNs,S) /home/*/*\-mail/**/*(DNs,S)) {
  >    print \-r \-\- $file
  >    chmod \-s $file && print \-r fixed $file
  > }
# or use ``zargs\'\' (require autoload zargs) prevent the arg list too
# long error
  $ zargs /home/*/*\-mail(DNs,S) /home/*/*\-mail/**/*(DNs,S)) \-\- chmod \-s

# List files beginning at `foo23\' upwards (foo23, foo24, foo25, \&.\&.)
  $ ls \-l foo<23\->

# get all files that begin with the date strings from June 4 through
# June 9 of 2004
  $ ls \-l 200406{04\&.\&.10}*(N)
# or if they are of the form 200406XX (require ``setopt extended_glob\'\'
  $ ls \-l 200306<4\-10>\&.*

# remove spaces from filenames
  $ for a in \&./**/*\e *(Dod); do mv $a ${a:h}/${a:t:gs/ /_}; done

# Show only all *\&.c and *\&.h \- Files
  $ ls \-l *\&.(c|h)

# Show only all *\&.c \- files and ignore `foo\&.c\'
  $ ls *\&.c~foo\&.c

# show data to *really* binary format
  $ zsh \-ec \'while {} {printf %\&.8x $n;repeat 8 \e
  > {read \-ku0 a printf \e %\&.8d $(([##2]#a))};print;((n+=8))}\' < binary

# Show only world\-readable files
  $ ls \-l *(R)

# List files in the current directory are not writable by the owner
  $ print \-l ~/*(ND\&.^w)

# find and delete the files which are older than a given parameter
# (seconds/minutes/hours)
  # deletes all regular file in /Dir that are older than 3 hours
   $ rm \-f /Dir/**/*(\&.mh+3)
  # deletes all symlinks in /Dir that are older than 3 minutes
   $ rm \-f /Dir/**/*(@mm+3)
  # deletes all non dirs in /Dir that are older than 30 seconds
   $ rm \-f /Dir/**/*(ms+30^/)
  # deletes all folders, sub\-folders and files older than one hour
   $ rm \&./**/*(\&.Dmh+1,\&.DL0)
  # deletes all files more than 6 hours old
   $ rm \-f **/*(mh+6)
  # removes all files but the ten newer ones (delete all but last 10
  # files in a directory)
   $ rm \&./*(Om[1,\-11])
 Note: If you get a arg list too long, you use the builtin rm\&. For
       example:
   $ zmodload zsh/files ; rm \-f **/*(mh+6)
  or use the zargs function:
   $ autoload zargs ; zargs **/*(mh+6) \-\- rm \-f

# A User\'s Guide to the Z\-Shell /5\&.9: Filename Generation and Pattern
# Matching find all files in all subdirectories, searching recursively,
# which have a given name, case insensitive, are at least 50 KB large,
# no more than a week old and owned by the root user, and allowing up
# to a single error in the spelling of the name\&. In fact, the required
# expression looks like this:
  $ ls **/(#ia1)name(LK+50mw\-1u0)

# Change the UID from 102 to 666
  $ chown 666 **/*(u102)

# List all files which have not been updated since last 10 hours
  $ print \-rl \-\- *(Dmh+10^/)

# delete only the oldest file in a directory
  $ rm \&./*filename*(Om[1])

# Sort the output from `ls \-l\' by file size
  $ ls \-fld *(OL)

# find most recent file in a directory
  $ setopt dotglob ; print directory/**/*(om[1])

# Show only empty files which nor `group\' or `world writable\'
  $ ls *(L0f\&.go\-w\&.)

# Find \- and list \- the ten newest files in directories and subdirs\&.
# (recursive)
  $ print \-rl \-\- **/*(Dom[1,10])

# Print only 5 lines by "ls" command (like ``ls \-laS | head \-n 5\'\')\&.
  $ ls \-fl *(DOL[1,5])

# Display the 5\-10 last modified files\&.
  $ print \-rl \-\- /path/to/dir/**/*(D\&.om[5,10])

# Find all files without a valid owner\&.
  $ chmod someuser /**/*(D^u:${(j\&.:u:\&.)${(f)"$(</etc/passwd)"}%%:*}:)

# Find all the empty directories in a tree\&.
  $ for f in ***/*(/l2); do foo=($f/*(N)); [[ \-z $foo ]] && print $f; done
# Note:Since Zsh 4\&.2\&.1 the glob qualifier F indicates a non\-empty directory\&.
# Hence *(F) indicates all subdirectories with entries, *(/^F) means all
# subdirectories with no entries\&.
  $ ls \-ld *(/^F)

# Remove empty directories afterwards\&.
  $ rmdir \&./**/*(/od) 2> /dev/null

# Show only files which are owned by group `users\'\&.
  $ ls \-l *(G[users])
.fi
.RE
.SS "Modifiers usage"
Modifiers are a powerful mechanism that let you modify the results returned by parameter, filename and history expansion\&. See zshexpn(1) for details\&.
.sp
.sp
.RS 4
.nf
# NOTE: Zsh 4\&.3\&.4 needed!
  $ autoload \-U age
# files modified today
  $ print *(e:age today now:)
# files modified since 5 pm
  $ print *(e\-age 17:00 now\-)
# \&.\&.\&. since 5 o\'clock yesterda
  $ print *(e\-age yesterday,17:00 now\-)
# \&.\&.\&. from last Christmas before today
  $ print *(e\-age 2006/12/25 today\-)
# \&.\&.\&. before yesterday
  $ print *(e\-age 1970/01/01 yesterday\-)
# all files modified between the start of those dates
  $ print *(e:age 2006/10/04 2006/10/09:)
# all files modified on that date
  $ print *(e:age 2006/10/04:)
# Supply times\&.
  $ print *(e\-age 2006/10/04:10:15 2006/10/04:10:45\-)

# Remove a trailing pathname component, leaving the head\&. This works like
# `dirname\'\&.
  $ echo =ls(:h)
  /bin

# Remove all leading pathname components, leaving the tail\&. This works
# like `basename\'\&.
  $ echo =ls(:t)
  ls

# Remove the suffix from each file (*\&.sh in this example)
   $f:e is $f file extension
   :h \-\-> head (dirname)
   :t \-\-> tail (basename)
   :r \-\-> rest (extension removed)
  $ for f (*\&.sh) mv $f $f:r

# Remove a filename extension of the form `\&.xxx\', leaving the root name\&.
  $ echo $PWD
  /usr/src/linux
  $ echo $PWD:t
  linux

# Remove all but the extension\&.
  $ foo=23\&.42
  $ echo $foo
  23\&.42
  $ echo $foo:e
  42

# Print the new command but do not execute it\&. Only works with history
# expansion\&.
  $ echo =ls(:h)
  /bin
  $ !echo:p
  $ echo =ls(:h)

# Quote the substituted words, escaping further substitutions\&.
  $ bar="23\'42"
  $ echo $bar
  23\'42
  $ echo $bar:q
  23\e\'42

# Convert the words to all lowercase\&.
  $ bar=FOOBAR
  $ echo $bar
  FOOBAR
  $ echo $bar:l
  foobar

# Convert the words to all uppercase\&.
  $ bar=foobar
  $ echo $bar
  foobar
  $ echo $bar:u
  FOOBAR

# convert 1st char of a word to uppercase
  $ foo="one two three four"
  $ print \-r \-\- "${(C)foo}"
  One Two Three Four
.fi
.RE
.SS "Redirection\-Examples"
See zshmisc(1) for more informations (or less ${^fpath}/zmv(N))
.sp
.sp
.RS 4
.nf
# Append `exit 1\' at the end of all *\&.sh \- files
  $ echo "exit 1" >> *\&.sh

# adding files to foobar\&.tar\&.gz
  $ eval set =(gunzip < foobar\&.tar\&.gz) \'
     tar rf $1 additional\&.txt &&gzip < $1 > foobar\&.tar\&.gz\'

# Redirect output to a file AND display on screen
  $ foobar >&1 > file1 > file2 > \&.\&.

# pipe single output to multiple inputs
  $ zcat foobar\&.Z >> (gzip \-9 > file1\&.gz) \e
      >> (bzip2 \-9 > file1\&.bz2) \e
      >> (acb \-\-best > file1\&.acb)

# Append /etc/services at the end of file `foo\' and `bar\'
  $ cat /etc/services >> foo >> bar

# Pipe STDERR
  $ echo An error >&2 2>&1 | sed \-e \'s/A/I/\'

# send standard output of one process to standard input of several processes
# in the pipeline
  $ setopt multios
  $ process1 > >(process1) > >(process2)

# initializing a variable and simultaneously keeping terminal output
  $ setopt multios
  $ { a=$(command >&1 >& 3 3 > &\- 2>&1);} 3>&1

# redirect stderr two times
  $ setopt multios ; program 2> file2 > file1 2>&1

# Duplicating stdout and stderr to a logfile
  $ exec 3>&1 > logfile 2>&2 2>&1 >&3 3>&\-

# redirect stderr (only) to a file and to orig\&. stderr:
  $ command 2>&2 2>stderr
# redirect stderr and stdout to separate files and both to orig\&. stdout:
  $ command 2>&1 1>&1 2>stderr 1>stdout
# redirect stderr and stdout to separate files and stdout to orig\&. stdout
# AND stderr to orig\&. stderr:
  $ command 2>&2 1>&1 2>stderr 1>stdout

# More fun with STDERR ;)
  $ \&./my\-script\&.sh 2> >(grep \-v moron >error\&.log)|process\-output >output\&.log
  $  echo "Thats STDOUT" >>(sed \'s/stdout/another example/\' > foobar)
.fi
.RE
.SS "ZMV\-Examples (require autoload zmv)"
\fBNote:\fR \fI\-n\fR means no execution (just print what would happen)\&. At
.sp
.sp
.RS 4
.nf
# Remove illegal characters in a fat32 file system\&. Illegal characters are
#   / :  ;  *  ?  "  <  >  |
# NOTE: ``\-Q\'\' and (D) is to include hidden files\&.
  $ unwanted=\'[:;*?\e"<>|]\'
  $ zmv \-Q "(**/)(*$~unwanted*)(D)" \'$1${2//$~unwanted/}\'

# Changing part of a filename (i\&. e\&. "file\-hell\&.name" \-> "file\-heaven\&.name")
  $ zmv \'(*)hell(*)\' \'${1}heaven${2}\'
  # or
  $ zmv \'*\' \'$f:s/hell/heaven/\'

# remove round bracket within filenames
# i\&. e\&. foo\-(bar)\&.avi \-> foo\-bar\&.avi
  $ zmv \'*\' \'${f//[()]/}\'

# serially all files (foo\&.foo > 1\&.foo, fnord\&.foo > 2\&.foo, \&.\&.)
  $ autoload zmv
  $ ls *
  1\&.c  asd\&.foo  bla\&.foo  fnord\&.foo  foo\&.fnord  foo\&.foo
  $ c=1 zmv \'*\&.foo\' \'$((c++))\&.foo\'
  $ ls *
  1\&.c  1\&.foo  2\&.foo  3\&.foo  4\&.foo  foo\&.fnord

# Rename "file\&.with\&.many\&.dots\&.txt" by substituting dots (exept for the last
# one!) with a space
  $ touch {1\&.\&.20}\-file\&.with\&.many\&.dots\&.txt
  $ zmv \'(*\&.*)(\&.*)\' \'${1//\&./ }$2\'

# Remove the first 4 chars from a filename
  $ zmv \-n \'*\' \'$f[5,\-1]\' # NOTE: The "5" is NOT a mistake in writing!

# Rename names of all files under the current Dir to lower case, but keep
# dirnames as\-is\&.
  $ zmv \-Qv \'(**/)(*)(\&.D)\' \'$1${(L)2}\'

# replace all 4th character, which is "1",  with "2" and so on
  $ autoload \-U zmv
  $ zmv \'(???)1(???[1\-4]\&.txt)\' \'${1}2${2}\'

# Remove the first 15 characters from a string
  $ touch 111111111111111{a\-z}
  $ autoload zmv
  $ zmv \'*\' \'$f[16,\-1]\'

# Replace spaces (any number of them) with a single dash in file names
  $ autload zmv
  $ zmv \-n \'(**/)(* *)\' \'$1${2//( #\-## #| ##)/\-}\'
  # or \- with Bash
  $ find \&. \-depth \-name \'* *\' \-exec bash \-c \'
  > shopt \-s extglob
  > file=$1
  > dir=${file%/*}
  > name=${file##*/}
  > newname=${name//*([ \-]) *([ \-])/\-}
  > mv \-i \-\- "$file" "$Dir/$newname"\' {} {} \e;

# Clean up file names and remove special characters
  $ autoload zmv
  $ zmv \-n \'(**/)(*)\' \'$1${2//[^A\-Za\-z0\-9\&._]/_}\'

# Add *\&.py to a bunch of python scripts in a directory (some of them end
# in *\&.py and give them all a proper extension
  $ autoload zmv
  $ zmv \-n \'(**/)(con*)(#qe,file $REPLY | grep "python script",)\' \'$1$2\&.py\'

# lowercase all extensions (i\&. e\&. *\&.JPG) incl\&. subfolders
  $ autoload zmv
  $ zmv \'(**/)(*)\&.(#i)jpg\' \'$1$2\&.jpg\'
  # Or \- without Zsh
  $ find Dir \-name \'*\&.[jJ][pP][gG]\' \-print | while read f
  > do
  >      case $f in
  >       *\&.jpg) ;
  >       *) mv "$f" "${f%\&.*}\&.jpg" ;
  >       esac
  > done

# remove leading zeros from file extension
  $ autoload zmv
  $ ls
  filename\&.001  filename\&.003  filename\&.005  filename\&.007  filename\&.009
  filename\&.002  filename\&.004  filename\&.006  filename\&.008  filename\&.010
  $ zmv \'(filename\&.)0##(?*)\' \'$1$2\'
  $ ls
  filename\&.1  filename\&.10  filename\&.2  filename\&.3  filename\&.4  filename\&.5 \&.\&.

# renumber files\&.
  $ autoload zmv
  $ ls *
  foo_10\&.jpg  foo_2\&.jpg  foo_3\&.jpg  foo_4\&.jpg  foo_5\&.jpg  foo_6\&.jpg \&.\&.
  $ zmv \-fQ \'foo_(<0\->)\&.jpg(\&.nOn)\' \'foo_$(($1 + 1))\&.jpg\'
  $ ls *
  foo_10\&.jpg  foo_11\&.jpg  foo_3\&.jpg  foo_4\&.jpg  foo_5\&.jpg  \&.\&.\&.

# adding leading zeros to a filename (1\&.jpg \-> 001\&.jpg, \&.\&.
  $ autoload zmv
  $ zmv \'(<1\->)\&.jpg\' \'${(l:3::0:)1}\&.jpg\'

# See above, but now only files with a filename >= 30 chars
  $ autoload zmv
  $ c=1 zmv "${(l:30\-4::?:)}*\&.foo" \'$((c++))\&.foo\'

# Replace spaces in filenames with a underline
  $ autoload zmv
  $ zmv \'* *\' \'$f:gs/ /_\'

# Change the suffix from *\&.sh to *\&.pl
  $ autoload zmv
  $ zmv \-W \'*\&.sh\' \'*\&.pl\'

# Add a ""\&.txt" extension to all the files within ${HOME}
  # ``\-\&.\'\' is to only rename regular files or symlinks to regular files,
  # ``D\'\' is to also rename hidden files (dotfiles))
  $ autoload zmv
  $ zmv \-Q \'/home/**/*(D\-\&.)\' \'$f\&.txt\'
  # Or to only rename files that don\'t have an extension:
  $ zmv \-Q \'/home/**/^?*\&.*(D\-\&.)\' \'$f\&.txt\'

# Recursively change filenames with characters ? [ ] / = + < > ; : " , \- *
  $ autoload zmv
  $ chars=\'[][?=+<>;",*\-]\'
  $ zmv \'(**/)(*)\' \'$1${2//$~chars/%}\'

# Removing single quote from filenames (recursively)
  $ autoload zmv
  $ zmv \-Q "(**/)(*\'*)(D)" "\e$1\e${2//\'/}"

# When a new file arrives (named file\&.txt) rename all files in order to
# get (e\&. g\&. file119\&.txt becomes file120\&.txt, file118\&.txt becomes
# file119\&.txt and so on ending with file\&.txt becoming file1\&.txt
  $ autoload zmv
  $ zmv \-fQ \'file([0\-9]##)\&.txt(On)\' \'file$(($1 + 1))\&.txt\'

# lowercase/uppercase all files/directories
  $ autoload zmv
  $ zmv \'(*)\' \'${(L)1}\' # lowercase
  $ zmv \'(*)\' \'${(U)1}\' # uppercase

# Remove the suffix *\&.c from all C\-Files
  $ autoload zmv
  $ zmv \'(*)\&.c\' \'$1\'

# Uppercase only the first letter of all *\&.mp3 \- files
  $ autoload zmv
  $ zmv \'([a\-z])(*)\&.mp3\' \'${(C)1}$2\&.mp3\'

# Copy the target `README\' in same directory as each `Makefile\'
  $ autoload zmv
  $ zmv \-C \'(**/)Makefile\' \'${1}README\'

# Removing single quote from filenames (recursively)
  $ autoload zmv
  $ zmv \-Q "(**/)(*\'*)(D)" "\e$1\e${2//\'/}"

# Rename pic1\&.jpg, pic2\&.jpg, \&.\&. to pic0001\&.jpg, pic0002\&.jpg, \&.\&.
  $ autoload zmv
  $ zmv \'pic(*)\&.jpg\' \'pic${(l:4::0:)1}\&.jpg\'
  $ zmv \'(**/)pic(*)\&.jpg\' \'$1/pic${(l:4::0:)2}\&.jpg\' # recursively
.fi
.RE
.SS "Module\-Examples"
Please read zshmodules(1) first!
.sp
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/pcre (require zmodload zsh/pcre)
.RS
.sp
.RS 4
.nf
# Copy files of a certain period (date indicated in the filenames)
  $ zmodload zsh/pcre
  $ ls \-d \-\- *(e:\'[[ $REPLY \-pcre\-match pcre\-regexp ]]\':)
  # or
  $ m() { [[ $1 \-pcre\-match pcre\-regexp ]] }
  $ ls \-d \-\- *(+m)
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/clone (require zmodload zsh/clone)
.RS
.sp
.RS 4
.nf
# Creates a forked instance of the current shell ($! is set to zero) and
# execute ``command\'\' on /dev/tty8 (for this example)\&.
  $ zmodload zsh/clone
  $ clone /dev/tty8 && (($! == 0)) && exec command
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/datetime (require zmodload zsh/datetime)
.RS
.sp
.RS 4
.nf
  $ zmodload zsh/datetime
  $ alias datereplacement=\'strftime "%Y\-%m\-%d" $EPOCHSECONDS\'
  $ export DATE=`datereplacement`
  $ echo $DATE

#  strip date from filename
  $ $ zmodload zsh/datetime
  $ setopt extendedglob
  $ touch aaa_bbb_20041212_c\&.dat eee_fff_20051019_g\&.dat
  $ strftime \-s pattern \e
    \'???_???_<0\-%Y%m%d>_?\&.dat\' $((EPOCHSECONDS \- 365 * 24 * 60 * 60 / 2))
  $ print \-rl \-\- $~pattern
  aaa_bbb_20041212_c\&.dat
  $ print \-rl \-\- $pattern
  ???_???_<0\-20050815>_?\&.dat

# Search files size == 0, to be based on the file name containing a date
# rather than the "last modified" date of the file
  $ zmodload \-i zsh/datetime
  $ strftime \-s file "abc_de_%m%d%Y\&.dat" $((EPOCHSECONDS \- 24 * 60 * 60 ))
  $ files=(**/$file(N\&.L0))
  $ (( $#files > 0 )) && print \-rl \-\- $files | \e
    mailx \-s "empty files"  foo@bar\&.tdl
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/stat (require zmodload zsh/stat)
.RS
.sp
.RS 4
.nf
# test if a symbolic link links to a certain file
  $ zmodload \-i zsh/stat
  $ ! stat \-LH s foo\&.ln || [[ $s[link] != "foo\&.exe" ]] || ln \-sf foo\&.exe foo\&.ln

# comparing file dates
  $ zmodload zsh/stat
  $ file1=foo
  $ file2=bar
  $ touch bar & sleep 5 & touch foo
  $ echo $file1 is $(($(stat +mtime $file2) \- \e
    $(stat +mtime $file1))) seconds older than $file2\&.
  bar is 5 seconds older than foo

# list the files of a disk smaller than some other file
  $ zmodload zsh/stat
  $ stat \-A max +size some\-other\-file
  $ print \-rl \&./**/*(D\&.L\-$max)

# List the top 100 biggest files in a disk
  $ zmodload zsh/stat
  $ ls \-fld \&./**/*(d`stat +device \&.`OL[1,100])

# Get only the user name and the file names from (like
# ls \-l * | awk \'{print $3" " $8}\')
  $ zmodload zsh/stat
  $ for file; do
  >   stat \-sA user +uid \-\- "$file" &&
  >     print \-r \-\- "$user" "$file"
  > done

# get the difference between actual bytes of file and allocated bytes of file
  $ zmodload zsh/stat
  $ print $(($(stat +block \-\- file) * 512 \- $(stat +size \-\- file)))

# Find largest file
# ``D\'\'  : to include dot files (d lowercase is for device)
# ``O\'\'  : reverse Ordered (o lowercase for non\-reverse order)
# ``L\'\'  : by file Length (l is for number of links)
# ``[1]\'\': return only first one
  $ zmodload zsh/stat
  $ stat +size \&./*(DOL[1])

# file size in bytes
  $ zmodload zsh/stat
  $ stat \-L +size ~/\&.zshrc
  4707

# Delete files in a directory that hasn\'t been accessed in the last ten days
# and send ONE mail to the owner of the files informing him/her of the files\'
# deletion\&.
  $ zmodload zsh/stat zsh/files
  $ typeset \-A f; f=()
  $ rm \-f /path/**/*(\&.a+10e{\'stat \-sA u +uidr $REPLY; f[$u]="$f[$u]$REPLY"\'})
  $ for user (${(k)f}) {print \-rn $f[$user]|mailx \-s "\&.\&.\&." $user}

# Get a "ls \-l" on all the files in the tree that are younger than a
# specified age
  $ zmodload zsh/stat
  $ for d (\&. \&./**/*(N/m\-2))
  >   print \-r \-\- $\'\en\'$d: && cd $d && {
  >      for f (*(Nm\-2om))
  >   stat \-F \'%b %d %H:%M\' \-LsAs \-\- $f &&
  >   print \-r \-\- $s[3] ${(l:4:)s[4]} ${(l:8:)s[5]} \e
  >   ${(l:8:)s[6]} ${(l:8:)s[8]} $s[10] $f ${s[14]:+\-> $s[14]}
  >   cd ~\-
  > }

# get file creation date
  $ zmodload zsh/stat
  $ stat \-F \'%d %m %Y\' +mtime ~/\&.zshrc
  30 06 2004
  $ stat \-F \'%D\' +mtime ~/\&.zshrc
  06/30/04
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/files (require zmodload zsh/files)
.RS
.sp
.RS 4
.nf
# search a directory for files containing a certain string then copy those
# files to another directory\&.
  $ zmodload zsh/files
  $ IFS=$\'\e0\'
  $ cp $(grep \-lZr foobar \&.) otherdirectory
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/mapfile (require zmodload zsh/mapfile)
.RS
.sp
.RS 4
.nf
# grepping for two patterns
  $ zmodload zsh/mapfile
  $ pattern1="foo"
  $ pattern2="bar foo"
  $ print \-l \&./**/*(DN\&.e{\'z=$mapfile[$REPLY] && [[ $z = *$pattern1* && \e
    $z = *$pattern2* ]]\'})
# or a solution in combination with zsh/pcre
  $ zmodload \-i zsh/mapfile zsh/pcre
  $ pattern1="foo"
  $ pattern2="bar foo"
  $ pcre_compile "(?s)(?=\&.*?$pattern1)\&.*?$pattern2"
  $ pcre_study
  $ print \-l \&./**/*(DN\&.e{\'pcre_match $mapfile[$REPLY]\'})

# equivalent for ``less /etc/passwd | grep \-v root\'\'
  $ zmodload zsh/mapfile
  $ IFS=$\'\en\en\'
  $ print \-rl \-\- ${${=mapfile[/etc/passwd]}:#*root*}
# or \- for case insensitive
  $ setopt extendedglob
  $ print \-rl \-\- ${${=mapfile[/etc/passwd]}:#*(#i)root*}

# If a XML\-file contains stuff like ``<TAGA/>\'\' and ``<TAGB/>\'\', number
# this empty tags (ones ending in \'/>\') so if encountered in the same
# order, the preceeding tags would become ``<TAGA/>1</TAGA>\'\' and
# ``<TAGB/>2</TAGB>\'\'
  $ zmodload zsh/mapfile
  $ cnt=0
  $ apfile[data\&.xml\&.new]=${(S)mapfile[data\&.xml]//\e
  > (#im)<TAGA>*<\e/TAGA>/<TAGA>$((++cnt))<\e/TAGA>}

# removing all files in users Maildir/new that contain ``filename="gone\&.src\'\'
  $ zmodload zsh/{files,mapfile}
  $ rm \-f /u1/??/*/Maildir/new/100*(\&.e{\'[[ $mapfile[$REPLY] == \e
    *filename=\e"gone\&.scr\e"* ]]\'})

# Grep out the Title from a postscript file and append that value to the
# end of the filename
  $ autoload \-U zmv
  $ zmodload zsh/mapfile
  $ zmv \'(*)\&.ps\' \'$1\-${${${mapfile[$f]##*%%Title: }%% *}//[^a\-zA\-Z0\-9_]/}\&.ps\'
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/mathfunc (require zmodload zsh/mathfunc)
.RS
.sp
.RS 4
.nf
$ zmodload zsh/mathfunc
$ echo $(( sin(1/4\&.0)**2 + cos(1/4\&.0)**2 \- 1 ))
  \-1\&.1102230246251565e\-16
$ echo $(( pi = 4\&.0 * atan(1\&.0) ))
  3\&.1415926535897931
$ echo $(( f = sin(0\&.3) ))
  0\&.29552020666133955
$ print $((1e12 * rand48()))
  847909677310\&.23413
$ print $(( rand48(seed) ))
  0\&.01043488334700271
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/termcap (require zmodload zsh/termcap)
.RS
.sp
.RS 4
.nf
 $ zmodload \-ab zsh/termcap echotc
 $ GREEN=`echotc AF 2`
 $ YELLOW=`echotc AF 3`
 $ RED=`echotc AF 1`
 $ BRIGHTRED=`echotc md ; echotc AF 1`
 $ print \-l ${GREEN}green ${YELLOW}yellow ${RED}red ${BRIGHTRED}brightred
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/zpty (require zmodload zsh/zpty)
.RS
.sp
.RS 4
.nf
  $ zmodload zsh/zpty
  $ zpty PW passwd $1
  $ zpty PW passwd $1
# ``\-r\'\': read the output of the command name\&.
# ``z\'\' : Parameter
  $ zpty \-r PW z \'*password:\'
# send the to command name the given strings as input
  $ zpty \-w PW $2
  $ zpty \-r PW z \'*password:\'
  $ zpty \-w PW $2
# The second form, with the \-d option, is used to delete commands
# previously started, by supplying a list of their names\&. If no names
# are given, all commands are deleted\&. Deleting a command causes the HUP
# signal to be sent to the corresponding process\&.
  $ zpty \-d PW
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/net/socket (require zmodload zsh/net/socket)
.RS
.sp
.RS 4
.nf
# ``\-l\'\': open a socket listening on filename
# ``\-d\'\': argument will be taken as the target file descriptor for the
#         connection
# ``3\'\' : file descriptor\&. See ``A User\'s Guide to the Z\-Shell\'\'
#         (3\&.7\&.2: File descriptors)
  $ zmodload zsh/net/socket
  $ zsocket \-l \-d 3
# ``\-a\'\': accept an incoming connection to the socket
  $ zsocket \-a \-d 4 3
  $ zsocket \-a \-d 5 3 # accept a connection
  $ echo foobar >&4
  $ echo barfoo >&5
  $ 4>&\- 5>&\- 3>&
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/zftp (require zmodload zsh/zftp)
.RS
.sp
.RS 4
.nf
 $ autoload \-U zfinit
 $ zfinit
 $ zfparams www\&.example\&.invalid myuserid mypassword
 $ zfopen
 $ zfcd tips
 $ zfls \-l zshtips\&.html
 $ zfput zshtips\&.html
 $ zfls \-l zshtips\&.html

# Automatically transfer files using FTP with error checking
  $ autoload \-U zfinit ; zfinit
  $ zftp open host\&.name\&.invalid user passwd || exit
  $ zftp get /remote/file > /local/file; r=$?
  $ zftp close && exit r

# compress and ftp on the fly
  $ autoload \-U zfinit ; zfinit
  $ zftp open host\&.name\&.invalid user password
  $ zftp get $file | bzip2 > ${file}\&.bz2
  $ zftp close

# Recursice ``get\'\'
  $ autoload \-U zfinit ; zfinit
  $ zfanon cr\&.yp\&.to
  $ zfcd daemontools
  $ for file in `zfls` ; do
  >     zfget $file
  $ done
  $ zfclose

# Upload all regular files in $HOME/foobar (recursive) that are newer than
# two hours to ftp\&.foobar\&.invalid/path/to/upload
  $ autoload \-U zfinit ; zfinit
  $ zfopen ftp\&.foobar\&.invalid/path/to/upload
  $ cd $HOME/foobar
  $ zfput \-r **/*(\&.mh\-2)
  $ zfclose

# long list of files on a ftp
  $ autoload \-U zfinit ; zfinit
  $ zfopen some\-host
  $ zfcd /some/remote/Dir
  $ cd /some/local/Dir
# If the list\&.txt is located on the remote host, change to
# zfget ${(f)"$(zftp get /path/to/remote/list\&.txt)"}
  $ zfget ${(f)"$(cat list\&.txt)"}
  $ zfclose
.fi
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
zsh/zselect (require zmodload zsh/zselect)
.RS
.sp
.RS 4
.nf
# It\'s similar to
 ,\-\-\-\-
 | $ sg=$(stty \-g)
 | $ stty \-icanon min 0 time 50
 | $ read yesno
 | $ stty "$sg"
 | $ case "$yesno" in
 | >  yes) command1;;
 | >  *) command2;;
 | > esac
 `\-\-\-\-
$ zmodload zsh/zselect
$ if zselect \-t 500 \-r 0 && read yesno && [ yes = "$yesno" ]; then
>    command1
> else
>    command1
> fi
.fi
.RE
.RE
.SH "OPTIONS"
.SS "Navigation options"
\fBauto_cd\fR (allow one to change to a directory by entering it as a command)\&. \fBauto_pushd\fR (automatically append dirs to the push/pop list) pushd_ignore_dups (and don\'t duplicate them)\&.
.sp
.SS "Misc"
\fBno_hup\fR (don\'t send HUP signal to background jobs when exiting ZSH)\&. \fBprint_exit_value\fR (show a message with the exit code when a command returns with a non\-zero exit code)
.sp
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
History options
.RS
\fBhist_verify\fR (let the user edit the command line after history expansion (e\&.g\&. !ls) instead of immediately running it) Use the same history file for all sessions : \fBsetopt SHARE_HISTORY\fR
.sp
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
Privacy / Security
.RS
\fBno_clobber\fR (or set \-C; prevent \fI>\fR redirection from truncating the given file if it already exists)
.sp
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
Spelling correction
.RS
\fBcorrect\fR (automatically correct the spelling of commands)\&. \fBcorrect_all\fR (automatically correct the spelling of each word on the command line) \fBdvorak\fR (dvorak layout)
.sp
.RE
.SH "UNSORTED/MISC"
Mailpath: simple multiple mailpath:
.sp
.sp
.RS 4
.nf
mailpath=($HOME/Mail/mbox\'?new mail in mbox\'
          $HOME/Mail/tux\&.u\-strasbg\'?new mail in tux\'
          $HOME/Mail/lilo\'?new mail in lilo\'
          $HOME/Mail/ldap\-fr\'?new mail in ldap\-fr\')
.fi
.RE
Mailpath: dynamic mailpath:
.sp
.sp
.RS 4
.nf
typeset \-a mailpath
for i in ~/Mail/Lists/*(\&.); do
   mailpath[$#mailpath+1]="${i}?You have new mail in ${i:t}\&."
done
.fi
.RE
Avoid globbing on special commands:
.sp
.sp
.RS 4
.nf
for com in alias expr find mattrib mcopy mdir mdel which;
alias $com="noglob $com"
.fi
.RE
For migrating your bashprompt to zsh use the script bash2zshprompt located in the zsh source distribution under \fIMisc\fR\&.
.sp
For migration from (t)csh to zsh use the c2z tool that converts csh aliases and environment and shell variables to zsh\&. It does this by running csh, and having csh report on aliases and variables\&. The script then converts these to zsh startup files\&. It has some issues and usage information that are documented at the top of this script\&.
.sp
Here are functions to set the title and hardstatus of an \fBXTerm\fR or of \fBGNU Screen\fR to \fIzsh\fR and the current directory, respectively, when the prompt is displayed, and to the command name and rest of the command line, respectively, when a command is executed:
.sp
.sp
.RS 4
.nf
function title {
      if [[ $TERM == "screen" ]]; then
        # Use these two for GNU Screen:
        print \-nR $\' 33k\'$1$\' 33\'\e
        print \-nR $\' 33]0;\'$2$\'\'
      elif [[ $TERM == "xterm" || $TERM == "rxvt" ]]; then
        # Use this one instead for XTerms:
        print \-nR $\' 33]0;\'$*$\'\'
      fi
}
function precmd { title zsh "$PWD" }
function preexec {
    emulate \-L zsh
    local \-a cmd; cmd=(${(z)1})
    title $cmd[1]:t "$cmd[2,\-1]"
}
.fi
.RE
Put the following line into your ~/\&.screenrc to see this fancy hardstatus:
.sp
.sp
.RS 4
.nf
caption always "%3n %t%? (%u)%?%?: %h%?"
.fi
.RE
Special variables which are assigned:
.sp
.sp
.RS 4
.nf
$LINENO $RANDOM $SECONDS $COLUMNS $HISTCHARS $UID
$EUID $GID $EGID $USERNAME $fignore $mailpath $cdpath
.fi
.RE
.SH "LINKS"
.PP
Primary site
.RS 4

\fBhttp://www\&.zsh\&.org/\fR
.RE
.PP
Project\-page
.RS 4

\fBhttp://sourceforge\&.net/projects/zsh/\fR
.RE
.PP
Z shell page at sunsite\&.dk
.RS 4

\fBhttp://zsh\&.sunsite\&.dk/\fR
.RE
.PP
From Bash to Z Shell: Conquering the Command Line \- the book
.RS 4

\fBhttp://www\&.bash2zsh\&.com/\fR
.RE
.PP
"Zsh \- die magische Shell" (german book about Zsh) by Sven Guckes and Julius Plenz
.RS 4

\fBhttp://zshbuch\&.org/\fR
.RE
.PP
Mailinglistarchive
.RS 4

\fBhttp://www\&.zsh\&.org/mla/\fR
.RE
.PP
ZSH\-FAQ
.RS 4

\fBhttp://zsh\&.dotsrc\&.org/FAQ/\fR
.RE
.PP
Userguide
.RS 4

\fBhttp://zsh\&.sunsite\&.dk/Guide/\fR
.RE
.PP
ZSH\-Wiki
.RS 4

\fBhttp://zshwiki\&.org/home/\fR
.RE
.PP
A short introduction from BYU
.RS 4

\fBhttp://docs\&.cs\&.byu\&.edu/linux/advanced/zsh\&.html\fR
.RE
.PP
Mouse\-Support ;)
.RS 4

\fBhttp://stchaz\&.free\&.fr/mouse\&.zsh\fR
.RE
.PP
Curtains up: introducing the Z shell
.RS 4

\fBhttp://www\-128\&.ibm\&.com/developerworks/linux/library/l\-z\&.html?dwzone=linux\fR
.RE
.PP
ZSH\-Liebhaberseite (german)
.RS 4

\fBhttp://michael\-prokop\&.at/computer/tools_zsh_liebhaber\&.html\fR
.RE
.PP
ZSH\-Seite von Michael Prokop (german)
.RS 4

\fBhttp://michael\-prokop\&.at/computer/tools_zsh\&.html\fR
.RE
.PP
ZSH Prompt introduction
.RS 4

\fBhttp://aperiodic\&.net/phil/prompt/\fR
.RE
.PP
Adam\'s ZSH page
.RS 4

\fBhttp://www\&.adamspiers\&.org/computing/zsh/\fR
.RE
.PP
Zzappers Best of ZSH Tips
.RS 4

\fBhttp://www\&.rayninfo\&.co\&.uk/tips/zshtips\&.html\fR
.RE
.PP
Zsh Webpage by Christian Schneider
.RS 4

\fBhttp://www\&.strcat\&.de/zsh/\fR
.RE
.PP
The zsh\-lovers webpage
.RS 4

\fBhttp://grml\&.org/zsh/\fR
.RE
.PP
IRC channel
.RS 4

\fB#zsh at irc\&.freenode\&.org\fR
.RE
.PP
The Z shell reference\-card (included in the zsh\-lovers debian\-package)
.RS 4

\fBhttp://www\&.bash2zsh\&.com/zsh_refcard/refcard\&.pdf\fR
.RE
.SH "AUTHORS"
This manpage was written by Michael Prokop, Christian \fIstrcat\fR Schneider and Matthias Kopfermann\&. But many ideas have been taken from zsh\-geeks e\&.g\&. from the zsh\-mailinglists (zsh\-users and zsh\-workers), google, newsgroups and the zsh\-Wiki\&. Thanks for your cool and incredible tips\&. We learned much from you!
.sp
In alphabetic order:
.sp
.sp
.RS 4
.nf
Andrew \'zefram\' Main  \- http://www\&.fysh\&.org/~zefram/
Barton E\&. Schaefer    \- http://www\&.well\&.com/user/barts/
Matthias Kopfermann   \- http://www\&.infodrom\&.north\&.de/~matthi/
Oliver Kiddle         \- http://people\&.freenet\&.de/opk/
Paul Falstad          \- http://www\&.falstad\&.com/
Peter Stephenson      \- http://homepage\&.ntlworld\&.com/p\&.w\&.stephenson/
Richard Coleman
Stephane Chazelas     \- http://stephane\&.chazelas\&.free\&.fr/
Sven Guckes           \- http://www\&.guckes\&.net/
Sven Wischnowsky      \- http://w9y\&.de/zsh/zshrc
.fi
.RE
.SH "SEE ALSO"
Manpages of zsh:
.sp
.sp
.RS 4
.nf
       zsh          Zsh overview
       zshall       Tthe Z shell meta\-man page
       zshbuiltins  Zsh built\-in commands
       zshcalsys    zsh calendar system
       zshcompctl   zsh programmable completion
       zshcompsys   Zsh completion system
       zshcompwid   Zsh completion widgets
       zshcontrib   User contributions to zsh
       zshexpn      Zsh expansion and substitution
       zshmisc      Anything not fitting into the other sections
       zshmodules   Zsh loadable modules
       zshoptions   Zsh options
       zshparam     Zsh parameters
       zshroadmap   Informal introduction to the zsh manual
       zshtcpsys    Zsh tcp system
       zshzle       Zsh command line editing
       zshzftpsys   Zsh built\-in FTP client
       zshall       Meta\-man page containing all of the above
.fi
.RE
Note: especially \fIman zshcontrib\fR covers very useful topics! Book: \fBFrom Bash to Z Shell\fR by Oliver Kiddle, Jerry Peck and Peter Stephenson\&. \fBISBN: 1590593766\fR\&. \- \fBbash2zsh\&.com\fR Also take a look at the section \fBLINKS\fR in this manpage\&.
.sp
.SH "BUGS"
Probably\&. This manpage might be never complete\&. So please report bugs, feedback and suggestions to <zsh\-lovers@michael\-prokop\&.at>\&. Thank you!
.sp
.SH "COPYRIGHT"
Copyright (C) Michael Prokop, Christian Schneider and Matthias Kopfermann\&.
.sp
.SH "NOTES"
.IP " 1." 4
zsh-lovers@michael-prokop.at
.RS 4
\%mailto:zsh-lovers@michael-prokop.at
.RE