doc/grmlzshrc: Document GRML_NO_{APT,SMALL}_ALIASES
[grml-etc-core.git] / doc / grmlzshrc.t2t
1 GRMLZSHRC
2
3 September, 2014
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).
30
31 Users may want to keep an up-to-date version of the setup (possibly from the
32 git-sources) in //~/.zshrc//. If that happens on a system where the global
33 zshrc is also a //grmlzshrc// (but possibly an older one), you can inhibit
34 loading the global version by doing:
35 \
36 ```
37 echo setopt no_global_rcs >> ~/.zshenv
38 ```
39
40 Note, that this will disable //ANY// global files, except for the global
41 zshenv file.
42
43 = STARTUP VARIABLES =
44 Some of the behaviour of //grmlzshrc// can be altered by setting certain shell
45 variables. These may be set temporarily when starting zsh like this:
46 \
47 ``` % GRML_DISPLAY_BATTERY=1 zsh
48
49 Or by setting them permanently in **zshrc.pre** (See AUXILIARY FILES below).
50
51 : **BATTERY**
52 Deprecated. Use **GRML_DISPLAY_BATTERY** instead.
53
54 : **COMMAND_NOT_FOUND**
55 A non zero value activates a handler, which is called when a command can not
56 be found. The handler is defined by GRML_ZSH_CNF_HANDLER (see below).
57
58 : **GRML_COMP_CACHING**
59 If set to //yes// (the default), the setup will enable zsh's completion caching
60 mechanism, with the caching data being placed into //$GRML_COMP_CACHE_DIR//.
61
62 : **GRML_COMP_CACHE_DIR**
63 This defines where zsh's completion caching data will be placed, if
64 //$GRML_COMP_CACHING// is active. The default is //${ZDOTDIR:-$HOME}/.cache//.
65 The setup will ensure the directory exists before attempting to use it.
66
67 : **GRML_DISPLAY_BATTERY**
68 If set to a value greater than zero, //grmlzshrc// will put the battery status
69 into the right hand side interactive prompt. Supported OSes are //GNU/Linux//,
70 //FreeBSD//, //OpenBSD// and //Darwin//.
71
72 : **GRML_ZSH_CNF_HANDLER**
73 This variable contains the handler to be used by COMMAND_NOT_FOUND (see above)
74 and defaults to "/usr/share/command-not-found/command-not-found".
75
76 : **GRML_NO_APT_ALIASES**
77 A non-empty value inhibits the definition of apt-specific short aliases,
78 such as ag, agi, ati etc.
79
80 : **GRML_NO_SMALL_ALIASES**
81 A non-empty value inhibits the definition of 2-letter aliases such as da.
82 ls, ll, la and other common ls-related aliases are exempt from this, as are
83 the aliases inhibited by GRML_NO_APT_ALIASES.
84
85 : **GRMLSMALL_SPECIFIC**
86 Set this to zero to remove items in zsh config, which do not work in
87 grml-small.
88
89 : **HISTFILE**
90 Where zsh saves the history. Default: ${HOME}/.zsh_history.
91
92 : **HISTSIZE**
93 Number of commands to be kept in the history. On a Grml-CD this defaults to
94 500, on a hard disk installation to 5000.
95
96 : **MAILCHECK**
97 Sets the frequency in seconds for zsh to check for new mail. Defaults to 30.
98 A value of zero turns off checking.
99
100 : **NOCOR**
101 Non zero values deactivate automatic correction of commands.
102
103 : **NOMENU**
104 If set to zero (default), allows selection from a menu, if there are at least
105 five possible options of completion.
106
107 : **NOPRECMD**
108 A non zero value disables precmd and preexec commands. These are functions
109 that are run before every command (setting xterm/screen titles etc.).
110
111 : **REPORTTIME**
112 Show time (user, system and cpu) used by external commands, if they run longer
113 than the defined number of seconds (default: 5).
114
115 : **SAVEHIST**
116 Number of commands to be stored in ${HISTFILE}. Defaults to 1000 on a Grml-CD
117 and to 10000 on an installation on hard disk.
118
119 : **watch**
120 As in tcsh(1) an array of login/logout events to be reported by the shell
121 builtin "log". For details see zshparam(1). Defaults to (notme root).
122
123 : **ZSH_NO_DEFAULT_LOCALE**
124 Import "/etc/default/locale", if set to zero (default).
125
126 : **ZSH_PROFILE_RC**
127 A non zero value causes shell functions to be profiled. The results can be
128 obtained with the zprof builtin command (see zshmodules(1) for details).
129
130 : **COMPDUMPFILE**
131 Specifies the location of the completion dump file. Default: $HOME/.zcompdump.
132
133
134 = FEATURE DESCRIPTION =
135 This is an in depth description of non-standard features implemented by
136 //grmlzshrc//.
137
138 == DIRSTACK HANDLING ==
139 The dirstack in //grmlzshrc// has a persistent nature. It is stored into a
140 file each time zsh's working directory is changed. That file can be configured
141 via the **DIRSTACKFILE** variable and it defaults to **~/.zdirs**. The
142 **DIRSTACKSIZE** variable defaults to **20** in this setup.
143
144 The **DIRSTACKFILE** is loaded each time zsh starts, therefore freshly started
145 zshs inherit the dirstack of the zsh that most recently updated
146 **DIRSTACKFILE**.
147
148 If you would like to //disable// the persistent dirstack feature altogether,
149 you can do that by setting the boolean //enable// style to //false// in the
150 right context (the default is //true//):
151 \
152 ```
153 zstyle ':grml:chpwd:dirstack' enable false
154 ```
155
156 It is possible to apply a filter to the names of directories that will be
157 committed to the persistent dirstack file. There are two ways to configure this
158 filter: A general function based filter and a pattern based filter. Both are
159 setup via styles in the **':grml:chpwd:dirstack'** context.
160
161 To use a function based filter set the //filter// style for that context to the
162 name of a function to call every time a directory name is to be added to the
163 persistent dirstack. If the function's return value signals success (ie. return
164 value "0"), the directory name is filtered out and **not** added to the
165 persistent stack. Example:
166 \
167 ```
168 function my_dirstack_filter() { [[ $1 == /tmp(|/*) ]] }
169 zstyle ':grml:chpwd:dirstack' filter my_dirstack_filter
170 ```
171
172 The pattern based filter uses a list of patterns passed to the //exclude//
173 style in the aforementioned context. Each pattern is tested and the first that
174 matches will keep the directory name from being added to the persistent stack.
175 If none of the patterns matches, the name is added. example:
176 \
177 ```
178 zstyle ':grml:chpwd:dirstack' exclude "/tmp(|/*)" "$HOME/tmp(|/*)"
179 ```
180
181 The function based filter is more general, the pattern based filter easier to
182 set up. If both filter variants are used at the same time, the function based
183 filter will be executed //before// the pattern based one.
184
185 If you would like to apply your filters while //loading// the persistent
186 dirstack file, set the //filter-on-load// boolean style (the default is
187 //false//):
188 \
189 ```
190 zstyle ':grml:chpwd:dirstack' filter-on-load true
191 ```
192
193 Setting the //filter-on-load// and //enable// styles needs to be done in
194 ".zshrc.pre" because the styles need to be set when the main setup is
195 executing! The other styles do not have this limitation, but enabling the
196 system as well as the initial filtering will obviously be done using settings
197 and filters that are configured **at** **that** **point**.
198
199 With respect to //filter-on-load//, the rule of thumb is: If you want to filter
200 on load, setup everything in ".zshrc.pre" otherwise ".zshrc.local" works just
201 as well.
202
203
204 == DIRECTORY BASED PROFILES ==
205
206 If you need to perform certain actions each time you enter certain
207 directory-trees, this is the feature you are looking for.
208
209
210 === Initialisation ===
211 To initialise the system, you need to call the function `chpwd_profiles' at
212 some point in your `zshrc.local'; preferably **after** you configured the
213 system. The configuration of the system is described further below.
214
215 If you need to do initialisations the first time `chpwd_profiles' is called
216 (which should be in your configuration file), you can do that in a function
217 called "chpwd_profiles_init". That function needs to be defined **before**
218 `chpwd_profiles' is called for this to work.
219
220 During the **first** call of `chpwd_profiles' (and therefore all its profile
221 functions) the parameter `$CHPWD_PROFILES_INIT' exists and is set to `1'. In
222 all other cases, the parameter does not exist at all.
223
224
225 === Styles and Profile-names ===
226 To store its configuration, the system uses **functions** and **styles**
227 (zsh's context sensitive configuration system), such as this:
228
229 \
230 ```
231 zstyle ':chpwd:profiles:/usr/src/grml(|/|/*)'   profile grml
232 zstyle ':chpwd:profiles:/usr/src/debian(|/|/*)' profile debian
233 ```
234
235 When that's done and you enter a directory that matches the pattern in the
236 third part of the context, a function called chpwd_profile_grml, for example,
237 is called (if it exists).
238
239 If no pattern matches (read: no profile is detected) the profile is set to
240 'default', which means chpwd_profile_default is attempted to be called.
241
242 A word about the context (the ':chpwd:profiles:*' stuff in the zstyle command)
243 which is used: The third part in the context is matched against ${PWD}. That's
244 why using a pattern such as /foo/bar(|/|/*) makes sense. Because that way the
245 profile is detected for all these values of ${PWD}:
246 \
247 ```
248   /foo/bar
249   /foo/bar/
250   /foo/bar/baz
251 ```
252 So, if you want to make double damn sure a profile works in /foo/bar and
253 everywhere deeper in that tree, just use (|/|/*) and be happy.
254
255 The name of the detected profile will be available in a variable called
256 'profile' in your functions. You don't need to do anything, it'll just be
257 there.
258
259
260 === Controlling Profile Execution ===
261
262 During its initialisation run, the system creates a parameter $CHPWD_PROFILE,
263 which is set to the profile that was is currently active (the default value is
264 "default"). That way you can avoid running code for a profile that is already
265 active, by running code such as the following at the start of your function:
266 \
267 ```
268 function chpwd_profile_grml() {
269     [[ ${profile} == ${CHPWD_PROFILE} ]] && return 1
270   ...
271 }
272 ```
273
274 If you know you are going to do that all the time for each and every
275 directory-profile function you are ever going to write, you may also set the
276 `re-execute' style to `false' (which only defaults to `true' for backwards
277 compatibility), like this:
278 \
279 ```
280   zstyle ':chpwd:profiles:*' re-execute false
281 ```
282
283
284 === Signaling availabily/profile changes ===
285
286 If you use this feature and need to know whether it is active in your current
287 shell, there are several ways to do that. Here are two simple ways:
288
289 a) If knowing if the profiles feature is active when zsh starts is good
290 enough for you, you can use the following snippet:
291
292 (( ${+functions[chpwd_profiles]} )) && print "directory profiles active"
293
294 b) If that is not good enough, and you would prefer to be notified whenever a
295 profile changes, you can solve that by making sure you start **every**
296 profile function you create like this:
297
298 function chpwd_profile_myprofilename() {
299     [[ ${profile} == ${CHPWD_PROFILE} ]] && return 1
300     print "chpwd(): Switching to profile: $profile"
301   ...
302 }
303
304 That makes sure you only get notified if a profile is **changed**, not
305 everytime you change directory. (To avoid this, you may also set the newer
306 `re-execute' style like described further above instead of the test on top of
307 the function.
308
309
310 === Leaving Profiles ===
311
312 When the system switches from one profile to another, it executes a function
313 named "chpwd_leave_profile_<PREVIOUS-PROFILE-NAME>()" before calling the
314 profile-function for the new profile.
315
316
317 === Version requirement ===
318 This feature requires zsh //4.3.3// or newer.
319
320
321 == ACCEPTLINE WRAPPER ==
322 The //accept-line// wiget is the one that is taking action when the **return**
323 key is hit. //grmlzshrc// uses a wrapper around that widget, which adds new
324 functionality.
325
326 This wrapper is configured via styles. That means, you issue commands, that look
327 like:
328 \
329 ```
330 zstyle 'context' style value
331 ```
332
333 The context namespace, that we are using is 'acceptline'. That means, the actual
334 context for your commands look like: **':acceptline:<subcontext>'**.
335
336 Where **<subcontext>** is one of: **default**, **normal**, **force**, **misc**
337 or **empty**.
338
339
340 === Recognized Contexts ===
341 : **default**
342 This is the value, the context is initialized with.
343 The //compwarnfmt and //rehash// styles are looked up in this context.
344
345 : **normal**
346 If the first word in the command line is either a command, alias, function,
347 builtin or reserved word, you are in this context.
348
349 : **force**
350 This is the context, that is used if you hit enter again, after being warned
351 about the existence of a _completion for the non-existing command you
352 entered.
353
354 : **empty**
355 This is the context, you are in if the command line is empty or only
356 consists of whitespace.
357
358 : **misc**
359 This context is in effect, if you entered something that does not match any
360 of the above. (e.g.: variable assignments).
361
362
363 === Available Styles ===
364 : **nocompwarn**
365 If you set this style to true, the warning about non existent commands,
366 for which completions exist will not be issued. (Default: **false**)
367
368 : **compwarnfmt**
369 The message, that is displayed to warn about the _completion issue.
370 (default: **'%c will not execute and completion %f exists.'**)
371 '%c' is replaced by the command name, '%f' by the completion's name.
372
373 : **rehash**
374 If this is set, we'll force rehashing, if appropriate. (Defaults to
375 **true** in //grmlzshrc//).
376
377 : **actions**
378 This can be a list of wigdets to call in a given context. If you need a
379 specific order for these to be called, name them accordingly. The default value
380 is an **empty list**.
381
382 : **default_action**
383 The name of a widget, that is called after the widgets from 'actions'.
384 By default, this will be '.accept-line' (which is the built-in accept-line
385 widget).
386
387 : **call_default**
388 If true in the current context, call the widget in the 'default_action'
389 style. (The default is **true** in all contexts.)
390
391
392 == PROMPT ==
393
394 The //grmlzshrc// now supplies three prompt themes compatible with zsh's
395 **promptinit** system. The three themes are called **grml**, **grml-large** and
396 **grml-chroot**.
397
398 By default, **grml** is used, unless //$GRMLPROMPT// is set to a value larger
399 than zero, in which case **grml-large** is used. Lastly, if //$GRML_CHROOT// is
400 non-empty, **grml-chroot** is used.
401
402 As usual, with promptinit themes, the user may switch to a different theme using
403 the //prompt// utility:
404 \
405 ```
406     prompt grml-large
407 ```
408
409 That will use the **grml-large** prompt theme.
410
411 The themes are highly customisable. The main source of documentation about
412 customisation is the main **grml** theme's doc-string, that is available via
413 the following command:
414 \
415 ```
416     prompt -h grml
417 ```
418
419 The other themes also come with doc-strings, but the main theme's is the
420 canonical reference about all of them.
421
422 This feature requires version //4.3.7// of the shell. Older versions will use
423 the classic grml prompt as a fallback.
424
425 A note to people who like customisation: If you are **not** using a prompt
426 theme for your customisation, but you're either statically setting $PS1 (or
427 $PROMPT) or you're constructing one of those variables in zsh's \`precmd()'
428 function, make sure you are turning the zsh's prompt theme system **off**
429 before doing so. A correct example customisation could look like this:
430 \
431 ```
432     # Turn the prompt system off:
433     prompt off
434     # Customise the prompt yourself:
435     PS1='%~ %# '
436 ```
437
438 You also add your own tokens by using the \`grml_theme_add_token()' function.
439 Call the function without arguments for detailed documentation about that
440 procedure.
441
442 == GNU/SCREEN STATUS SETTING ==
443 //grmlzshrc// sets screen's hardstatus lines to the currently running command
444 or **'zsh'** if the shell is idling at its prompt. If the current working
445 directory is inside a repository unter version control, screen status is set
446 to: **'zsh: <repository name>'** via zsh's vcs_info.
447
448
449 == PERSISTENT HISTORY ==
450 If you got commands you consider important enough to be included in every
451 shell's history, you can put them into ~/.important_commands and they will be
452 available via the usual history lookup widgets.
453
454
455 = REFERENCE =
456 == ENVIRONMENT VARIABLES ==
457 //grmlzshrc// sets some environment variables, which influence the
458 behaviour of applications.
459
460 : **COLORTERM**
461 Set to "yes". Some applications read this to learn about properties
462 of the terminal they are running in.
463
464 : **EDITOR**
465 If not already set, sets the default editor. Falls back to vi(1),
466 if vim(1) is not available.
467
468 : **LESS_TERMCAP_***
469 Some environment variables that add colour support to less(1) for viewing
470 man pages. See termcap(5) for details.
471
472 : **MAIL**
473 The mailbox file for the current user is set to /var/mail/$USER, if not
474 already set otherwise.
475
476 : **PAGER**
477 Set less(1) as default pager, if not already set to something different.
478
479
480 == OPTIONS ==
481 Apart from zsh's default options, //grmlzshrc// sets some options
482 that change the behaviour of zsh. Options that change Z-shell's default
483 settings are marked by <grml>. But note, that zsh's defaults vary depending
484 on its emulation mode (csh, ksh, sh, or zsh). For details, see zshoptions(1).
485
486 : **append_history**
487 Zsh sessions, that use //grmlzshrc//, will append their history list to the
488 history file, rather than replace it. Thus, multiple parallel zsh sessions
489 will all have the new entries from their history lists added to the history
490 file, in the order that they exit. The file will still be periodically
491 re-written to trim it when the number of lines grows 20% beyond the value
492 specified by $SAVEHIST.
493
494 : **auto_cd** <grml>
495 If a command is issued that can't be executed as a normal command, and the
496 command is the name of a directory, perform the cd command to that directory.
497
498 : **auto_pushd** <grml>
499 Make cd push the old directory onto the directory stack.
500
501 : **completeinword** <grml>
502 If the cursor is inside a word, completion is done from both ends;
503 instead of moving the cursor to the end of the word first and starting
504 from there.
505
506 : **extended_glob** <grml>
507 Treat the '#', '~' and '^' characters as active globbing pattern characters.
508
509 : **extended_history** <grml>
510 Save each command's beginning timestamp (in seconds since the epoch) and the
511 duration (in seconds) to the history file.
512
513 : **hash_list_all**
514 Whenever a command completion is attempted, make sure the entire command
515 path is hashed first. This makes the first completion slower.
516
517 : **histignorealldups** <grml>
518 If a new command line being added to the history list duplicates an
519 older one, the older command is removed from the list, even if it is
520 not the previous event.
521
522 : **histignorespace** <grml>
523 Remove command lines from the history list when the first character on
524 the line is a space, or when one of the expanded aliases contains a
525 leading space. Note that the command lingers in the internal history
526 until the next command is entered before it vanishes.
527
528 : **longlistjobs** <grml>
529 List jobs in long format by default.
530
531 : **nobeep** <grml>
532 Avoid to beep on errors in zsh command line editing (zle).
533
534 : **noglobdots**
535 A wildcard character never matches a leading '.'.
536
537 : **nohup** <grml>
538 Do not send the hangup signal (HUP:1) to running jobs when the shell exits.
539
540 : **nonomatch** <grml>
541 If a pattern for filename generation has no matches, do not print an error
542 and leave it unchanged in the argument list. This also applies to file
543 expansion of an initial `~' or `='.
544
545 : **notify**
546 Report the status of background jobs immediately, rather than waiting until
547 just before printing a prompt.
548
549 : **pushd_ignore_dups** <grml>
550 Don't push multiple copies of the same directory onto the directory stack.
551
552 : **share_history** <grml>
553 As each line is added to the history file, it is checked to see if anything
554 else was written out by another shell, and if so it is included in the
555 history of the current shell too. Using !-style history, the commands from
556 the other sessions will not appear in the history list unless you explicitly
557 type the "history" command. This option is activated for zsh versions >= 4,
558 only.
559
560
561 == KEYBINDINGS ==
562 Apart from zsh's default key bindings, //grmlzshrc// comes with its own set of
563 key bindings. Note that bindings like **ESC-e** can also be typed as **ALT-e**
564 on PC keyboards.
565
566 : **ESC-e**
567 Edit the current command buffer in your favourite editor.
568
569 : **ESC-v**
570 Deletes a word left of the cursor; seeing '/' as additional word separator.
571
572 : **CTRL-x-1**
573 Jump right after the first word.
574
575 : **CTRL-x-M()**
576 Create directory under cursor or the selected area.
577 To select an area press ctrl-@ and use the cursor.
578 Use case: you type "mv abc ~/testa/testb/testc/" and remember that the
579 directory does not exist yet -> press **CTRL-xM** and problem solved.
580
581 : **CTRL-x-p**
582 Searches the last occurence of string before the cursor in the command history.
583
584 : **CTRL-x-z**
585 Display help on keybindings and zsh line editor. Press consecutively to page through content.
586
587 : **CTRL-z**
588 Brings a job, which got suspended with CTRL-z back to foreground.
589
590
591 === Customisation ===
592
593 To customise keybindings, you can just use zsh's bindkey utility. However, if
594 you plan to to use the `//zle-line-init//' or `//zle-line-finish//' hooks
595 yourself, make sure you call the following functions in the respective hook:
596
597 - **zle-line-init**: //zle-smkx//
598 - **zle-line-finish**: //zle-rmkx//
599
600
601 This is **required** so the keybindings set up by //grmlzshrc// work. The
602 reason for this is to turn the terminal into the right mode while zsh's line
603 editor (zle) is running. This enables us to query //terminfo// about escape
604 sequences for special keys and thus simplify and generalise our keybinding
605 section.
606
607
608 == SHELL FUNCTIONS ==
609 //grmlzshrc// comes with a wide array of defined shell functions to ease the
610 user's life.
611
612 : **855resolution()**
613 If 915resolution is available, issues a warning to the user to run it instead
614 to modify the resolution on intel graphics chipsets.
615
616 : **accessed()**
617 Lists files in current directory, which have been accessed within the
618 last N days. N is an integer to be passed as first and only argument.
619 If no argument is specified N is set to 1.
620
621 : **any()**
622 Lists processes matching given pattern.
623
624 : **asc()**
625 Login on the host provided as argument using autossh. Then reattach a GNU screen
626 session if a detached session is around or detach a currently attached screen or
627 else start a new screen.  This is especially useful for roadwarriors using GNU
628 screen and ssh.
629
630 : **bk()**
631 Simple backup management of a file or directory using standard unix programs.
632 The target file name is the original name plus a time stamp attached. Symlinks
633 and file attributes like mode, ownership and timestamps are preserved.
634
635 : **cdrecord()**
636 If the original cdrecord is not installed, issues a warning to the user to
637 use the wodim binary instead. Wodim is the debian fork of Joerg Schillings
638 cdrecord.
639
640 : **cdt()**
641 Creates a temporary directory using mktemp. Then changes current
642 working directory to it.
643
644 : **changed()**
645 Lists files in current directory, which have been changed within the
646 last N days. N is an integer to be passed as first and only argument.
647 If no argument is specified N is set to 1.
648
649 : **check_com()**
650 Returns true if given command exists either as program, function, alias,
651 builtin or reserved word. If the option -c is given, only returns true,
652 if command is a program.
653
654 : **checkhome()**
655 Changes directory to $HOME on first invocation of zsh. This is necessary on
656 Grml systems with autologin.
657
658 : **cl()**
659 Changes current directory to the one supplied by argument and lists the files
660 in it, including file names starting with ".".
661
662 : **dchange()**
663 Shows the changelog of given package in $PAGER.
664
665 : **dcopyright()**
666 Shows the copyright of given package in $PAGER.
667
668 : **debian2hd()**
669 Tells the user to use grml-debootstrap, if she wants to install debian to
670 harddisk.
671
672 : **deswap()**
673 A trick from $LINUX-KERNELSOURCE/Documentation/power/swsusp.txt. It brings
674 back interactive responsiveness after suspend, when the system is swapping
675 heavily.
676
677 : **dnews()**
678 Shows the NEWS file for the given package in $PAGER.
679
680 : **edalias()**
681 Edit given alias.
682
683 : **edfunc()**
684 Edit given shell function.
685
686 : **freload()**
687 Reloads an autoloadable shell function (See autoload in zshbuiltins(1)).
688
689 : **grml_vcs_info_toggle_colour()**
690 Toggles between coloured and uncoloured formats in vcs_info configuration.
691 This is useful with prompts that break if colour codes are in vcs_info
692 format expansions (like the `clint' prompt and every other prompt that
693 uses %v to expand the contents of `$vcs_into_msg_0_'). If you are using
694 customised vcs_info formats, you shouldn't be using this function, since
695 it will set all formats to grml's default values (either coloured or plain)
696 again.
697
698 : **hgdi()**
699 Use GNU diff with options -ubwd for mercurial.
700
701 : **hgstat()**
702 Displays diffstat between the revision given as argument and tip (no
703 argument means last revision).
704
705 : **hidiff()**
706 Outputs highlighted diff; needs highstring(1).
707
708 : **is4()**
709 Returns true, if zsh version is equal or greater than 4, else false.
710
711 : **is41()**
712 Returns true, if zsh version is equal or greater than 4.1, else false.
713
714 : **is42()**
715 Returns true, if zsh version is equal or greater than 4.2, else false.
716
717 : **is425()**
718 Returns true, if zsh version is equal or greater than 4.2.5, else false.
719
720 : **is43()**
721 Returns true, if zsh version is equal or greater than 4.3, else false.
722
723 : **is433()**
724 Returns true, if zsh version is equal or greater than 4.3.3, else false.
725
726 : **isdarwin()**
727 Returns true, if running on darwin, else false.
728
729 : **isfreebsd()**
730 Returns true, if running on FreeBSD, else false.
731
732 : **isgrml()**
733 Returns true, if running on a grml system, else false.
734
735 : **isgrmlcd()**
736 Returns true, if running on a grml system from a live cd, else false.
737
738 : **isgrmlsmall()**
739 Returns true, if run on grml-small, else false.
740
741 : **islinux()**
742 Returns true, if running on Linux, else false.
743
744 : **iso2utf()**
745 Changes every occurrence of the string iso885915 or ISO885915 in
746 environment variables to UTF-8.
747
748 : **isopenbsd()**
749 Returns true, if running on OpenBSD, else false.
750
751 : **isutfenv()**
752 Returns true, if run within an utf environment, else false.
753
754 : **mkcd()**
755 Creates directory including parent directories, if necessary. Then changes
756 current working directory to it.
757
758 : **modified()**
759 Lists files in current directory, which have been modified within the
760 last N days. N is an integer to be passed as first and only argument.
761 If no argument is specified N is set to 1.
762
763 : **nt()**
764 A helper function for the "e" glob qualifier to list all files newer
765 than a reference file.
766 \
767 Example usages:
768 ```
769 % NTREF=/reference/file
770 % ls -l *(e:nt:)
771 % # Inline:
772 % ls -l *(e:'nt /reference/file':)
773 ```
774
775 : **profile()**
776 Runs a command in zsh with profiling enabled (See startup variable
777 ZSH_PROFILE_RC above).
778
779 : **salias()**
780 Creates an alias whith sudo prepended, if $EUID is not zero. Run "salias -h"
781 for details. See also xunfunction() below.
782
783 : **simple-extract()**
784 Tries to uncompress/unpack given files with the appropriate programs. If an URI
785 starting with https, http or ftp is provided simple-extract tries to download
786 and then uncompress/unpack the file. The choice is made along the filename
787 ending. simple-extract will not delete the original archive (even on .gz,.bz2 or
788 .xz) unless you use the '-d' option.
789
790 : **sll()**
791 Prints details of symlinks given as arguments.
792
793 : **ssl-cert-fingerprints**
794 Prints the SHA512, SHA256, SHA1 and MD5 digest of a x509 certificate.
795 First and only parameter must be a file containing a certificate. Use
796 /dev/stdin as file if you want to pipe a certificate to these
797 functions.
798
799 : **ssl-cert-info**
800 Prints all information of a x509 certificate including the SHA512,
801 SHA256, SHA1 and MD5 digests. First and only parameter must be a file
802 containing a certificate. Use /dev/stdin as file if you want to pipe a
803 certificate to this function.
804
805 : **ssl-cert-sha512(), ssl-cert-sha256(), ssl-cert-sha1(), ssl-cert-md5()**
806 Prints the SHA512, SHA256, SHA1 respective MD5 digest of a x509
807 certificate. First and only parameter must be a file containing a
808 certificate. Use /dev/stdin as file if you want to pipe a certificate
809 to this function.
810
811 : **Start(), Restart(), Stop(), Force-Reload(), Reload()**
812 Functions for controlling daemons.
813 ```
814 Example usage:
815 % Restart ssh
816 ```
817
818 : **trans()**
819 Translates a word from german to english (-D) or vice versa (-E).
820
821 : **uchange()**
822 Shows upstreams changelog of a given package in $PAGER.
823
824 : **uprint()**
825 Works around the "print -l ${(u)foo}"-limitation on zsh older than 4.2.
826
827 : **utf2iso()**
828 Changes every occurrence of the string UTF-8 or utf-8 in environment
829 variables to iso885915.
830
831 : **vim()**
832 Wrapper for vim(1). It tries to set the title and hands vim the environment
833 variable VIM_OPTIONS on the command line. So the user may define command
834 line options, she always wants, in her .zshrc.local.
835
836 : **whatwhen()**
837 Searches the history for a given pattern and lists the results by date.
838 The first argument is the search pattern. The second and third ones are
839 optional and denote a search range (default: -100).
840
841 : **xcat()**
842 Tries to cat(1) file(s) given as parameter(s). Always returns true.
843 See also xunfunction() below.
844
845 : **xsource()**
846 Tries to source the file(s) given as parameter(s). Always returns true.
847 See zshbuiltins(1) for a detailed description of the source command.
848 See also xunfunction() below.
849
850 : **xtrename()**
851 Changes the title of xterm window from within screen(1). Run without
852 arguments for details.
853
854 : **xunfunction()**
855 Removes the functions salias, xcat, xsource, xunfunction and zrcautoload.
856
857 : **zrcautoload()**
858 Wrapper around the autoload builtin. Loads the definitions of functions
859 from the file given as argument. Searches $fpath for the file. See also
860 xunfunction() above.
861
862 : **zrclocal()**
863 Sources /etc/zsh/zshrc.local and ${HOME}/.zshrc.local. These are the files
864 where own modifications should go. See also zshbuiltins(1) for a description
865 of the source command.
866
867
868 == ALIASES ==
869 //grmlzshrc// comes with a wide array of predefined aliases to ease the user's
870 life. A few aliases (like those involving //grep// or //ls//) use the option
871 //--color=auto// for colourizing output. That option is part of **GNU**
872 implementations of these tools, and will only be used if such an implementation
873 is detected.
874
875 : **acp** (//apt-cache policy//)
876 With no arguments prints out the priorities of each source. If a package name
877 is given, it displays detailed information about the priority selection of the
878 package.
879
880 : **acs** (//apt-cache search//)
881 Searches debian package lists for the regular expression provided as argument.
882 The search includes package names and descriptions. Prints out name and short
883 description of matching packages.
884
885 : **acsh** (//apt-cache show//)
886 Shows the package records for the packages provided as arguments.
887
888 : **adg** (//apt-get dist-upgrade//)
889 Performs an upgrade of all installed packages. Also tries to automatically
890 handle changing dependencies with new versions of packages. As this may change
891 the install status of (or even remove) installed packages, it is potentially
892 dangerous to use dist-upgrade; invoked by sudo, if necessary.
893
894 : **ag** (//apt-get upgrade//)
895 Downloads and installs the newest versions of all packages currently installed
896 on the system. Under no circumstances are currently installed packages removed,
897 or packages not already installed retrieved and installed. New versions of
898 currently installed packages that cannot be upgraded without changing the install
899 status of another package will be left at their current version. An update must
900 be performed first (see au below); run by sudo, if necessary.
901
902 : **agi** (//apt-get install//)
903 Downloads and installs or upgrades the packages given on the command line.
904 If a hyphen is appended to the package name, the identified package will be
905 removed if it is installed. Similarly a plus sign can be used to designate a
906 package to install. This may be useful to override decisions made by apt-get's
907 conflict resolution system.
908 A specific version of a package can be selected for installation by following
909 the package name with an equals and the version of the package to select. This
910 will cause that version to be located and selected for install. Alternatively a
911 specific distribution can be selected by following the package name with a slash
912 and the version of the distribution or the Archive name (stable, testing, unstable).
913 Gets invoked by sudo, if user id is not 0.
914
915 : **ati** (//aptitude install//)
916 Aptitude is a terminal-based package manager with a command line mode similar to
917 apt-get (see agi above); invoked by sudo, if necessary.
918
919 : **au** (//apt-get update//)
920 Resynchronizes the package index files from their sources. The indexes of
921 available packages are fetched from the location(s) specified in
922 /etc/apt/sources.list. An update should always be performed before an
923 upgrade or dist-upgrade; run by sudo, if necessary.
924
925 : **da** (//du -sch//)
926 Prints the summarized disk usage of the arguments as well as a grand total
927 in human readable format.
928
929 : **dbp** (//dpkg-buildpackage//)
930 Builds binary or source packages from sources (See: dpkg-buildpackage(1)).
931
932 : **debs-by-size** (//grep-status -FStatus -sInstalled-Size,Package -n "install ok installed" | paste -sd "  \n" | sort -rn//)
933 Prints installed Packages sorted by size (descending).
934
935 : **dir** (//ls -lSrah//)
936 Lists files (including dot files) sorted by size (biggest last) in long and
937 human readable output format.
938
939 : **ge** (//grep-excuses//)
940 Searches the testing excuses files for a specific maintainer (See:
941 grep-excuses(1)).
942
943 : **grep** (//grep --color=auto//)
944 Shows grep output in nice colors, if available.
945
946 : **grml-version** (//cat /etc/grml_version//)
947 Prints version of running grml.
948
949 : **hbp** (//hg-buildpackage//)
950 Helper program to maintain Debian packages with mercurial.
951
952 : **http** (//python -m SimpleHTTPServer//)
953 Basic HTTP server implemented in python. Listens on port 8000/tcp and
954 serves current directory. Implements GET and HEAD methods.
955
956 : **insecscp** (//scp -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"//)
957 scp with possible man-in-the-middle attack enabled. This is convenient, if the targets
958 host key changes frequently, for example on virtualized test- or development-systems.
959 To be used only inside trusted networks, of course.
960
961 : **insecssh** (//ssh -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"//)
962 ssh with possible man-in-the-middle attack enabled
963 (for an explanation see insecscp above).
964
965 : **help-zshglob** (//H-Glob()//)
966 Runs the function H-Glob() to expand or explain wildcards.
967
968 : **j** (//jobs -l//)
969 Prints status of jobs in the current shell session in long format.
970
971 : **l** (//ls -l --color=auto//)
972 Lists files in long output format with indicator for filetype appended
973 to filename. If the terminal supports it, with colored output.
974
975 : **la** (//ls -la --color=auto//)
976 Lists files in long colored output format. Including file names
977 starting with ".".
978
979 : **lad** (//ls -d .*(/)//)
980 Lists the dot directories (not their contents) in current directory.
981
982 : **lh** (//ls -hAl --color=auto//)
983 Lists files in long and human readable output format in nice colors,
984 if available. Includes file names starting with "." except "." and
985 "..".
986
987 : **ll** (//ls -l --color=auto//)
988 Lists files in long colored output format.
989
990 : **llog** (//$PAGER /var/log/syslog//)
991 Opens syslog in pager.
992
993 : **ls** (//ls -C --color=auto//)
994 Lists directory, entries are listed by columns and an indicator for
995 file type is appended to each file name. Additionally the output is
996 colored, if the terminal supports it.
997
998 : **lsa** (//ls -a .*(.)//)
999 Lists dot files in current working directory.
1000
1001 : **lsbig** (//ls -flh *(.OL[1,10])//)
1002 Displays the ten biggest files (long and human readable output format).
1003
1004 : **lsd** (//ls -d *(/)//)
1005 Shows directories.
1006
1007 : **lse** (//ls -d *(/^F)//)
1008 Shows empty directories.
1009
1010 : **lsl** (//ls -l *(@)//)
1011 Lists symbolic links in current directory.
1012
1013 : **lsnew** (//ls -rl *(D.om[1,10])//)
1014 Displays the ten newest files (long output format).
1015
1016 : **lsnewdir** (//ls -rthdl *(/om[1,10]) .*(D/om[1,10])//)
1017 Displays the ten newest directories and ten newest .directories.
1018
1019 : **lsold** (//ls -rtlh *(D.om[1,10])//)
1020 Displays the ten oldest files (long output format).
1021
1022 : **lsolddir** (//ls -rthdl *(/Om[1,10]) .*(D/Om[1,10])//)
1023 Displays the ten oldest directories and ten oldest .directories.
1024
1025 : **lss** (//ls -l *(s,S,t)//)
1026 Lists files in current directory that have the setuid, setgid or sticky bit
1027 set.
1028
1029 : **lssmall** (//ls -Srl *(.oL[1,10])//)
1030 Displays the ten smallest files (long output format).
1031
1032 : **lsw** (//ls -ld *(R,W,X.^ND/)//)
1033 Displays all files which are world readable and/or world writable and/or
1034 world executable (long output format).
1035
1036 : **lsx** (//ls -l *(*)//)
1037 Lists only executable files.
1038
1039 : **mdstat** (//cat /proc/mdstat//)
1040 Lists all active md (i.e. linux software raid) devices with some information
1041 about them.
1042
1043 : **mq** (//hg -R $(readlink -f $(hg root)/.hg/patches)//)
1044 Executes the commands on the versioned patch queue from current repository.
1045
1046 : **rmcdir** (//'cd ..; rmdir $OLDPWD || cd $OLDPWD//)
1047 rmdir current working directory
1048
1049 : **screen** (//screen -c file//)
1050 If invoking user is root, starts screen session with /etc/grml/screenrc
1051 as config file. If invoked by a regular user and users .screenc does not exist,
1052 starts screen with /etc/grml/screenrc_grml config if it exists, else fallbacks
1053 to /etc/grml/screenrc.
1054
1055 : **su** (//sudo su//)
1056 If user is running a Grml live system, don't ask for any password, if she
1057 wants a root shell.
1058
1059 : **term2iso** (//echo 'Setting terminal to iso mode' ; print -n '\e%@'//)
1060 Sets mode from UTF-8 to ISO 2022 (See:
1061 http://www.cl.cam.ac.uk/~mgk25/unicode.html#term).
1062
1063 : **term2utf** (//echo 'Setting terminal to utf-8 mode'; print -n '\e%G'//)
1064 Sets mode from ISO 2022 to UTF-8 (See:
1065 http://www.cl.cam.ac.uk/~mgk25/unicode.html#term).
1066
1067 : **tlog** (//tail -f /var/log/syslog//)
1068 Prints syslog continuously (See tail(1)).
1069
1070 : **up** (//aptitude update ; aptitude safe-upgrade//)
1071 Performs a system update followed by a system upgrade using aptitude; run
1072 by sudo, if necessary. See au and ag above.
1073
1074 : **url-quote** (//autoload -U url-quote-magic ; zle -N self-insert url-quote-magic//)
1075 After calling, characters of URLs as typed get automatically escaped, if necessary, to
1076 protect them from the shell.
1077
1078 : **$(uname -r)-reboot** (//kexec -l --initrd=/boot/initrd.img-"$(uname -r)" --command-line=\"$(cat /proc/cmdline)\" /boot/vmlinuz-"$(uname -r)"//)
1079 Reboots using kexec(8) and thus reduces boot time by skipping hardware initialization of BIOS/firmware.
1080
1081 : **...** (//cd ../..///)
1082 Changes current directory two levels higher.
1083
1084
1085 = AUXILIARY FILES =
1086 This is a set of files, that - if they exist - can be used to customize the
1087 behaviour of //grmlzshrc//.
1088
1089 : **.zshrc.pre**
1090 Sourced at the very beginning of //grmlzshrc//. Among other things, it can
1091 be used to permantenly change //grmlzshrc//'s STARTUP VARIABLES (see above):
1092 \
1093 ```
1094 # show battery status in RPROMPT
1095 GRML_DISPLAY_BATTERY=1
1096 # always load the complete setup, even for root
1097 GRML_ALWAYS_LOAD_ALL=1
1098 ```
1099
1100 : **.zshrc.local**
1101 Sourced right before loading //grmlzshrc// is finished. There is a global
1102 version of this file (/etc/zsh/zshrc.local) which is sourced before the
1103 user-specific one.
1104
1105 : **.zdirs**
1106 Directory listing for persistent dirstack (see above).
1107
1108 : **.important_commands**
1109 List of commands, used by persistent history (see above).
1110
1111
1112 = INSTALLATION ON NON-DEBIAN SYSTEMS =
1113 On Debian systems (http://www.debian.org) - and possibly Ubuntu
1114 (http://www.ubuntu.com) and similar systems - it is very easy to get
1115 //grmlzshrc// via grml's .deb repositories.
1116
1117 On non-debian systems, that is not an option, but all is not lost:
1118 \
1119 ```
1120 % wget -O .zshrc http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
1121 ```
1122
1123 If you would also like to get separate function files (which you can put into
1124 your **$fpath**), you can browse and download them at:
1125
1126 http://git.grml.org/?p=grml-etc-core.git;a=tree;f=usr_share_grml/zsh;hb=HEAD
1127
1128 = ZSH REFCARD TAGS =
1129 If you read //grmlzshrc//'s code you may notice strange looking comments in
1130 it. These are there for a purpose. grml's zsh-refcard is automatically
1131 generated from the contents of the actual configuration file. However, we need
1132 a little extra information on which comments and what lines of code to take
1133 into account (and for what purpose).
1134
1135 Here is what they mean:
1136
1137 List of tags (comment types) used:
1138 : **#a#**
1139 Next line contains an important alias, that should be included in the
1140 grml-zsh-refcard. (placement tag: @@INSERT-aliases@@)
1141
1142 : **#f#**
1143 Next line contains the beginning of an important function. (placement
1144 tag: @@INSERT-functions@@)
1145
1146 : **#v#**
1147 Next line contains an important variable. (placement tag:
1148 @@INSERT-variables@@)
1149
1150 : **#k#**
1151 Next line contains an important keybinding. (placement tag:
1152 @@INSERT-keybindings@@)
1153
1154 : **#d#**
1155 Hashed directories list generation: //start//: denotes the start of a list of
1156 'hash -d' definitions. //end//: denotes its end. (placement tag:
1157 @@INSERT-hasheddirs@@)
1158
1159 : **#A#**
1160 Abbreviation expansion list generation: //start//: denotes the beginning of
1161 abbreviations. //end//: denotes their end.
1162 \
1163 Lines within this section that end in '#d .*' provide extra documentation to
1164 be included in the refcard. (placement tag: @@INSERT-abbrev@@)
1165
1166 : **#m#**
1167 This tag allows you to manually generate refcard entries for code lines that
1168 are hard/impossible to parse.
1169 Example:
1170 \
1171 ```
1172 #m# k ESC-h Call the run-help function
1173 ```
1174 \
1175 That would add a refcard entry in the keybindings table for 'ESC-h' with the
1176 given comment.
1177 \
1178 So the syntax is: #m# <section> <argument> <comment>
1179
1180 : **#o#**
1181 This tag lets you insert entries to the 'other' hash. Generally, this should
1182 not be used. It is there for things that cannot be done easily in another way.
1183 (placement tag: @@INSERT-other-foobar@@)
1184
1185
1186 All of these tags (except for m and o) take two arguments, the first
1187 within the tag, the other after the tag:
1188
1189 #<tag><section># <comment>
1190
1191 Where <section> is really just a number, which are defined by the @secmap
1192 array on top of 'genrefcard.pl'. The reason for numbers instead of names is,
1193 that for the reader, the tag should not differ much from a regular comment.
1194 For zsh, it is a regular comment indeed. The numbers have got the following
1195 meanings:
1196
1197 : **0**
1198 //default//
1199
1200 : **1**
1201 //system//
1202
1203 : **2**
1204 //user//
1205
1206 : **3**
1207 //debian//
1208
1209 : **4**
1210 //search//
1211
1212 : **5**
1213 //shortcuts//
1214
1215 : **6**
1216 //services//
1217
1218
1219 So, the following will add an entry to the 'functions' table in the 'system'
1220 section, with a (hopefully) descriptive comment:
1221 \
1222 ```
1223 #f1# Edit an alias via zle
1224 edalias() {
1225 ```
1226 \
1227 It will then show up in the @@INSERT-aliases-system@@ replacement tag that can
1228 be found in 'grml-zsh-refcard.tex.in'. If the section number is omitted, the
1229 'default' section is assumed. Furthermore, in 'grml-zsh-refcard.tex.in'
1230 @@INSERT-aliases@@ is exactly the same as @@INSERT-aliases-default@@. If you
1231 want a list of **all** aliases, for example, use @@INSERT-aliases-all@@.
1232
1233
1234 = CONTRIBUTING =
1235 If you want to help to improve grml's zsh setup, clone the grml-etc-core
1236 repository from git.grml.org:
1237 \
1238 ``` % git clone git://git.grml.org/grml-etc-core.git
1239
1240 Make your changes, commit them; use '**git format-patch**' to create a series
1241 of patches and send those to the following address via '**git send-email**':
1242 \
1243 ``` grml-etc-core@grml.org
1244
1245 Doing so makes sure the right people get your patches for review and
1246 possibly inclusion.
1247
1248
1249 = STATUS =
1250 This manual page is the **reference** manual for //grmlzshrc//.
1251
1252 That means that in contrast to the existing refcard it should document **every**
1253 aspect of the setup.
1254
1255 This manual is currently not complete. If you want to help improving it, visit
1256 the following pages:
1257
1258 http://wiki.grml.org/doku.php?id=zshrcmanual
1259
1260 http://lists.mur.at/pipermail/grml/2009-August/004609.html
1261
1262 Contributions are highly welcome.
1263
1264
1265 = AUTHORS =
1266 This manpage was written by Frank Terbeck <ft@grml.org>, Joerg Woelke
1267 <joewoe@fsmail.de>, Maurice McCarthy <manselton@googlemail.com> and Axel
1268 Beckert <abe@deuxchevaux.org>.
1269
1270
1271 = COPYRIGHT =
1272 Copyright (c) 2009-2013 Grml project <http://grml.org>
1273
1274 This manpage is distributed under the terms of the GPL version 2.
1275
1276 Most parts of grml's zshrc are distributed under the terms of GPL v2, too,
1277 except for **accept-line()** which are distributed under the same conditions
1278 as zsh itself (which is BSD-like).