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