grmlzshrc.t2t: Some more functions.
[grml-etc-core.git] / doc / grmlzshrc.t2t
1 GRMLZSHRC
2
3 June, 2010
4
5 %!target: man
6 %!postproc(man): "^(\.TH.*) 1 "  "\1 5 "
7
8
9 = NAME =
10 grmlzshrc - grml's zsh setup
11
12
13 = SYNOPSIS =
14 //zsh// [**options**]...
15
16
17 = DESCRIPTION =
18 The grml project provides a fairly exhaustive interactive setup (referred to
19 as //grmlzshrc// throughout this document) for the amazing unix shell zsh
20 (http://zsh.sourceforge.net). This is the reference manual for that
21 setup.
22
23 To use //grmlzshrc//, you need at least version 3.1.7 of zsh (although not all
24 features are enabled in every version).
25
26 //grmlzshrc// behaves differently depending on which user loads it. For the
27 root user (**EUID** == 0) only a subset of features is loaded by default. This
28 behaviour can be altered by setting the **GRML_ALWAYS_LOAD_ALL** STARTUP
29 VARIABLE (see below). Also the umask(1) for the root user is set to 022,
30 while for regular users it is set to 002. So read/write permissions
31 for the regular user and her group are set for new files (keep that
32 in mind on systems, where regular users share a common group).
33
34 = STARTUP VARIABLES =
35 Some of the behaviour of //grmlzshrc// can be altered by setting certain shell
36 variables. These may be set temporarily when starting zsh like this:
37 \
38 ``` % BATTERY=1 zsh
39
40 Or by setting them permanently in **zshrc.pre** (See AUXILIARY FILES below).
41
42 : **BATTERY**
43 If set to a value greater than zero and //acpi// installed, //grmlzshrc// will
44 put the battery status into the right hand side interactive prompt.
45
46 : **COMMAND_NOT_FOUND**
47 A non zero value activates a handler, which is called when a command can not
48 be found. The handler is defined by GRML_ZSH_CNF_HANDLER (see below).
49
50 : **GRML_ALWAYS_LOAD_ALL**
51 Enables the whole grml setup for root, if set to a non zero value.
52
53 : **GRML_ZSH_CNF_HANDLER**
54 This variable contains the handler to be used by COMMAND_NOT_FOUND (see above)
55 and defaults to "/usr/share/command-not-found/command-not-found".
56
57 : **GRMLSMALL_SPECIFIC**
58 Set this to zero to remove items in zsh config, which do not work in
59 grml-small.
60
61 : **HISTFILE**
62 Where zsh saves the history. Default: ${HOME}/.zsh_history.
63
64 : **HISTSIZE**
65 Number of commands to be kept in the history. On a grml-CD this defaults to
66 500, on a hard disk installation to 5000.
67
68 : **MAILCHECK**
69 Sets the frequency in seconds for zsh to check for new mail. Defaults to 30.
70 A value of zero turns off checking.
71
72 : **NOCOR**
73 Non zero values deactivate automatic correction of commands.
74
75 : **NOMENU**
76 If set to zero (default), allows selection from a menu, if there are at least
77 five possible options of completion.
78
79 : **NOPRECMD**
80 A non zero value disables precmd and preexec commands. These are functions
81 that are run before every command (setting xterm/screen titles etc.).
82
83 : **REPORTTIME**
84 Show time (user, system and cpu) used by external commands, if they run longer
85 than the defined number of seconds (default: 5).
86
87 : **SAVEHIST**
88 Number of commands to be stored in ${HISTFILE}. Defaults to 1000 on a grml-CD
89 and to 10000 on an installation on hard disk.
90
91 : **watch**
92 As in tcsh(1) an array of login/logout events to be reported by the shell
93 builtin "log". For details see zshparam(1). Defaults to (notme root).
94
95 : **ZSH_NO_DEFAULT_LOCALE**
96 Import "/etc/default/locale", if set to zero (default).
97
98 : **ZSH_PROFILE_RC**
99 A non zero value causes shell functions to be profiled. The results can be
100 obtained with the zprof builtin command (see zshmodules(1) for details).
101
102
103 = FEATURE DESCRIPTION =
104 This is an in depth description of non-standard features implemented by
105 //grmlzshrc//.
106
107 == DIRSTACK HANDLING ==
108 The dirstack in //grmlzshrc// has a persistent nature. It is stored into a
109 file each time zsh's working directory is changed. That file can be configured
110 via the **DIRSTACKFILE** variable and it defaults to **~/.zdirs**. The
111 **DIRSTACKSIZE** variable defaults to **20** in this setup.
112
113 The **DIRSTACKFILE** is loaded each time zsh starts, therefore freshly started
114 zshs inherit the dirstack of the zsh that most recently updated
115 **DIRSTACKFILE**.
116
117 == DIRECTORY BASED PROFILES ==
118 If you want certain settings to be active in certain directories (and
119 automatically switch back and forth between them), this is what you want.
120 \
121 ```
122 zstyle ':chpwd:profiles:/usr/src/grml(|/|/*)'   profile grml
123 zstyle ':chpwd:profiles:/usr/src/debian(|/|/*)' profile debian
124 ```
125
126 When that's done and you enter a directory that matches the pattern
127 in the third part of the context, a function called chpwd_profile_grml,
128 for example, is called (if it exists).
129
130 If no pattern matches (read: no profile is detected) the profile is
131 set to 'default', which means chpwd_profile_default is attempted to
132 be called.
133
134 A word about the context (the ':chpwd:profiles:*' stuff in the zstyle
135 command) which is used: The third part in the context is matched against
136 **$PWD**. That's why using a pattern such as /foo/bar(|/|/*) makes sense.
137 Because that way the profile is detected for all these values of **$PWD**:
138 \
139 ```
140 /foo/bar
141 /foo/bar/
142 /foo/bar/baz
143 ```
144
145 So, if you want to make double damn sure a profile works in /foo/bar
146 and everywhere deeper in that tree, just use (|/|/*) and be happy.
147
148 The name of the detected profile will be available in a variable called
149 'profile' in your functions. You don't need to do anything, it'll just
150 be there.
151
152 Then there is the parameter **$CHPWD_PROFILE** which is set to the profile,
153 that was active up to now. That way you can avoid running code for a
154 profile that is already active, by running code such as the following
155 at the start of your function:
156 \
157 ```
158 function chpwd_profile_grml() {
159     [[ ${profile} == ${CHPWD_PROFILE} ]] && return 1
160     ...
161 }
162 ```
163
164 The initial value for **$CHPWD_PROFILE** is 'default'.
165
166 === Signaling availabily/profile changes ===
167
168 If you use this feature and need to know whether it is active in your
169 current shell, there are several ways to do that. Here are two simple
170 ways:
171
172 a) If knowing if the profiles feature is active when zsh starts is
173    good enough for you, you can put the following snippet into your
174    //.zshrc.local//:
175 \
176 ```
177 (( ${+functions[chpwd_profiles]} )) &&
178     print "directory profiles active"
179 ```
180
181 b) If that is not good enough, and you would prefer to be notified
182    whenever a profile changes, you can solve that by making sure you
183    start **every** profile function you create like this:
184 \
185 ```
186 function chpwd_profile_myprofilename() {
187     [[ ${profile} == ${CHPWD_PROFILE} ]] && return 1
188     print "chpwd(): Switching to profile: $profile"
189   ...
190 }
191 ```
192
193 That makes sure you only get notified if a profile is **changed**,
194 not everytime you change directory.
195
196 === Version requirement ===
197 This feature requires zsh //4.3.3// or newer.
198
199
200 == ACCEPTLINE WRAPPER ==
201 The //accept-line// wiget is the one that is taking action when the **return**
202 key is hit. //grmlzshrc// uses a wrapper around that widget, which adds new
203 functionality.
204
205 This wrapper is configured via styles. That means, you issue commands, that look
206 like:
207 \
208 ```
209 zstyle 'context' style value
210 ```
211
212 The context namespace, that we are using is 'acceptline'. That means, the actual
213 context for your commands look like: **':acceptline:<subcontext>'**.
214
215 Where **<subcontext>** is one of: **default**, **normal**, **force**, **misc**
216 or **empty**.
217
218
219 === Recognized Contexts ===
220 : **default**
221 This is the value, the context is initialized with.
222 The //compwarnfmt and //rehash// styles are looked up in this context.
223
224 : **normal**
225 If the first word in the command line is either a command, alias, function,
226 builtin or reserved word, you are in this context.
227
228 : **force**
229 This is the context, that is used if you hit enter again, after being warned
230 about the existence of a _completion for the non-existing command you
231 entered.
232
233 : **empty**
234 This is the context, you are in if the command line is empty or only
235 consists of whitespace.
236
237 : **misc**
238 This context is in effect, if you entered something that does not match any
239 of the above. (e.g.: variable assignments).
240
241
242 === Available Styles ===
243 : **nocompwarn**
244 If you set this style to true, the warning about non existent commands,
245 for which completions exist will not be issued. (Default: **false**)
246
247 : **compwarnfmt**
248 The message, that is displayed to warn about the _completion issue.
249 (default: **'%c will not execute and completion %f exists.'**)
250 '%c' is replaced by the command name, '%f' by the completion's name.
251
252 : **rehash**
253 If this is set, we'll force rehashing, if appropriate. (Defaults to
254 **true** in //grmlzshrc//).
255
256 : **actions**
257 This can be a list of wigdets to call in a given context. If you need a
258 specific order for these to be called, name them accordingly. The default value
259 is an **empty list**.
260
261 : **default_action**
262 The name of a widget, that is called after the widgets from 'actions'.
263 By default, this will be '.accept-line' (which is the built-in accept-line
264 widget).
265
266 : **call_default**
267 If true in the current context, call the widget in the 'default_action'
268 style. (The default is **true** in all contexts.)
269
270
271 == PROMPT ==
272
273
274 == GNU/SCREEN STATUS SETTING ==
275 //grmlzshrc// sets screen's hardstatus lines to the currently running command
276 or **'zsh'** if the shell is idling at its prompt. If the current working
277 directory is inside a repository unter version control, screen status is set
278 to: **'zsh: <repository name>'** via zsh's vcs_info.
279
280
281 == PERSISTENT HISTORY ==
282 If you got commands you consider important enough to be included in every
283 shell's history, you can put them into ~/.important_commands and they will be
284 available via the usual history lookup widgets.
285
286
287 = REFERENCE =
288 == ENVIRONMENT VARIABLES ==
289 //grmlzshrc// sets some environment variables, which influence the
290 behaviour of applications.
291
292 : **BROWSER**
293 If X is running this is set to "firefox", otherwise to "w3m".
294
295 : **COLORTERM**
296 Set to "yes". Some applications read this to learn about properties
297 of the terminal they are running in.
298
299 : **EDITOR**
300 If not already set, sets the default editor. Falls back to vi(1),
301 if vim(1) is not available.
302
303 : **LESS_TERMCAP_***
304 Some environment variables that add colour support to less(1) for viewing
305 man pages. See termcap(5) for details.
306
307 : **MAIL**
308 The mailbox file for the current user is set to /var/mail/$USER, if not
309 already set otherwise.
310
311 : **PAGER**
312 Set less(1) as default pager, if not already set to something different.
313
314 : **QTDIR**
315 Holds the path to shared files for the C++ application framework QT
316 (version 3 or 4).
317
318 : **SHELL**
319 Set explicitly to /bin/zsh, to prevent certain terminal emulators to
320 default to /bin/sh or /bin/bash.
321
322
323 == OPTIONS ==
324 Apart from zsh's default options, //grmlzshrc// sets some options
325 that change the behaviour of zsh. Options that change Z-shell's default
326 settings are marked by <grml>. But note, that zsh's defaults vary depending
327 on its emulation mode (csh, ksh, sh, or zsh). For details, see zshoptions(1).
328
329 : **append_history**
330 Zsh sessions, that use //grmlzshrc//, will append their history list to the
331 history file, rather than replace it. Thus, multiple parallel zsh sessions
332 will all have the new entries from their history lists added to the history
333 file, in the order that they exit. The file will still be periodically
334 re-written to trim it when the number of lines grows 20% beyond the value
335 specified by $SAVEHIST.
336
337 : **auto_cd** <grml>
338 If a command is issued that can't be executed as a normal command, and the
339 command is the name of a directory, perform the cd command to that directory.
340
341 : **auto_pushd** <grml>
342 Make cd push the old directory onto the directory stack.
343
344 : **completeinword** <grml>
345 If the cursor is inside a word, completion is done from both ends;
346 instead of moving the cursor to the end of the word first and starting
347 from there.
348
349 : **extended_glob** <grml>
350 Treat the '#', '~' and '^' characters as active globbing pattern characters.
351
352 : **extended_history** <grml>
353 Save each command's beginning timestamp (in seconds since the epoch) and the
354 duration (in seconds) to the history file.
355
356 : **hash_list_all**
357 Whenever a command completion is attempted, make sure the entire command
358 path is hashed first. This makes the first completion slower.
359
360 : **histignorealldups** <grml>
361 If a new command line being added to the history list duplicates an
362 older one, the older command is removed from the list, even if it is
363 not the previous event.
364
365 : **histignorespace** <grml>
366 Remove command lines from the history list when the first character on
367 the line is a space, or when one of the expanded aliases contains a
368 leading space. Note that the command lingers in the internal history
369 until the next command is entered before it vanishes.
370
371 : **longlistjobs** <grml>
372 List jobs in long format by default.
373
374 : **nobeep** <grml>
375 Avoid to beep on errors in zsh command line editing (zle).
376
377 : **noglobdots**
378 A wildcard character never matches a leading '.'.
379
380 : **nohup** <grml>
381 Do not send the hangup signal (HUP:1) to running jobs when the shell exits.
382
383 : **nonomatch** <grml>
384 If a pattern for filename generation has no matches, do not print an error
385 and leave it unchanged in the argument list. This also applies to file
386 expansion of an initial `~' or `='.
387
388 : **notify**
389 Report the status of background jobs immediately, rather than waiting until
390 just before printing a prompt.
391
392 : **pushd_ignore_dups** <grml>
393 Don't push multiple copies of the same directory onto the directory stack.
394
395 : **share_history** <grml>
396 As each line is added to the history file, it is checked to see if anything
397 else was written out by another shell, and if so it is included in the
398 history of the current shell too. Using !-style history, the commands from
399 the other sessions will not appear in the history list unless you explicitly
400 type the "history" command. This option is activated for zsh versions >= 4,
401 only.
402
403
404 == KEYBINDINGS ==
405 Apart from zsh's default key bindings, //grmlzshrc// comes with its own set of
406 key bindings. Note that bindings like **ESC-e** can also be typed as **ALT-e**
407 on PC keyboards.
408
409 : **ESC-e**
410 Edit the current command buffer in your favourite editor.
411
412 : **ESC-v**
413 Deletes a word left of the cursor; seeing '/' as additional word separator.
414
415 : **CTRL-x-1**
416 Jump right after the first word.
417
418 : **CTRL-x-p**
419 Searches the last occurence of string before the cursor in the command history.
420
421 : **CTRL-z**
422 Brings a job, which got suspended with CTRL-z back to foreground.
423
424
425 == SHELL FUNCTIONS ==
426 //grmlzshrc// comes with a wide array of defined shell functions to ease the
427 user's life.
428
429 : **2html()**
430 Converts plaintext files to HTML using vim. The output is written to
431 <filename>.html.
432
433 : **855resolution()**
434 If 915resolution is available, issues a warning to the user to run it instead
435 to modify the resolution on intel graphics chipsets.
436
437 : **accessed()**
438 Lists files in current directory, which have been accessed within the
439 last N days. N is an integer to be passed as first and only argument.
440 If no argument is specified N is set to 1.
441
442 : **agoogle()**
443 Searches for USENET postings from authors using google groups.
444
445 : **allulimit()**
446 Sets all ulimit values to "unlimited".
447
448 : **ansi-colors()**
449 Prints a colored table of available ansi color codes (to be used in escape
450 sequences) and the colors they represent.
451
452 : **any()**
453 Lists processes matching given pattern.
454
455 : **aoeu(), asdf(), uiae()**
456 Pressing the 'asdf' keys toggles between dvorak or neon and us keyboard
457 layout.
458
459 : **apache2-ssl-certificate()**
460 Advices the user how to create self signed certificates.
461
462 : **asc()**
463 Login on the host provided as argument using autossh. Then reattach a GNU screen
464 session if a detached session is around or detach a currently attached screen or
465 else start a new screen.  This is especially useful for roadwarriors using GNU
466 screen and ssh.
467
468 : **audioburn()**
469 Burns the files in ~/ripps (see audiorip() below) to an audio CD.
470 Then prompts the user if she wants to remove that directory. You might need
471 to tell audioburn which cdrom device to use like:
472 "DEVICE=/dev/cdrom audioburn"
473
474 : **audiorip()**
475 Creates directory ~/ripps, if it does not exist. Then rips audio CD into
476 it. Then prompts the user if she wants to burn a audio CD with audioburn()
477 (see above). You might need to tell audiorip which cdrom device to use like:
478 "DEVICE=/dev/cdrom audioburn"
479
480 : **bk()**
481 Simple backup of a file or directory using cp(1). The target file name is the
482 original name plus a time stamp attached. Symlinks and file attributes like mode,
483 ownership and timestamps are preserved.
484
485 : **brltty()**
486 The brltty(1) program provides a braille display, so a blind person can access
487 the console screen. This wrapper function works around problems with some
488 environments (f. e. utf8).
489
490 : **cdrecord()**
491 If the original cdrecord is not installed, issues a warning to the user to
492 use the wodim binary instead. Wodim is the debian fork of Joerg Schillings
493 cdrecord.
494
495 : **changed()**
496 Lists files in current directory, which have been changed within the
497 last N days. N is an integer to be passed as first and only argument.
498 If no argument is specified N is set to 1.
499
500 : **check_com()**
501 Returns true if given command exists either as program, function, alias,
502 builtin or reserved word. If the option -c is given, only returns true,
503 if command is a program.
504
505 : **checkhome()**
506 Changes directory to $HOME on first invocation of zsh. This is neccessary on
507 grml systems with autologin.
508
509 : **cl()**
510 Changes current directory to the one supplied by argument and lists the files
511 in it, including file names starting with ".".
512
513 : **d()**
514 Presents a numbered listing of the directory stack. Then changes current
515 working directory to the one chosen by the user.
516
517 : **dchange()**
518 Shows the changelog of given package in $PAGER.
519
520 : **debbug()**
521 Searches the Debian bug tracking system (bugs.debian.org) for Bug numbers,
522 email addresses of submitters or any string given on the command line.
523
524 : **debbugm()**
525 Shows bug report for debian given by number in mailbox format.
526
527 : **debian2hd()**
528 Tells the user to use grml-debootstrap, if she wants to install debian to
529 harddisk.
530
531 : **deswap()**
532 A trick from $LINUX-KERNELSOURCE/Documentation/power/swsusp.txt. It brings
533 back interactive responsiveness after suspend, when the system is swapping
534 heavily.
535
536 : **dirspace()**
537 Shows the disk usage of the directories given in human readable format;
538 defaults to $path.
539
540 : **disassemble()**
541 Translates C source code to assembly and ouputs both.
542
543 : **dmoz()**
544 Searches for the first argument (optional) in the Open Directory Project
545 (See http://www.dmoz.org/docs/en/about.html).
546
547 : **dnews()**
548 Shows the NEWS file for the given package in $PAGER.
549
550 : **doc()**
551 Takes packagename as argument. Sets current working directory to
552 /usr/share/doc/<packagename> and prints out a directory listing.
553
554 : **dwicti()**
555 Looks up the first argument (optional) in the german Wiktionary
556 which is an online dictionary (See: http://de.wiktionary.org/).
557
558 : **edalias()**
559 Edit given alias.
560
561 : **edfunc()**
562 Edit given shell function.
563
564 : **ewicti()**
565 Looks up the first argument (optional in the english Wiktionary
566 which is an online dictionary (See: http://en.wiktionary.org/).
567
568 : **exirename()**
569 Renames image files based on date/time informations in their exif headers.
570
571 : **fir()**
572 Opens given URL with Firefox (Iceweasel on Debian). If there is already an
573 instance of firefox running, attaches to the first window found and opens the
574 URL in a new tab (this even works across an ssh session).
575
576 : **fluxkey-change()**
577 Switches the key combinations for changing current workspace under fluxbox(1)
578 from Alt-[0-9] to Alt-F[0-9] and vice versa by rewriting $HOME/.fluxbox/keys.
579 Requires the window manager to reread configuration to take effect.
580
581 : **freload()**
582 Reloads an autoloadable shell function (See autoload in zshbuiltins(1)).
583
584 : **genthumbs()**
585 A simple thumbnails generator. Resizes images (i. e. files that end in ".jpg",
586 ".jpeg", ".gif" or ".png") to 100x200. Output files are named "thumb-<original
587 filename>". Creates an index.html with title "Images" showing the
588 thumbnails as clickable links to the respective original file.
589 //Warning:// On start genthumbs() silently removes a possibly existing "index.html"
590 and all files and/or directories beginning with "thumb-" in current directory!
591
592 : **get_tw_cli()**
593 Fetches 3ware RAID controller software using get_3ware(1).
594
595 : **ggogle()**
596 Searches the arguments on Google Groups, a web to USENET gateway.
597
598 : **google()**
599 Searches the search engine Google using arguments as search string.
600
601 : **greph()**
602 Searches the zsh command history for a regular expression.
603
604 : **hex()**
605 Prints the hexadecimal representation of the number supplied as argument
606 (base ten only).
607
608 : **hgdi()**
609 Use GNU diff with options -ubwd for mercurial.
610
611 : **hgstat()**
612 Displays diffstat between the revision given as argument and tip (no
613 argument means last revision).
614
615 : **hidiff()**
616 Outputs highlighted diff; needs highstring(1).
617
618 : **hl()**
619 Shows source files in less(1) with syntax highlighting. Run "hl -h"
620 for detailed usage information.
621
622 : **ic_get()**
623 Queries IMAP server (first parameter) for its capabilities. Takes
624 port number as optional second argument.
625
626 : **ipv6-tunnel()**
627 Sets up an IPv6 tunnel on interface sit1. Needs one argument -
628 either "start", "stop" or "status".
629
630 : **is4()**
631 Returns true, if zsh version is equal or greater than 4, else false.
632
633 : **is41()**
634 Returns true, if zsh version is equal or greater than 4.1, else false.
635
636 : **is42()**
637 Returns true, if zsh version is equal or greater than 4.2, else false.
638
639 : **is425()**
640 Returns true, if zsh version is equal or greater than 4.2.5, else false.
641
642 : **is43()**
643 Returns true, if zsh version is equal or greater than 4.3, else false.
644
645 : **is433()**
646 Returns true, if zsh version is equal or greater than 4.3.3, else false.
647
648 : **isdarwin()**
649 Returns true, if running on darwin, else false.
650
651 : **isgrml()**
652 Returns true, if running on a grml system, else false.
653
654 : **isgrmlcd()**
655 Returns true, if running on a grml system from a live cd, else false.
656
657 : **isgrmlsmall()**
658 Returns true, if run on grml-small, else false.
659
660 : **iso2utf()**
661 Changes every occurrence of the string iso885915 or ISO885915 in
662 environment variables to UTF-8.
663
664 : **isutfenv()**
665 Returns true, if run within an utf environment, else false.
666
667 : **iwclient()**
668 Searches a wireless interface and runs dhclient(8) on it.
669
670 : **lcheck()**
671 Lists libraries that define the symbol containing the string given as
672 parameter.
673
674 : **limg()**
675 Lists images (i. e. files ending with ".jpg", ".gif" or ".png") in current
676 directory.
677
678 : **linenr()**
679 Prints specified range of (numbered) lines of a file.
680 Usage: linenr <start>[,<end>] <file>
681
682 : **makereadable()**
683 Creates a PostScript and a PDF file (basename as first argument) from
684 source code files.
685
686 : **man2()**
687 Displays manpage in a streched style.
688
689 : **manzsh()**
690 Shows the zshall manpage and jumps to the first match of the regular
691 expression optionally given as argument (Needs qma(1)).
692
693 : **mcd()**
694 Creates directory including parent directories, if necessary. Then changes
695 current working directory to it.
696
697 : **mdiff()**
698 Diffs the two arguments recursively and writes the
699 output (unified format) to a timestamped file.
700
701 : **memusage()**
702 Prints the summarized memory usage in bytes.
703
704 : **mggogle()**
705 Searches Google Groups for a USENET message-ID.
706
707 : **minimal-shell()**
708 Spawns a minimally set up MirBSD Korn shell. It references no files in /usr,
709 so that file system can be unmounted.
710
711 : **mkaudiocd()**
712 Renames all mp3 files in ~/ripps (see audiorip above) to lowercase and
713 replaces spaces in file names with underscores. Then mkaudiocd()
714 normalizes the files and recodes them to WAV.
715
716 : **mkiso()**
717 Creates an iso9660 filesystem image with Rockridge and Joliet extensions
718 enabled using mkisofs(8). Prompts the user for volume name, filename and
719 target directory.
720
721 : **mkmaildir()**
722 Creates a directory with first parameter as name inside $MAILDIR_ROOT
723 (defaults to $HOME/Mail) and subdirectories cur, new and tmp.
724
725 : **mmake()**
726 Runs "make install" and logs the output under ~/.errorlogs/; useful for
727 a clean deinstall later.
728
729 : **modified()**
730 Lists files in current directory, which have been modified within the
731 last N days. N is an integer to be passed as first and only argument.
732 If no argument is specified N is set to 1.
733
734 : **nt()**
735 A helper function for the "e" glob qualifier to list all files newer
736 than a reference file.
737 \
738 Example usages:
739 ```
740 % NTREF=/reference/file
741 % ls -l *(e:nt:)
742 % # Inline:
743 % ls -l *(e:'nt /reference/file':)
744 ```
745
746 : **ogg2mp3_192()**
747 Recodes an ogg file to mp3 with a bitrate of 192.
748
749 : **peval()**
750 Evaluates a perl expression; useful as command line
751 calculator, therefore also available as "calc".
752
753 : **plap()**
754 Lists all occurrences of the string given as argument in current $PATH.
755
756 : **profile()**
757 Runs a command in $SHELL with profiling enabled (See startup variable
758 ZSH_PROFILE_RC above).
759
760 : **purge()**
761 Removes typical temporary files (i. e. files like "*~", ".*~", "#*#", "*.o",
762 "a.out", "*.core", "*.cmo", "*.cmi" and ".*.swp") from current directory.
763 Asks for confirmation.
764
765 : **readme()**
766 Opens all README-like files in current working directory with the program
767 defined in the $PAGER environment variable.
768
769 : **refunc()**
770 Reloads functions given as parameters.
771
772 : **regcheck()**
773 Checks whether a regular expression (first parameter) matches a string
774 (second parameter) using perl.
775
776 : **salias()**
777 Creates an alias whith sudo prepended, if $EUID is not zero. Run "salias -h"
778 for details. See also xunfunction() below.
779
780 : **selhist()**
781 Greps the history for the string provided as parameter and shows the numbered
782 findings in default pager. On exit of the pager the user is prompted for a
783 number. The shells readline buffer is then filled with the corresponding
784 command line.
785
786 : **setenv()**
787 Reimplementation of the csh(1) builtin setenv.
788
789 : **show-archive()**
790 Lists the contents of a (compressed) archive with the appropriate programs.
791 The choice is made along the filename extension.
792
793 : **shtar()**
794 Lists the content of a gzipped tar archive in default pager.
795
796 : **shzip()**
797 Shows the content of a zip archive in default pager.
798
799 : **simple-extract()**
800 Tries to uncompress/unpack given file with the appropriate programs. The
801 choice is made along the filename ending.
802
803 : **sll()**
804 Prints details of symlinks given as arguments.
805
806 : **slow_print()**
807 Prints the arguments slowly by sleeping 0.08 seconds between each character.
808
809 : **smartcompress()**
810 Compresses/archives the file given as first parameter. Takes an optional
811 second argument, which denotes the compression/archive type as typical
812 filename extension; defaults to "tar.gz".
813
814 : **smart-indent()**
815 Indents C source code files given; uses Kernighan & Ritchie style.
816
817 : **sshot()**
818 Creates directory named shots in user's home directory, if it does not yet
819 exist and changes current working directory to it. Then sleeps 5 seconds,
820 so you have plenty of time to switch desktops/windows. Then makes a screenshot
821 of the current desktop. The result is stored in ~/shots to a timestamped
822 jpg file.
823
824 : **ssl-cert-fingerprints**
825 Prints the SHA512, SHA256, SHA1 and MD5 digest of a x509 certificate.
826 First and only parameter must be a file containing a certificate. Use
827 /dev/stdin as file if you want to pipe a certificate to these
828 functions.
829
830 : **ssl-cert-info**
831 Prints all information of a x509 certificate including the SHA512,
832 SHA256, SHA1 and MD5 digests. First and only parameter must be a file
833 containing a certificate. Use /dev/stdin as file if you want to pipe a
834 certificate to this function.
835
836 : **ssl-cert-sha512(), ssl-cert-sha256(), ssl-cert-sha1(), ssl-cert-md5()**
837 Prints the SHA512, SHA256, SHA1 respective MD5 digest of a x509
838 certificate. First and only parameter must be a file containing a
839 certificate. Use /dev/stdin as file if you want to pipe a certificate
840 to this function.
841
842 : **Start(), Restart(), Stop(), Force-Reload(), Reload()**
843 Functions for controlling daemons.
844 ```
845 Example usage:
846 % Restart ssh
847 ```
848
849 : **startx()**
850 Initializes an X session using startx(1) if /etc/X11/xorg.conf exists, else
851 issues a Warning to use the grml-x(1) script. Can be overridden by using
852 /usr/bin/startx directly.
853
854 : **status()**
855 Shows some information about current system status.
856
857 : **swspeak()**
858 Sets up software synthesizer by calling swspeak-setup(8). Kernel boot option
859 swspeak must be set for this to work.
860
861 : **trans()**
862 Translates a word from german to english (-D) or vice versa (-E).
863
864 : **uchange()**
865 Shows upstreams changelog of a given package in $PAGER.
866
867 : **udiff()**
868 Makes a unified diff of the command line arguments trying hard to find a
869 smaller set of changes. Descends recursively into subdirectories. Ignores
870 hows some information about current status.
871
872 : **uopen()**
873 Downloads and displays a file using a suitable program for its
874 Content-Type.
875
876 : **uprint()**
877 Works around the "print -l ${(u)foo}"-limitation on zsh older than 4.2.
878
879 : **urlencode()**
880 Takes a string as its first argument and prints it RFC 2396 URL encoded to
881 standard out.
882
883 : **utf2iso()**
884 Changes every occurrence of the string UTF-8 or utf-8 in environment
885 variables to iso885915.
886
887 : **viless()**
888 Vim as pager.
889
890 : **vim()**
891 Wrapper for vim(1). It tries to set the title and hands vim the environment
892 variable VIM_OPTIONS on the command line. So the user may define command
893 line options, she always wants, in her .zshrc.local.
894
895 : **vman()**
896 Use vim(1) as manpage reader.
897
898 : **whatwhen()**
899 Searches the history for a given pattern and lists the results by date.
900 The first argument is the search pattern. The second and third ones are
901 optional and denote a search range (default: -100).
902
903 : **weather()**
904 Retrieves and prints weather information from "http://weather.noaa.gov".
905 The first and only argument is the ICAO code for the desired station.
906 For a list of ICAO codes see
907 "http://en.wikipedia.org/wiki/List_of_airports_by_ICAO_code".
908
909 : **xcat()**
910 Tries to cat(1) file(s) given as parameter(s). Always returns true.
911 See also xunfunction() below.
912
913 : **xinit()**
914 Initializes an X session using xinit(1) if /etc/X11/xorg.conf exists, else
915 issues a Warning to use the grml-x(1) script. Can be overridden by using
916 /usr/bin/xinit directly.
917
918 : **xsource()**
919 Tries to source the file(s) given as parameter(s). Always returns true.
920 See zshbuiltins(1) for a detailed description of the source command.
921 See also xunfunction() below.
922
923 : **xtrename()**
924 Changes the title of xterm window from within screen(1). Run without
925 arguments for details.
926
927 : **xunfunction()**
928 Removes the functions salias, xcat, xsource, xunfunction and zrcautoload.
929
930 : **zg()**
931 Search for patterns in grml's zshrc using perl. zg takes no or exactly one
932 option plus a non empty pattern. Run zg without any arguments for a listing
933 of available command line switches. For a zshrc not in /etc/zsh, set the
934 GRML_ZSHRC environment variable.
935
936 : **zrcautoload()**
937 Wrapper around the autoload builtin. Loads the definitions of functions
938 from the file given as argument. Searches $fpath for the file. See also
939 xunfunction() above.
940
941 : **zrclocal()**
942 Sources /etc/zsh/zshrc.local and ${HOME}/.zshrc.local. These are the files
943 where own modifications should go. See also zshbuiltins(1) for a description
944 of the source command.
945
946
947 == ALIASES ==
948 //grmlzshrc// comes with a wide array of predefined aliases to ease the user's
949 life. A few aliases (like those involving //grep// or //ls//) use the option
950 //--color=auto// for colourizing output. That option is part of **GNU**
951 implementations of these tools, and will only be used if such an implementation
952 is detected.
953
954 : **acp** (//apt-cache policy//)
955 With no arguments prints out the priorities of each source. If a package name
956 is given, it displays detailed information about the priority selection of the
957 package.
958
959 : **acs** (//apt-cache search//)
960 Searches debian package lists for the regular expression provided as argument.
961 The search includes package names and descriptions. Prints out name and short
962 description of matching packages.
963
964 : **acsh** (//apt-cache show//)
965 Shows the package records for the packages provided as arguments.
966
967 : **adg** (//apt-get dist-upgrade//)
968 Performs an upgrade of all installed packages. Also tries to automatically
969 handle changing dependencies with new versions of packages. As this may change
970 the install status of (or even remove) installed packages, it is potentially
971 dangerous to use dist-upgrade; invoked by sudo, if necessary.
972
973 : **ag** (//apt-get upgrade//)
974 Downloads and installs the newest versions of all packages currently installed
975 on the system. Under no circumstances are currently installed packages removed,
976 or packages not already installed retrieved and installed. New versions of
977 currently installed packages that cannot be upgraded without changing the install
978 status of another package will be left at their current version. An update must
979 be performed first (see au below); run by sudo, if necessary.
980
981 : **agi** (//apt-get install//)
982 Downloads and installs or upgrades the packages given on the command line.
983 If a hyphen is appended to the package name, the identified package will be
984 removed if it is installed. Similarly a plus sign can be used to designate a
985 package to install. This may be useful to override decisions made by apt-get's
986 conflict resolution system.
987 A specific version of a package can be selected for installation by following
988 the package name with an equals and the version of the package to select. This
989 will cause that version to be located and selected for install. Alternatively a
990 specific distribution can be selected by following the package name with a slash
991 and the version of the distribution or the Archive name (stable, testing, unstable).
992 Gets invoked by sudo, if user id is not 0.
993
994 : **ati** (//aptitude install//)
995 Aptitude is a terminal-based package manager with a command line mode similar to
996 apt-get (see agi above); invoked by sudo, if necessary.
997
998 : **au** (//apt-get update//)
999 Resynchronizes the package index files from their sources. The indexes of
1000 available packages are fetched from the location(s) specified in
1001 /etc/apt/sources.list. An update should always be performed before an
1002 upgrade or dist-upgrade; run by sudo, if necessary.
1003
1004 : **calc** (//peval//)
1005 Evaluates a perl expression (see peval() above); useful as a command line
1006 calculator.
1007
1008 : **CH** (//./configure --help//)
1009 Lists available compilation options for building program from source.
1010
1011 : **cmplayer** (//mplayer -vo fbdev//)
1012 Video player with framebuffer as video output device, so you can watch
1013 videos on a virtual tty. Hint: Using fbdev2 allows you to use the shell
1014 while watching a movie.
1015
1016 : **CO** (//./configure//)
1017 Prepares compilation for building program from source.
1018
1019 : **cp** (//nocorrect cp//)
1020 cp(1) without spelling correction.
1021
1022 : **da** (//du -sch//)
1023 Prints the summarized disk usage of the arguments as well as a grand total
1024 in human readable format.
1025
1026 : **dbp** (//dpkg-buildpackage//)
1027 Builds binary or source packages from sources (See: dpkg-buildpackage(1)).
1028
1029 : **debs-by-size** (//grep-status -FStatus -sInstalled-Size,Package -n "install ok installed" | paste -sd "  \n" | sort -rn//)
1030 Prints installed Packages sorted by size (descending).
1031
1032 : **default** (//echo -en [ escape sequence ]//)
1033 Sets font of xterm to "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-15"
1034 using escape sequence.
1035
1036 : **dir** (//ls -lSrah//)
1037 Lists files (including dot files) sorted by size (biggest last) in long and
1038 human readable output format.
1039
1040 : **fblinks** (//links2 -driver fb//)
1041 A Web browser on the framebuffer device. So you can browse images and click
1042 links on the virtual tty.
1043
1044 : **fbmplayer** (//mplayer -vo fbdev -fs -zoom//)
1045 Fullscreen Video player with the framebuffer as video output device. So you
1046 can watch videos on a virtual tty.
1047
1048 : **g** (//git//)
1049 Revision control system by Linus Torvalds.
1050
1051 : **ge** (//grep-excuses//)
1052 Searches the testing excuses files for a specific maintainer (See:
1053 grep-excuses(1)).
1054
1055 : **grep** (//grep --color=auto//)
1056 Shows grep output in nice colors, if available.
1057
1058 : **GREP** (//grep -i --color=auto//)
1059 Case insensitive grep with colored output.
1060
1061 : **grml-rebuildfstab** (//rebuildfstab -v -r -config//)
1062 Scans for new devices and updates /etc/fstab according to the findings.
1063
1064 : **grml-version** (//cat /etc/grml_version//)
1065 Prints version of running grml.
1066
1067 : **hbp** (//hg-buildpackage//)
1068 Helper program to maintain Debian packages with mercurial.
1069
1070 : **http** (//python -m SimpleHTTPServer//)
1071 Basic HTTP server implemented in python. Listens on port 8000/tcp and
1072 serves current directory. Implements GET and HEAD methods.
1073
1074 : **insecscp** (//scp -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"//)
1075 scp with possible man-in-the-middle attack enabled. This is convenient, if the targets
1076 host key changes frequently, for example on virtualized test- or development-systems.
1077 To be used only inside trusted networks, of course.
1078
1079 : **insecssh** (//ssh -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"//)
1080 ssh with possible man-in-the-middle attack enabled
1081 (for an explanation see insecscp above).
1082
1083 : **help-zshglob** (//H-Glob()//)
1084 Runs the function H-Glob() to expand or explain wildcards.
1085
1086 : **hide** (//echo -en [ escape sequence ]//)
1087 Tries to hide xterm window using escape sequence.
1088
1089 : **hidiff** (//histring -fE '^Comparing files .*|^diff .*' | histring -c yellow -fE '^\-.*' | histring -c green -fE '^\+.*'//)
1090 If histring(1) is installed, highlight important stuff in diff(1) output.
1091
1092 : **huge** (//echo -en [ escape sequence ]//)
1093 Sets huge font in xterm ("-misc-fixed-medium-r-normal-*-*-210-*-*-c-*-iso8859-15")
1094 using escape sequence.
1095
1096 : **j** (//jobs -l//)
1097 Prints status of jobs in the current shell session in long format.
1098
1099 : **l** (//ls -lF --color=auto//)
1100 Lists files in long output format with indicator for filetype appended
1101 to filename. If the terminal supports it, with colored output.
1102
1103 : **la** (//ls -la --color=auto//)
1104 Lists files in long colored output format. Including file names
1105 starting with ".".
1106
1107 : **lad** (//ls -d .*(/)//)
1108 Lists the dot directories (not their contents) in current directory.
1109
1110 : **large** (//echo -en [ escape sequence ]//)
1111 Sets large font in xterm ("-misc-fixed-medium-r-normal-*-*-150-*-*-c-*-iso8859-15")
1112 using escape sequence.
1113
1114 : **lh** (//ls -hAl --color=auto//)
1115 Lists files in long and human readable output format in nice colors,
1116 if available. Includes file names starting with "." except "." and
1117 "..".
1118
1119 : **ll** (//ls -l --color=auto//)
1120 Lists files in long colored output format.
1121
1122 : **llog** (//$PAGER /var/log/syslog//)
1123 Opens syslog in pager.
1124
1125 : **ls** (//ls -b -CF --color=auto//)
1126 Lists directory printing octal escapes for nongraphic characters.
1127 Entries are listed by columns and an indicator for file type is appended
1128 to each file name. Additionally the output is colored, if the terminal
1129 supports it.
1130
1131 : **lsa** (//ls -a .*(.)//)
1132 Lists dot files in current working directory.
1133
1134 : **lsbig** (//ls -flh *(.OL[1,10])//)
1135 Displays the ten biggest files (long and human readable output format).
1136
1137 : **lsd** (//ls -d *(/)//)
1138 Shows directories.
1139
1140 : **lse** (//ls -d *(/^F)//)
1141 Shows empty directories.
1142
1143 : **lsl** (//ls -l *(@)//)
1144 Lists symbolic links in current directory.
1145
1146 : **lsnew** (//ls -rl *(D.om[1,10])//)
1147 Displays the ten newest files (long output format).
1148
1149 : **lsold** (//ls -rtlh *(D.om[1,10])//)
1150 Displays the ten oldest files (long output format).
1151
1152 : **lss** (//ls -l *(s,S,t)//)
1153 Lists files in current directory that have the setuid, setgid or sticky bit
1154 set.
1155
1156 : **lssmall** (//ls -Srl *(.oL[1,10])//)
1157 Displays the ten smallest files (long output format).
1158
1159 : **lsw** (//ls -ld *(R,W,X.^ND/)//)
1160 Displays all files which are world readable and/or world writable and/or
1161 world executable (long output format).
1162
1163 : **lsx** (//ls -l *(*)//)
1164 Lists only executable files.
1165
1166 : **md** (//mkdir -p//)
1167 Creates directory including parent directories, if necessary
1168
1169 : **mdstat** (//cat /proc/mdstat//)
1170 Lists all active md (i.e. linux software raid) devices with some information
1171 about them.
1172
1173 : **medium** (//echo -en [ escape sequence ]//)
1174 Sets medium sized font
1175 ("-misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-15") in xterm
1176 using escape sequence.
1177
1178 : **mkdir** (//nocorrect mkdir//)
1179 mkdir(1) without spelling correction.
1180
1181 : **mq** (//hg -R $(readlink -f $(hg root)/.hg/patches)//)
1182 Executes the commands on the versioned patch queue from current repository.
1183
1184 : **mv** (//nocorrect mv//)
1185 mv(1) without spelling correction.
1186
1187 : **rd** (//rmdir//)
1188 Short rmdir(1) (remove directory).
1189
1190 : **rm** (//nocorrect rm//)
1191 rm(1) without spelling correction.
1192
1193 : **screen** (///usr/bin/screen -c ${HOME}/.screenrc//)
1194 If invoking user is root, starts screen session with /etc/grml/screenrc
1195 as config file. If invoked by a regular user, start a screen session
1196 with users .screenrc config if it exists, else use /etc/grml/screenrc_grml
1197 as configuration.
1198
1199 : **rw-** (//chmod 600//)
1200 Grants read and write permission of a file to the owner and nobody else.
1201
1202 : **rwx** (//chmod 700//)
1203 Grants read, write and execute permission of a file to the owner and nobody
1204 else.
1205
1206 : **r--** (//chmod 644//)
1207 Grants read and write permission of a file to the owner and read-only to
1208 anybody else.
1209
1210 : **r-x** (//chmod 755//)
1211 Grants read, write and execute permission of a file to the owner and
1212 read-only plus execute permission to anybody else.
1213
1214 : **S** (//screen//)
1215 Short for screen(1).
1216
1217 : **s** (//ssh//)
1218 Short for ssh(1).
1219
1220 : **semifont** (//echo -en [ escape sequence ]//)
1221 Sets font of xterm to
1222 "-misc-fixed-medium-r-semicondensed-*-*-120-*-*-*-*-iso8859-15" using
1223 escape sequence.
1224
1225 : **small** (//echo -en [ escape sequence ]//)
1226 Sets small xterm font ("6x10") using escape sequence.
1227
1228 : **smartfont** (//echo -en [ escape sequence ]//)
1229 Sets font of xterm to "-artwiz-smoothansi-*-*-*-*-*-*-*-*-*-*-*-*" using
1230 escape sequence.
1231
1232 : **su** (//sudo su//)
1233 If user is running a grml live-CD, dont ask for any password, if she
1234 wants a root shell.
1235
1236 : **term2iso** (//echo 'Setting terminal to iso mode' ; print -n '\e%@'//)
1237 Sets mode from UTF-8 to ISO 2022 (See:
1238 http://www.cl.cam.ac.uk/~mgk25/unicode.html#term).
1239
1240 : **term2utf** (//echo 'Setting terminal to utf-8 mode'; print -n '\e%G'//)
1241 Sets mode from ISO 2022 to UTF-8 (See:
1242 http://www.cl.cam.ac.uk/~mgk25/unicode.html#term).
1243
1244 : **tiny** (//echo -en [ escape sequence ]//)
1245 Sets tiny xterm font
1246 ("-misc-fixed-medium-r-normal-*-*-80-*-*-c-*-iso8859-15") using escape
1247 sequence.
1248
1249 : **tlog** (//tail -f /var/log/syslog//)
1250 Prints syslog continuously (See tail(1)).
1251
1252 : **top10** (//print -l ? ${(o)history%% *} | uniq -c | sort -nr | head -n 10//)
1253 Prints the ten most used shell commands.
1254
1255 : **truec** (//truecrypt [ mount options ]//)
1256 Mount a truecrypt volume with some reasonable mount options
1257 ("rw,sync,dirsync,users,uid=1000,gid=users,umask=077" and "utf8", if
1258 available).
1259
1260 : **up** (//aptitude update ; aptitude safe-upgrade//)
1261 Performs a system update followed by a system upgrade using aptitude; run
1262 by sudo, if necessary. See au and ag above.
1263
1264 : **url-quote** (//autoload -U url-quote-magic ; zle -N self-insert url-quote-magic//)
1265 After calling, characters of URLs as typed get automatically escaped, if necessary, to
1266 protect them from the shell.
1267
1268 : **0** (//return 0//)
1269 Gives a clean prompt (i.e. without $?).
1270
1271 : **$(uname -r)-reboot** (//kexec -l --initrd=/boot/initrd.img-"$(uname -r)" --command-line=\"$(cat /proc/cmdline)\" /boot/vmlinuz-"$(uname -r)"//)
1272 Reboots using kexec(8) and thus reduces boot time by skipping hardware initialization of BIOS/firmware.
1273
1274 : **...** (//cd ../..///)
1275 Changes current directory two levels higher.
1276
1277 : **?** (//qma zshall//)
1278 Runs the grml script qma (quick manual access) to build the collected man
1279 pages for the z-shell. This compressed file is kept at
1280 ~/man/zshall.txt.lzo Once it is built, the second use of the alias '?' is
1281 fast. See "man qma" for further information.
1282
1283
1284 = AUXILIARY FILES =
1285 This is a set of files, that - if they exist - can be used to customize the
1286 behaviour of //grmlzshrc//.
1287
1288 : **.zshrc.pre**
1289 Sourced at the very beginning of //grmlzshrc//. Among other things, it can
1290 be used to permantenly change //grmlzshrc//'s STARTUP VARIABLES (see above):
1291 \
1292 ```
1293 # show battery status in RPROMPT
1294 BATTERY=1
1295 # always load the complete setup, even for root
1296 GRML_ALWAYS_LOAD_ALL=1
1297 ```
1298
1299 : **.zshrc.local**
1300 Sourced right before loading //grmlzshrc// is finished. There is a global
1301 version of this file (/etc/zsh/zshrc.local) which is sourced before the
1302 user-specific one.
1303
1304 : **.zdirs**
1305 Directory listing for persistent dirstack (see above).
1306
1307 : **.important_commands**
1308 List of commands, used by persistent history (see above).
1309
1310
1311 = INSTALLATION ON NON-DEBIAN SYSTEMS =
1312 On Debian systems (http://www.debian.org) - and possibly Ubuntu
1313 (http://www.ubuntu.com) and similar systems - it is very easy to get
1314 //grmlzshrc// via grml's .deb repositories.
1315
1316 On non-debian systems, that is not an option, but all is not lost:
1317 \
1318 ```
1319 % wget -O .zshrc http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
1320 ```
1321
1322 If you would also like to get seperate function files (which you can put into
1323 your **$fpath**), you can browse and download them at:
1324
1325 http://git.grml.org/?p=grml-etc-core.git;a=tree;f=usr_share_grml/zsh;hb=HEAD
1326
1327 = ZSH REFCARD TAGS =
1328 If you read //grmlzshrc//'s code you may notice strange looking comments in
1329 it. These are there for a purpose. grml's zsh-refcard is automatically
1330 generated from the contents of the actual configuration file. However, we need
1331 a little extra information on which comments and what lines of code to take
1332 into account (and for what purpose).
1333
1334 Here is what they mean:
1335
1336 List of tags (comment types) used:
1337 : **#a#**
1338 Next line contains an important alias, that should be included in the
1339 grml-zsh-refcard. (placement tag: @@INSERT-aliases@@)
1340
1341 : **#f#**
1342 Next line contains the beginning of an important function. (placement
1343 tag: @@INSERT-functions@@)
1344
1345 : **#v#**
1346 Next line contains an important variable. (placement tag:
1347 @@INSERT-variables@@)
1348
1349 : **#k#**
1350 Next line contains an important keybinding. (placement tag:
1351 @@INSERT-keybindings@@)
1352
1353 : **#d#**
1354 Hashed directories list generation: //start//: denotes the start of a list of
1355 'hash -d' definitions. //end//: denotes its end. (placement tag:
1356 @@INSERT-hasheddirs@@)
1357
1358 : **#A#**
1359 Abbreviation expansion list generation: //start//: denotes the beginning of
1360 abbreviations. //end//: denotes their end.
1361 \
1362 Lines within this section that end in '#d .*' provide extra documentation to
1363 be included in the refcard. (placement tag: @@INSERT-abbrev@@)
1364
1365 : **#m#**
1366 This tag allows you to manually generate refcard entries for code lines that
1367 are hard/impossible to parse.
1368 Example:
1369 \
1370 ```
1371 #m# k ESC-h Call the run-help function
1372 ```
1373 \
1374 That would add a refcard entry in the keybindings table for 'ESC-h' with the
1375 given comment.
1376 \
1377 So the syntax is: #m# <section> <argument> <comment>
1378
1379 : **#o#**
1380 This tag lets you insert entries to the 'other' hash. Generally, this should
1381 not be used. It is there for things that cannot be done easily in another way.
1382 (placement tag: @@INSERT-other-foobar@@)
1383
1384
1385 All of these tags (except for m and o) take two arguments, the first
1386 within the tag, the other after the tag:
1387
1388 #<tag><section># <comment>
1389
1390 Where <section> is really just a number, which are defined by the @secmap
1391 array on top of 'genrefcard.pl'. The reason for numbers instead of names is,
1392 that for the reader, the tag should not differ much from a regular comment.
1393 For zsh, it is a regular comment indeed. The numbers have got the following
1394 meanings:
1395
1396 : **0**
1397 //default//
1398
1399 : **1**
1400 //system//
1401
1402 : **2**
1403 //user//
1404
1405 : **3**
1406 //debian//
1407
1408 : **4**
1409 //search//
1410
1411 : **5**
1412 //shortcuts//
1413
1414 : **6**
1415 //services//
1416
1417
1418 So, the following will add an entry to the 'functions' table in the 'system'
1419 section, with a (hopefully) descriptive comment:
1420 \
1421 ```
1422 #f1# Edit an alias via zle
1423 edalias() {
1424 ```
1425 \
1426 It will then show up in the @@INSERT-aliases-system@@ replacement tag that can
1427 be found in 'grml-zsh-refcard.tex.in'. If the section number is omitted, the
1428 'default' section is assumed. Furthermore, in 'grml-zsh-refcard.tex.in'
1429 @@INSERT-aliases@@ is exactly the same as @@INSERT-aliases-default@@. If you
1430 want a list of **all** aliases, for example, use @@INSERT-aliases-all@@.
1431
1432
1433 = CONTRIBUTING =
1434 If you want to help to improve grml's zsh setup, clone the grml-etc-core
1435 repository from git.grml.org:
1436 \
1437 ``` % git clone git://git.grml.org/grml-etc-core.git
1438
1439 Make your changes, commit them; use '**git format-patch**' to create a series
1440 of patches and send those to the following address via '**git send-email**':
1441 \
1442 ``` grml-etc-core@grml.org
1443
1444 Doing so makes sure the right people get your patches for review and
1445 possibly inclusion.
1446
1447
1448 = STATUS =
1449 This manual page is the **reference** manual for //grmlzshrc//.
1450
1451 That means that in contrast to the existing refcard it should document **every**
1452 aspect of the setup.
1453
1454 This manual is currently not complete. If you want to help improving it, visit
1455 the following pages:
1456
1457 http://wiki.grml.org/doku.php?id=zshrcmanual
1458
1459 http://lists.mur.at/pipermail/grml/2009-August/004609.html
1460
1461 Contributions are highly welcome.
1462
1463
1464 = AUTHORS =
1465 This manpage was written by Frank Terbeck <ft@grml.org>, Joerg Woelke
1466 <joewoe@fsmail.de>, Maurice McCarthy <manselton@googlemail.com> and Axel
1467 Beckert <abe@deuxchevaux.org>.
1468
1469
1470 = COPYRIGHT =
1471 Copyright (c) 2009-2010 grml project <http://grml.org>
1472
1473 This manpage is distributed under the terms of the GPL version 2.
1474
1475 Most parts of grml's zshrc are distributed under the terms of GPL v2, too,
1476 except for **accept-line()** and **vcs_info()**, which are distributed under
1477 the same conditions as zsh itself (which is BSD-like).