grmlzshrc.t2t: Options chapter.
[grml-etc-core.git] / doc / grmlzshrc.t2t
1 GRMLZSHRC
2
3 August, 2009
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
47 = FEATURE DESCRIPTION =
48 This is an in depth description of non-standard features implemented by
49 //grmlzshrc//.
50
51 == DIRSTACK HANDLING ==
52 The dirstack in //grmlzshrc// has a persistent nature. It is stored into a
53 file each time zsh's working directory is changed. That file can be configured
54 via the **DIRSTACKFILE** variable and it defaults to **~/.zdirs**. The
55 **DIRSTACKSIZE** variable defaults to **20** in this setup.
56
57 The **DIRSTACKFILE** is loaded each time zsh starts, therefore freshly started
58 zshs inherit the dirstack of the zsh that most recently updated
59 **DIRSTACKFILE**.
60
61 == DIRECTORY BASED PROFILES ==
62 If you want certain settings to be active in certain directories (and
63 automatically switch back and forth between them), this is what you want.
64 \
65 ```
66 zstyle ':chpwd:profiles:/usr/src/grml(|/|/*)'   profile grml
67 zstyle ':chpwd:profiles:/usr/src/debian(|/|/*)' profile debian
68 ```
69
70 When that's done and you enter a directory that matches the pattern
71 in the third part of the context, a function called chpwd_profile_grml,
72 for example, is called (if it exists).
73
74 If no pattern matches (read: no profile is detected) the profile is
75 set to 'default', which means chpwd_profile_default is attempted to
76 be called.
77
78 A word about the context (the ':chpwd:profiles:*' stuff in the zstyle
79 command) which is used: The third part in the context is matched against
80 **$PWD**. That's why using a pattern such as /foo/bar(|/|/*) makes sense.
81 Because that way the profile is detected for all these values of **$PWD**:
82 \
83 ```
84 /foo/bar
85 /foo/bar/
86 /foo/bar/baz
87 ```
88
89 So, if you want to make double damn sure a profile works in /foo/bar
90 and everywhere deeper in that tree, just use (|/|/*) and be happy.
91
92 The name of the detected profile will be available in a variable called
93 'profile' in your functions. You don't need to do anything, it'll just
94 be there.
95
96 Then there is the parameter **$CHPWD_PROFILE** which is set to the profile,
97 that was active up to now. That way you can avoid running code for a
98 profile that is already active, by running code such as the following
99 at the start of your function:
100 \
101 ```
102 function chpwd_profile_grml() {
103     [[ ${profile} == ${CHPWD_PROFILE} ]] && return 1
104     ...
105 }
106 ```
107
108 The initial value for **$CHPWD_PROFILE** is 'default'.
109
110 === Signaling availabily/profile changes ===
111
112 If you use this feature and need to know whether it is active in your
113 current shell, there are several ways to do that. Here are two simple
114 ways:
115
116 a) If knowing if the profiles feature is active when zsh starts is
117    good enough for you, you can put the following snippet into your
118    //.zshrc.local//:
119 \
120 ```
121 (( ${+functions[chpwd_profiles]} )) &&
122     print "directory profiles active"
123 ```
124
125 b) If that is not good enough, and you would prefer to be notified
126    whenever a profile changes, you can solve that by making sure you
127    start **every** profile function you create like this:
128 \
129 ```
130 function chpwd_profile_myprofilename() {
131     [[ ${profile} == ${CHPWD_PROFILE} ]] && return 1
132     print "chpwd(): Switching to profile: $profile"
133   ...
134 }
135 ```
136
137 That makes sure you only get notified if a profile is **changed**,
138 not everytime you change directory.
139
140 === Version requirement ===
141 This feature requires zsh //4.3.3// or newer.
142
143
144 == ACCEPTLINE WRAPPER ==
145 The //accept-line// wiget is the one that is taking action when the **return**
146 key is hit. //grmlzshrc// uses a wrapper around that widget, which adds new
147 functionality.
148
149 This wrapper is configured via styles. That means, you issue commands, that look
150 like:
151 \
152 ```
153 zstyle 'context' style value
154 ```
155
156 The context namespace, that we are using is 'acceptline'. That means, the actual
157 context for your commands look like: **':acceptline:<subcontext>'**.
158
159 Where **<subcontext>** is one of: **default**, **normal**, **force**, **misc**
160 or **empty**.
161
162
163 === Recognized Contexts ===
164 : **default**
165 This is the value, the context is initialized with.
166 The //compwarnfmt and //rehash// styles are looked up in this context.
167
168 : **normal**
169 If the first word in the command line is either a command, alias, function,
170 builtin or reserved word, you are in this context.
171
172 : **force**
173 This is the context, that is used if you hit enter again, after being warned
174 about the existence of a _completion for the non-existing command you
175 entered.
176
177 : **empty**
178 This is the context, you are in if the command line is empty or only
179 consists of whitespace.
180
181 : **misc**
182 This context is in effect, if you entered something that does not match any
183 of the above. (e.g.: variable assignments).
184
185
186 === Available Styles ===
187 : **nocompwarn**
188 If you set this style to true, the warning about non existent commands,
189 for which completions exist will not be issued. (Default: **false**)
190
191 : **compwarnfmt**
192 The message, that is displayed to warn about the _completion issue.
193 (default: **'%c will not execute and completion %f exists.'**)
194 '%c' is replaced by the command name, '%f' by the completion's name.
195
196 : **rehash**
197 If this is set, we'll force rehashing, if appropriate. (Defaults to
198 **true** in //grmlzshrc//).
199
200 : **actions**
201 This can be a list of wigdets to call in a given context. If you need a
202 specific order for these to be called, name them accordingly. The default value
203 is an **empty list**.
204
205 : **default_action**
206 The name of a widget, that is called after the widgets from 'actions'.
207 By default, this will be '.accept-line' (which is the built-in accept-line
208 widget).
209
210 : **call_default**
211 If true in the current context, call the widget in the 'default_action'
212 style. (The default is **true** in all contexts.)
213
214
215 == PROMPT ==
216
217
218 == GNU/SCREEN STATUS SETTING ==
219 //grmlzshrc// sets screen's hardstatus lines to the currently running command
220 or **'zsh'** if the shell is idling at its prompt. If the current working
221 directory is inside a repository unter version control, screen status is set
222 to: **'zsh: <repository name>'** via zsh's vcs_info.
223
224
225 == PERSISTENT HISTORY ==
226 If you got commands you consider important enough to be included in every
227 shell's history, you can put them into ~/.important_commands and they will be
228 available via the usual history lookup widgets.
229
230
231 = REFERENCE =
232 == OPTIONS ==
233 Apart from zsh's default options, //grmlzshrc// sets some options
234 that change the behaviour of zsh. Options that change Z-shell's default
235 settings are marked by <grml>. But note, that zsh's defaults vary depending
236 on its emulation mode (csh, ksh, sh, or zsh). For details, see zshoptions(1).
237
238 : **append_history**
239 Zsh sessions, that use //grmlzshrc//, will append their history list to the
240 history file, rather than replace it. Thus, multiple parallel zsh sessions
241 will all have the new entries from their history lists added to the history
242 file, in the order that they exit. The file will still be periodically
243 re-written to trim it when the number of lines grows 20% beyond the value
244 specified by $SAVEHIST.
245
246 : **auto_cd** <grml>
247 If a command is issued that can't be executed as a normal command, and the
248 command is the name of a directory, perform the cd command to that directory.
249
250 : **auto_pushd** <grml>
251 Make cd push the old directory onto the directory stack.
252
253 : **completeinword** <grml>
254 If the cursor is inside a word, completion is done from both ends;
255 instead of moving the cursor to the end of the word first and starting
256 from there.
257
258 : **extended_glob** <grml>
259 Treat the '#', '~' and '^' characters as active globbing pattern characters.
260
261 : **extended_history** <grml>
262 Save each command's beginning timestamp (in seconds since the epoch) and the
263 duration (in seconds) to the history file.
264
265 : **hash_list_all**
266 Whenever a command completion is attempted, make sure the entire command
267 path is hashed first. This makes the first completion slower.
268
269 : **histignorealldups** <grml>
270 If a new command line being added to the history list duplicates an
271 older one, the older command is removed from the list, even if it is
272 not the previous event.
273
274 : **histignorespace** <grml>
275 Remove command lines from the history list when the first character on
276 the line is a space, or when one of the expanded aliases contains a
277 leading space. Note that the command lingers in the internal history
278 until the next command is entered before it vanishes.
279
280 : **longlistjobs** <grml>
281 List jobs in long format by default.
282
283 : **nobeep** <grml>
284 Avoid to beep on errors in zsh command line editing (zle).
285
286 : **noglobdots**
287 A wildcard character never matches a leading '.'.
288
289 : **nohup** <grml>
290 Do not send the hangup signal (HUP:1) to running jobs when the shell exits.
291
292 : **nonomatch** <grml>
293 If a pattern for filename generation has no matches, do not print an error
294 and leave it unchanged in the argument list. This also applies to file
295 expansion of an initial `~' or `='.
296
297 : **notify**
298 Report the status of background jobs immediately, rather than waiting until
299 just before printing a prompt.
300
301 : **pushd_ignore_dups** <grml>
302 Don't push multiple copies of the same directory onto the directory stack.
303
304 : **share_history** <grml>
305 As each line is added to the history file, it is checked to see if anything
306 else was written out by another shell, and if so it is included in the
307 history of the current shell too. Using !-style history, the commands from
308 the other sessions will not appear in the history list unless you explicitly
309 type the "history" command. This option is activated for zsh versions >= 4,
310 only.
311
312
313 == KEYBINDINGS ==
314 Apart from zsh's default key bindings, //grmlzshrc// comes with its own set of
315 key bindings. Note that bindings like **ESC-e** can also be typed as **ALT-e**
316 on PC keyboards.
317
318 : **ESC-e**
319 Edit the current command buffer in your favourite editor.
320
321 : **ESC-v**
322 Deletes a word left of the cursor; seeing '/' as additional word separator.
323
324 : **CTRL-x-1**
325 Jump right after the first word.
326
327 : **CTRL-x-p**
328 Searches the last occurence of string before the cursor in the command history.
329
330 : **CTRL-z**
331 Brings a job, which got suspended with CTRL-z back to foreground.
332
333
334 == SHELL FUNCTIONS ==
335 //grmlzshrc// comes with a wide array of defined shell functions to ease the
336 user's life.
337
338 : **2html()**
339 Converts plaintext files to HTML using vim. The output is written to
340 <filename>.html.
341
342 : **855resolution()**
343 If 915resolution is available, issues a warning to the user to run it instead
344 to modify the resolution on intel graphics chipsets.
345
346 : **agoogle()**
347 Searches for USENET postings from authors using google groups.
348
349 : **allulimit()**
350 Sets all ulimit values to "unlimited".
351
352 : **ansi-colors()**
353 Prints a colored table of available ansi color codes (to be used in escape
354 sequences) and the colors they represent.
355
356 : **aoeu(), asdf(), uiae()**
357 Pressing the 'asdf' keys toggles between dvorak or neon and us keyboard
358 layout.
359
360 : **audioburn()**
361 Burns the files in ~/ripps (see audiorip() below) to an audio CD.
362 Then prompts the user if she wants to remove that directory. You might need
363 to tell audioburn which cdrom device to use like:
364 "DEVICE=/dev/cdrom audioburn"
365
366 : **audiorip()**
367 Creates directory ~/ripps, if it does not exist. Then rips audio CD into
368 it. Then prompts the user if she wants to burn a audio CD with audioburn()
369 (see above). You might need to tell audiorip which cdrom device to use like:
370 "DEVICE=/dev/cdrom audioburn"
371
372 : **bk()**
373 Simple backup of a file or directory using cp(1). The target file name is the
374 original name plus a time stamp attached. Symlinks and file attributes like mode,
375 ownership and timestamps are preserved.
376
377 : **brltty()**
378 The brltty(1) program provides a braille display, so a blind person can access
379 the console screen. This wrapper function works around problems with some
380 environments (f. e. utf8).
381
382 : **cdrecord()**
383 If the original cdrecord is not installed, issues a warning to the user to
384 use the wodim binary instead. Wodim is the debian fork of Joerg Schillings
385 cdrecord.
386
387 : **cl()**
388 Changes current directory to the one supplied by argument and lists the files
389 in it, including file names starting with ".".
390
391 : **debbug()**
392 Searches the Debian bug tracking system (bugs.debian.org) for Bug numbers,
393 email addresses of submitters or any string given on the command line.
394
395 : **debbugm()**
396 Shows bug report for debian given by number in mailbox format.
397
398 : **debian2hd()**
399 Tells the user to use grml-debootstrap, if she wants to install debian to
400 harddisk.
401
402 : **dirspace()**
403 Shows the disk usage of the directories given in human readable format;
404 defaults to $path.
405
406 : **disassemble()**
407 Translates C source code to assembly and ouputs both.
408
409 : **doc()**
410 Takes packagename as argument. Sets current working directory to
411 /usr/share/doc/<packagename> and prints out a directory listing.
412
413 : **fir()**
414 Opens given URL with Firefox (Iceweasel on Debian). If there is already an
415 instance of firefox running, attaches to the first window found and opens the
416 URL in a new tab (this even works across an ssh session).
417
418 : **fluxkey-change()**
419 Switches the key combinations for changing current workspace under fluxbox(1)
420 from Alt-[0-9] to Alt-F[0-9] and vice versa by rewriting $HOME/.fluxbox/keys.
421 Requires the window manager to reread configuration to take effect.
422
423 : **genthumbs()**
424 A simple thumbnails generator. Resizes images (i. e. files that end in ".jpg",
425 ".jpeg", ".gif" or ".png") to 100x200. Output files are named "thumb-<original
426 filename>". Creates an index.html with title "Images" showing the
427 thumbnails as clickable links to the respective original file.
428 //Warning:// On start genthumbs() silently removes a possibly existing "index.html"
429 and all files and/or directories beginning with "thumb-" in current directory!
430
431 : **getair()**
432 Tries to download, unpack and run AIR (imaging software) version 1.2.8.
433
434 : **getgizmo()**
435 Tries to download and install Gizmo (VoIP software) for Debian.
436
437 : **getskype()**
438 Tries to download and install Skype (VoIP software) for Debian.
439
440 : **getskypebeta()**
441 Downloads and installs newer version of Skype.
442
443 : **getxlite()**
444 Tries to download and unpack X-lite (VoIP software) from counterpath.com into
445 ~/tmp.
446
447 : **git-get-diff()**
448 Opens a specific git commitdiff from kernel.org in default browser. Tree is
449 chosen by the environment variable GITTREE which defaults to Linus Torvalds'
450 kernel tree.
451
452 : **git-get-commit()**
453 Opens a specific git commit from kernel.org in default browser. The tree to
454 fetch from is controlled by the environment variable GITTREE which defaults
455 to Linus Torvalds' kernel tree.
456
457 : **git-get-plaindiff()**
458 Fetches specific git diff from kernel.org. The tree is controlled by the
459 environment variable GITTREE which defaults to Linus Torvalds' kernel tree.
460
461 : **greph()**
462 Searches the zsh command history for a regular expression.
463
464 : **hex()**
465 Prints the hexadecimal representation of the number supplied as argument
466 (base ten only).
467
468 : **hidiff()**
469 Outputs highlighted diff; needs highstring(1).
470
471 : **is4()**
472 Returns true, if zsh version is equal or greater than 4, else false.
473
474 : **is41()**
475 Returns true, if zsh version is equal or greater than 4.1, else false.
476
477 : **is42()**
478 Returns true, if zsh version is equal or greater than 4.2, else false.
479
480 : **is425()**
481 Returns true, if zsh version is equal or greater than 4.2.5, else false.
482
483 : **is43()**
484 Returns true, if zsh version is equal or greater than 4.3, else false.
485
486 : **is433()**
487 Returns true, if zsh version is equal or greater than 4.3.3, else false.
488
489 : **isdarwin()**
490 Returns true, if running on darwin, else false.
491
492 : **isgrml()**
493 Returns true, if running on a grml system, else false.
494
495 : **isgrmlcd()**
496 Returns true, if running on a grml system from a live cd, else false.
497
498 : **isgrmlsmall()**
499 Returns true, if run on grml-small, else false.
500
501 : **isutfenv()**
502 Returns true, if run within an utf environment, else false.
503
504 : **lcheck()**
505 Lists libraries that define the symbol containing the string given as
506 parameter.
507
508 : **limg()**
509 Lists images (i. e. files ending with ".jpg", ".gif" or ".png") in current
510 directory.
511
512 : **mcd()**
513 Creates directory including parent directories, if necessary. Then changes
514 current working directory to it.
515
516 : **minimal-shell()**
517 Spawns a absolute minimal Korn shell. It references no files in /usr, so
518 that file system can be unmounted.
519
520 : **mkaudiocd()**
521 Renames all mp3 files in ~/ripps (see audiorip above) to lowercase and
522 replaces spaces in file names with underscores. Then mkaudiocd()
523 normalizes the files and recodes them to WAV.
524
525 : **mkiso()**
526 Creates an iso9660 filesystem image with Rockridge and Joliet extensions
527 enabled using mkisofs(8). Prompts the user for volume name, filename and
528 target directory.
529
530 : **mmake()**
531 Runs "make install" and logs the output under ~/.errorlogs/; useful for
532 a clean deinstall later.
533
534 : **ogg2mp3_192()**
535 Recodes an ogg file to mp3 with a bitrate of 192.
536
537 : **peval()**
538 Evaluates a perl expression; useful as command line
539 calculator, therefore also available as "calc".
540
541 : **plap()**
542 Lists all occurrences of the string given as argument in current $PATH.
543
544 : **purge()**
545 Removes typical temporary files (i. e. files like "*~", ".*~", "#*#", "*.o",
546 "a.out", "*.core", "*.cmo", "*.cmi" and ".*.swp") from current directory.
547 Asks for confirmation.
548
549 : **readme()**
550 Opens all README-like files in current working directory with the program
551 defined in the $PAGER environment variable.
552
553 : **refunc()**
554 Reloads functions given as parameters.
555
556 : **regcheck()**
557 Checks whether a regular expression (first parameter) matches a string
558 (second parameter) using perl.
559
560 : **selhist()**
561 Greps the history for the string provided as parameter and shows the numbered
562 findings in default pager. On exit of the pager the user is prompted for a
563 number. The shells readline buffer is then filled with the corresponding
564 command line.
565
566 : **show-archive()**
567 Lists the contents of a (compressed) archive with the appropriate programs.
568 The choice is made along the filename extension.
569
570 : **shtar()**
571 Lists the content of a gzipped tar archive in default pager.
572
573 : **shzip()**
574 Shows the content of a zip archive in default pager.
575
576 : **simple-extract()**
577 Tries to uncompress/unpack given file with the appropriate programs. The
578 choice is made along the filename ending.
579
580 : **slow_print()**
581 Prints the arguments slowly by sleeping 0.08 seconds between each character.
582
583 : **smartcompress()**
584 Compresses/archives the file given as first parameter. Takes an optional
585 second argument, which denotes the compression/archive type as typical
586 filename extension; defaults to "tar.gz".
587
588 : **smartindent()**
589 Indents C source code files given; uses Kernighan & Ritchie style.
590
591 : **sshot()**
592 Creates directory named shots in user's home directory, if it does not yet
593 exist and changes current working directory to it. Then sleeps 5 seconds,
594 so you have plenty of time to switch desktops/windows. Then makes a screenshot
595 of the current desktop. The result is stored in ~/shots to a timestamped
596 jpg file.
597
598 : **startx()**
599 Initializes an X session using startx(1) if /etc/X11/xorg.conf exists, else
600 issues a Warning to use the grml-x(1) script. Can be overridden by using
601 /usr/bin/startx directly.
602
603 : **status()**
604 Shows some information about current system status.
605
606 : **udiff()**
607 Makes a unified diff of the command line arguments trying hard to find a
608 smaller set of changes. Descends recursively into subdirectories. Ignores
609 hows some information about current status.
610
611 : **urlencode()**
612 Takes a string as its first argument and prints it RFC 2396 URL encoded to
613 standard out.
614
615 : **viless()**
616 Vim as pager.
617
618 : **vim()**
619 Wrapper for vim(1). It tries to set the title and hands vim the environment
620 variable VIM_OPTIONS on the command line. So the user may define command
621 line options, she always wants, in her .zshrc.local.
622
623 : **vman()**
624 Use vim(1) as manpage reader.
625
626 : **xinit()**
627 Initializes an X session using xinit(1) if /etc/X11/xorg.conf exists, else
628 issues a Warning to use the grml-x(1) script. Can be overridden by using
629 /usr/bin/xinit directly.
630
631 : **zg()**
632 Search for patterns in grml's zshrc using perl. zg takes no or exactly one
633 option plus a non empty pattern. Run zg without any arguments for a listing
634 of available command line switches. For a zshrc not in /etc/zsh, set the
635 GRML_ZSHRC environment variable.
636
637
638 == ALIASES ==
639 //grmlzshrc// comes with a wide array of predefined aliases to ease the user's
640 life. A few aliases (like those involving //grep// or //ls//) use the option
641 //--color=auto// for colourizing output. That option is part of **GNU**
642 implementations of these tools, and will only be used if such an implementation
643 is detected.
644
645 : **acp** (//apt-cache policy//)
646 With no arguments prints out the priorities of each source. If a package name
647 is given, it displays detailed information about the priority selection of the
648 package.
649
650 : **acs** (//apt-cache search//)
651 Searches debian package lists for the regular expression provided as argument.
652 The search includes package names and descriptions. Prints out name and short
653 description of matching packages.
654
655 : **acsh** (//apt-cache show//)
656 Shows the package records for the packages provided as arguments.
657
658 : **adg** (//apt-get dist-upgrade//)
659 Performs an upgrade of all installed packages. Also tries to automatically
660 handle changing dependencies with new versions of packages. As this may change
661 the install status of (or even remove) installed packages, it is potentially
662 dangerous to use dist-upgrade; invoked by sudo, if necessary.
663
664 : **ag** (//apt-get upgrade//)
665 Downloads and installs the newest versions of all packages currently installed
666 on the system. Under no circumstances are currently installed packages removed,
667 or packages not already installed retrieved and installed. New versions of
668 currently installed packages that cannot be upgraded without changing the install
669 status of another package will be left at their current version. An update must
670 be performed first (see au below); run by sudo, if necessary.
671
672 : **agi** (//apt-get install//)
673 Downloads and installs or upgrades the packages given on the command line.
674 If a hyphen is appended to the package name, the identified package will be
675 removed if it is installed. Similarly a plus sign can be used to designate a
676 package to install. This may be useful to override decisions made by apt-get's
677 conflict resolution system.
678 A specific version of a package can be selected for installation by following
679 the package name with an equals and the version of the package to select. This
680 will cause that version to be located and selected for install. Alternatively a
681 specific distribution can be selected by following the package name with a slash
682 and the version of the distribution or the Archive name (stable, testing, unstable).
683 Gets invoked by sudo, if user id is not 0.
684
685 : **ati** (//aptitude install//)
686 Aptitude is a terminal-based package manager with a command line mode similar to
687 apt-get (see agi above); invoked by sudo, if necessary.
688
689 : **au** (//apt-get update//)
690 Resynchronizes the package index files from their sources. The indexes of
691 available packages are fetched from the location(s) specified in
692 /etc/apt/sources.list. An update should always be performed before an
693 upgrade or dist-upgrade; run by sudo, if necessary.
694
695 : **calc** (//peval//)
696 Evaluates a perl expression (see peval() above); useful as a command line
697 calculator.
698
699 : **CH** (//./configure --help//)
700 Lists available compilation options for building program from source.
701
702 : **cmplayer** (//mplayer -vo fbdev//)
703 Video player with framebuffer as video output device, so you can watch
704 videos on a virtual tty. Hint: Using fbdev2 allows you to use the shell
705 while watching a movie.
706
707 : **CO** (//./configure//)
708 Prepares compilation for building program from source.
709
710 : **da** (//du -sch//)
711 Prints the summarized disk usage of the arguments as well as a grand total
712 in human readable format.
713
714 : **default** (//echo -en [ escape sequence ]//)
715 Sets font of xterm to "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-15"
716 using escape sequence.
717
718 : **dir** (//ls -lSrah//)
719 Lists files (including dot files) sorted by size (biggest last) in long and
720 human readable output format.
721
722 : **fblinks** (//links2 -driver fb//)
723 A Web browser on the framebuffer device. So you can browse images and click
724 links on the virtual tty.
725
726 : **fbmplayer** (//mplayer -vo fbdev -fs -zoom//)
727 Fullscreen Video player with the framebuffer as video output device. So you
728 can watch videos on a virtual tty.
729
730 : **g** (//git//)
731 Revision control system by Linus Torvalds.
732
733 : **grep** (//grep --color=auto//)
734 Shows grep output in nice colors, if available.
735
736 : **GREP** (//grep -i --color=auto//)
737 Case insensitive grep with colored output.
738
739 : **grml-rebuildfstab** (//rebuildfstab -v -r -config//)
740 Scans for new devices and updates /etc/fstab according to the findings.
741
742 : **grml-version** (//cat /etc/grml_version//)
743 Prints version of running grml.
744
745 : **http** (//python -m SimpleHTTPServer//)
746 Basic HTTP server implemented in python. Listens on port 8000/tcp and
747 serves current directory. Implements GET and HEAD methods.
748
749 : **insecscp** (//scp -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"//)
750 scp with possible man-in-the-middle attack enabled. This is convenient, if the targets
751 host key changes frequently, for example on virtualized test- or development-systems.
752 To be used only inside trusted networks, of course.
753
754 : **insecssh** (//ssh -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"//)
755 ssh with possible man-in-the-middle attack enabled
756 (for an explanation see insecscp above).
757
758 : **help-zshglob** (//H-Glob()//)
759 Runs the function H-Glob() to expand or explain wildcards.
760
761 : **hide** (//echo -en [ escape sequence ]//)
762 Tries to hide xterm window using escape sequence.
763
764 : **huge** (//echo -en [ escape sequence ]//)
765 Sets huge font in xterm ("-misc-fixed-medium-r-normal-*-*-210-*-*-c-*-iso8859-15")
766 using escape sequence.
767
768 : **j** (//jobs -l//)
769 Prints status of jobs in the current shell session in long format.
770
771 : **l** (//ls -lF --color=auto//)
772 Lists files in long output format with indicator for filetype appended
773 to filename. If the terminal supports it, with colored output.
774
775 : **la** (//ls -la --color=auto//)
776 Lists files in long colored output format. Including file names
777 starting with ".".
778
779 : **lad** (//ls -d .*(/)//)
780 Lists the dot directories (not their contents) in current directory.
781
782 : **large** (//echo -en [ escape sequence ]//)
783 Sets large font in xterm ("-misc-fixed-medium-r-normal-*-*-150-*-*-c-*-iso8859-15")
784 using escape sequence.
785
786 : **lh** (//ls -hAl --color=auto//)
787 Lists files in long and human readable output format in nice colors,
788 if available. Includes file names starting with "." except "." and
789 "..".
790
791 : **ll** (//ls -l --color=auto//)
792 Lists files in long colored output format.
793
794 : **ls** (//ls -b -CF --color=auto//)
795 Lists directory printing octal escapes for nongraphic characters.
796 Entries are listed by columns and an indicator for file type is appended
797 to each file name. Additionally the output is colored, if the terminal
798 supports it.
799
800 : **lsa** (//ls -a .*(.)//)
801 Lists dot files in current working directory.
802
803 : **lsbig** (//ls -flh *(.OL[1,10])//)
804 Displays the ten biggest files (long and human readable output format).
805
806 : **lsd** (//ls -d *(/)//)
807 Shows directories.
808
809 : **lse** (//ls -d *(/^F)//)
810 Shows empty directories.
811
812 : **lsl** (//ls -l *(@)//)
813 Lists symbolic links in current directory.
814
815 : **lsnew** (//ls -rl *(D.om[1,10])//)
816 Displays the ten newest files (long output format).
817
818 : **lsold** (//ls -rtlh *(D.om[1,10])//)
819 Displays the ten oldest files (long output format).
820
821 : **lss** (//ls -l *(s,S,t)//)
822 Lists files in current directory that have the setuid, setgid or sticky bit
823 set.
824
825 : **lssmall** (//ls -Srl *(.oL[1,10])//)
826 Displays the ten smallest files (long output format).
827
828 : **lsw** (//ls -ld *(R,W,X.^ND/)//)
829 Displays all files which are world readable and/or world writable and/or
830 world executable (long output format).
831
832 : **lsx** (//ls -l *(*)//)
833 Lists only executable files.
834
835 : **md** (//mkdir -p//)
836 Creates directory including parent directories, if necessary
837
838 : **medium** (//echo -en [ escape sequence ]//)
839 Sets medium sized font
840 ("-misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-15") in xterm
841 using escape sequence.
842
843 : **screen** (///usr/bin/screen -c ${HOME}/.screenrc//)
844 If invoking user is root, starts screen session with /etc/grml/screenrc
845 as config file. If invoked by a regular user, start a screen session
846 with users .screenrc config if it exists, else use /etc/grml/screenrc_grml
847 as configuration.
848
849 : **rw-** (//chmod 600//)
850 Grants read and write permission of a file to the owner and nobody else.
851
852 : **rwx** (//chmod 700//)
853 Grants read, write and execute permission of a file to the owner and nobody
854 else.
855
856 : **r--** (//chmod 644//)
857 Grants read and write permission of a file to the owner and read-only to
858 anybody else.
859
860 : **r-x** (//chmod 755//)
861 Grants read, write and execute permission of a file to the owner and
862 read-only plus execute permission to anybody else.
863
864 : **semifont** (//echo -en [ escape sequence ]//)
865 Sets font of xterm to
866 "-misc-fixed-medium-r-semicondensed-*-*-120-*-*-*-*-iso8859-15" using
867 escape sequence.
868
869 : **small** (//echo -en [ escape sequence ]//)
870 Sets small xterm font ("6x10") using escape sequence.
871
872 : **smartfont** (//echo -en [ escape sequence ]//)
873 Sets font of xterm to "-artwiz-smoothansi-*-*-*-*-*-*-*-*-*-*-*-*" using
874 escape sequence.
875
876 : **su** (//sudo su//)
877 If user is running a grml live-CD, dont ask for any password, if she
878 wants a root shell.
879
880 : **tiny** (//echo -en [ escape sequence ]//)
881 Sets tiny xterm font
882 ("-misc-fixed-medium-r-normal-*-*-80-*-*-c-*-iso8859-15") using escape
883 sequence.
884
885 : **truec** (//truecrypt [ mount options ]//)
886 Mount a truecrypt volume with some reasonable mount options
887 ("rw,sync,dirsync,users,uid=1000,gid=users,umask=077" and "utf8", if
888 available).
889
890 : **up** (//aptitude update ; aptitude safe-upgrade//)
891 Performs a system update followed by a system upgrade using aptitude; run
892 by sudo, if necessary. See au and ag above.
893
894 : **?** (//qma zshall//)
895 Runs the grml script qma (quick manual access) to build the collected man
896 pages for the z-shell. This compressed file is kept at
897 ~/man/zshall.txt.lzo Once it is built, the second use of the alias '?' is
898 fast. See "man qma" for further information.
899
900
901 = AUXILIARY FILES =
902 This is a set of files, that - if they exist - can be used to customize the
903 behaviour of //grmlzshrc//.
904
905 : **.zshrc.pre**
906 Sourced at the very beginning of //grmlzshrc//. Among other things, it can
907 be used to permantenly change //grmlzshrc//'s STARTUP VARIABLES (see above):
908 \
909 ```
910 # show battery status in RPROMPT
911 BATTERY=1
912 # always load the complete setup, even for root
913 GRML_ALWAYS_LOAD_ALL=1
914 ```
915
916 : **.zshrc.local**
917 Sourced right before loading //grmlzshrc// is finished. There is a global
918 version of this file (/etc/zsh/zshrc.local) which is sourced before the
919 user-specific one.
920
921 : **.zdirs**
922 Directory listing for persistent dirstack (see above).
923
924 : **.important_commands**
925 List of commands, used by persistent history (see above).
926
927
928 = INSTALLATION ON NON-DEBIAN SYSTEMS =
929 On Debian systems (http://www.debian.org) - and possibly Ubuntu
930 (http://www.ubuntu.com) and similar systems - it is very easy to get
931 //grmlzshrc// via grml's .deb repositories.
932
933 On non-debian systems, that is not an option, but all is not lost:
934 \
935 ```
936 % wget -O .zshrc http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
937 ```
938
939 If you would also like to get seperate function files (which you can put into
940 your **$fpath**), you can browse and download them at:
941
942 http://git.grml.org/?p=grml-etc-core.git;a=tree;f=usr_share_grml/zsh;hb=HEAD
943
944 = ZSH REFCARD TAGS =
945 If you read //grmlzshrc//'s code you may notice strange looking comments in
946 it. These are there for a purpose. grml's zsh-refcard is automatically
947 generated from the contents of the actual configuration file. However, we need
948 a little extra information on which comments and what lines of code to take
949 into account (and for what purpose).
950
951 Here is what they mean:
952
953 List of tags (comment types) used:
954 : **#a#**
955 Next line contains an important alias, that should be included in the
956 grml-zsh-refcard. (placement tag: @@INSERT-aliases@@)
957
958 : **#f#**
959 Next line contains the beginning of an important function. (placement
960 tag: @@INSERT-functions@@)
961
962 : **#v#**
963 Next line contains an important variable. (placement tag:
964 @@INSERT-variables@@)
965
966 : **#k#**
967 Next line contains an important keybinding. (placement tag:
968 @@INSERT-keybindings@@)
969
970 : **#d#**
971 Hashed directories list generation: //start//: denotes the start of a list of
972 'hash -d' definitions. //end//: denotes its end. (placement tag:
973 @@INSERT-hasheddirs@@)
974
975 : **#A#**
976 Abbreviation expansion list generation: //start//: denotes the beginning of
977 abbreviations. //end//: denotes their end.
978 \
979 Lines within this section that end in '#d .*' provide extra documentation to
980 be included in the refcard. (placement tag: @@INSERT-abbrev@@)
981
982 : **#m#**
983 This tag allows you to manually generate refcard entries for code lines that
984 are hard/impossible to parse.
985 Example:
986 \
987 ```
988 #m# k ESC-h Call the run-help function
989 ```
990 \
991 That would add a refcard entry in the keybindings table for 'ESC-h' with the
992 given comment.
993 \
994 So the syntax is: #m# <section> <argument> <comment>
995
996 : **#o#**
997 This tag lets you insert entries to the 'other' hash. Generally, this should
998 not be used. It is there for things that cannot be done easily in another way.
999 (placement tag: @@INSERT-other-foobar@@)
1000
1001
1002 All of these tags (except for m and o) take two arguments, the first
1003 within the tag, the other after the tag:
1004
1005 #<tag><section># <comment>
1006
1007 Where <section> is really just a number, which are defined by the @secmap
1008 array on top of 'genrefcard.pl'. The reason for numbers instead of names is,
1009 that for the reader, the tag should not differ much from a regular comment.
1010 For zsh, it is a regular comment indeed. The numbers have got the following
1011 meanings:
1012
1013 : **0**
1014 //default//
1015
1016 : **1**
1017 //system//
1018
1019 : **2**
1020 //user//
1021
1022 : **3**
1023 //debian//
1024
1025 : **4**
1026 //search//
1027
1028 : **5**
1029 //shortcuts//
1030
1031 : **6**
1032 //services//
1033
1034
1035 So, the following will add an entry to the 'functions' table in the 'system'
1036 section, with a (hopefully) descriptive comment:
1037 \
1038 ```
1039 #f1# Edit an alias via zle
1040 edalias() {
1041 ```
1042 \
1043 It will then show up in the @@INSERT-aliases-system@@ replacement tag that can
1044 be found in 'grml-zsh-refcard.tex.in'. If the section number is omitted, the
1045 'default' section is assumed. Furthermore, in 'grml-zsh-refcard.tex.in'
1046 @@INSERT-aliases@@ is exactly the same as @@INSERT-aliases-default@@. If you
1047 want a list of **all** aliases, for example, use @@INSERT-aliases-all@@.
1048
1049
1050 = CONTRIBUTING =
1051 If you want to help to improve grml's zsh setup, clone the grml-etc-core
1052 repository from git.grml.org:
1053 \
1054 ``` % git clone git://git.grml.org/grml-etc-core.git
1055
1056 Make your changes, commit them; use '**git format-patch**' to create a series
1057 of patches and send those to the following address via '**git send-email**':
1058 \
1059 ``` grml-etc-core@grml.org
1060
1061 Doing so makes sure the right people get your patches for review and
1062 possibly inclusion.
1063
1064
1065 = STATUS =
1066 This manual page is supposed to be a **reference** manual for //grmlzshrc//.
1067 That means that in contrast to the existing refcard it should document **every**
1068 aspect of the setup. That is currently **not** the case. Not for a long time
1069 yet. Contributions are highly welcome.
1070
1071
1072 = AUTHORS =
1073 This manpage was written by Frank Terbeck <ft@grml.org> and Joerg Woelke
1074 <joewoe@fsmail.de>.
1075
1076
1077 = COPYRIGHT =
1078 Copyright (c) 2009, grml project <http://grml.org>
1079
1080 This manpage is distributed under the terms of the GPL version 2.
1081
1082 Most parts of grml's zshrc are distributed under the terms of GPL v2, too,
1083 except for **accept-line()** and **vcs_info()**, which are distributed under
1084 the same conditions as zsh itself (which is BSD-like).