Update zsh-lovers to v0.10.0
[grml.org.git] / zsh / zsh-lovers.html
index c6e4205..700b2a0 100644 (file)
@@ -1,9 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"\r
     "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\r
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">\r
 <head>\r
 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />\r
-<meta name="generator" content="AsciiDoc 8.6.9" />\r
+<meta name="generator" content="AsciiDoc 10.2.0" />\r
 <title>ZSH-LOVERS(1)</title>\r
 <style type="text/css">\r
 /* Shared CSS for AsciiDoc xhtml11 and html5 backends */\r
@@ -435,7 +436,7 @@ thead, p.table.header {
 p.table {\r
   margin-top: 0;\r
 }\r
-/* Because the table frame attribute is overriden by CSS in most browsers. */\r
+/* Because the table frame attribute is overridden by CSS in most browsers. */\r
 div.tableblock > table[frame="void"] {\r
   border-style: none;\r
 }\r
@@ -758,7 +759,7 @@ manpage.</p></div>
 <div class="paragraph"><p>Most of the tricks and oneliner come from the mailinglists zsh-users,\r
 zsh-workers, google, newsgroups and from ourself.  See section <strong>LINKS</strong> for\r
 details.</p></div>\r
-<div class="paragraph"><p>Note: This manpage (zsh-lovers(1)) is <strong>not</strong> an offical part of the Z shell! It&#8217;s\r
+<div class="paragraph"><p>Note: This manpage (zsh-lovers(1)) is <strong>not</strong> an official part of the Z shell! It&#8217;s\r
 just a just for fun - manpage ;)<br />\r
 For comments, bugreports and feedback take a quick look at the section <strong>BUGS</strong>.</p></div>\r
 </div>\r
@@ -820,7 +821,7 @@ Global aliases can be used anywhere in the command line. Example:</p></div>
 $ grep alias ~/.zsh/* C\r
 443</code></pre>\r
 </div></div>\r
-<div class="paragraph"><p>Some more or less useful global aliases (choose whether they are useful  or not\r
+<div class="paragraph"><p>Some more or less useful global aliases (choose whether they are useful or not\r
 for you on your own):</p></div>\r
 <div class="listingblock">\r
 <div class="content">\r
@@ -923,7 +924,7 @@ zstyle ':completion:*:*:xdvi:*' file-sort time</code></pre>
 zstyle ':completion:*:kill:*'   force-list always</code></pre>\r
 </div></div>\r
 <div class="paragraph"><p>If you end up using a directory  as  argument,  this  will  remove  the\r
-trailing slash (usefull in ln)</p></div>\r
+trailing slash (useful in ln)</p></div>\r
 <div class="listingblock">\r
 <div class="content">\r
 <pre><code>zstyle ':completion:*' squeeze-slashes true</code></pre>\r
@@ -994,7 +995,7 @@ See &#8220;man 1 zshexpn | less -p&#8221; Qualifiers for details.</p></div>
 # All files for which the owner hat read and execute permissions\r
   $ echo *(f:u+rx:)\r
 \r
-# The same, but also others dont have execute permissions\r
+# The same, but also others don't have execute permissions\r
   $ echo *(f:u+rx,o-x:)\r
 \r
 # brace expansion - example\r
@@ -1023,7 +1024,7 @@ See &#8220;man 1 zshexpn | less -p&#8221; Qualifiers for details.</p></div>
 # Remove zero length and .bak files in a directory\r
   $ rm -i *(.L0) *.bak(.)\r
 \r
-# print out files that dont have extensions\r
+# print out files that don't have extensions\r
   $ printf '%s\n' ^?*.*\r
   $ printf '%s\n' ^?*.[^.]*(D)\r
   $ ls -d -- ^?*.*(D)\r
@@ -1091,7 +1092,7 @@ See &#8220;man 1 zshexpn | less -p&#8221; Qualifiers for details.</p></div>
   # see above, but now omit executables\r
   $ ls **/*~*(${~${(j/|/)fignore}})(.^*)\r
 \r
-# Print out files that dont have extensions (require *setopt extendedglob*\r
+# Print out files that don't have extensions (require *setopt extendedglob*\r
 # and *setopt dotglob*)\r
   $ printf '%s\n' ^?*.*\r
 \r
@@ -1138,7 +1139,7 @@ See &#8220;man 1 zshexpn | less -p&#8221; Qualifiers for details.</p></div>
   $ print ${(r:10::0:)foo}\r
 \r
 # find the name of all the files in their home directory that have\r
-# more than 20 characters in their file names\r
+# 20 or more characters in their file names\r
   print -rl $HOME/${(l:20::?:)~:-}*\r
 \r
 # Save arrays\r
@@ -1217,7 +1218,7 @@ See &#8220;man 1 zshexpn | less -p&#8221; Qualifiers for details.</p></div>
   $ for i (./*.mp3){mpg321 --w - $i &gt; ${i:r}.wav}\r
 \r
 # Download with LaTeX2HTML  created Files (for example the ZSH-Guide):\r
-  $ for f in http://zsh.sunsite.dk/Guide/zshguide{,{01..08}}.html; do\r
+  $ for f in https://zsh.sourceforge.io/Guide/zshguide{,{01..08}}.html; do\r
   &gt;     lynx -source $f &gt;${f:t}\r
   &gt; done\r
 \r
@@ -1533,7 +1534,7 @@ for details.</p></div>
 </div>\r
 <div class="sect2">\r
 <h3 id="_redirection_examples">Redirection-Examples</h3>\r
-<div class="paragraph"><p>See zshmisc(1) for more informations (or less ${^fpath}/zmv(N))</p></div>\r
+<div class="paragraph"><p>See zshmisc(1) for more information (or less ${^fpath}/zmv(N))</p></div>\r
 <div class="listingblock">\r
 <div class="content">\r
 <pre><code># Append `exit 1' at the end of all *.sh - files\r
@@ -1613,7 +1614,7 @@ for details.</p></div>
   $ ls *\r
   1.c  1.foo  2.foo  3.foo  4.foo  foo.fnord\r
 \r
-# Rename "file.with.many.dots.txt" by substituting dots (exept for the last\r
+# Rename "file.with.many.dots.txt" by substituting dots (except for the last\r
 # one!) with a space\r
   $ touch {1..20}-file.with.many.dots.txt\r
   $ zmv '(*.*)(.*)' '${1//./ }$2'\r
@@ -1922,7 +1923,7 @@ for details.</p></div>
 \r
 # If a XML-file contains stuff like ``&lt;TAGA/&gt;'' and ``&lt;TAGB/&gt;'', number\r
 # this empty tags (ones ending in '/&gt;') so if encountered in the same\r
-# order, the preceeding tags would become ``&lt;TAGA/&gt;1&lt;/TAGA&gt;'' and\r
+# order, the preceding tags would become ``&lt;TAGA/&gt;1&lt;/TAGA&gt;'' and\r
 # ``&lt;TAGB/&gt;2&lt;/TAGB&gt;''\r
   $ zmodload zsh/mapfile\r
   $ cnt=0\r
@@ -2205,19 +2206,19 @@ Primary site
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
-Project-page\r
+Zsh Web Pages\r
 </dt>\r
 <dd>\r
 <p>\r
-    <strong><a href="http://sourceforge.net/projects/zsh/">http://sourceforge.net/projects/zsh/</a></strong>\r
+    <strong><a href="https://zsh.sourceforge.io/">https://zsh.sourceforge.io/</a></strong>\r
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
-Z shell page at sunsite.dk\r
+Project-page\r
 </dt>\r
 <dd>\r
 <p>\r
-    <strong><a href="http://zsh.sunsite.dk/">http://zsh.sunsite.dk/</a></strong>\r
+    <strong><a href="http://sourceforge.net/projects/zsh/">http://sourceforge.net/projects/zsh/</a></strong>\r
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
@@ -2249,7 +2250,7 @@ ZSH-FAQ
 </dt>\r
 <dd>\r
 <p>\r
-    <strong><a href="http://zsh.dotsrc.org/FAQ/">http://zsh.dotsrc.org/FAQ/</a></strong>\r
+    <strong><a href="https://zsh.sourceforge.io/FAQ/zshfaq.html">https://zsh.sourceforge.io/FAQ/zshfaq.html</a></strong>\r
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
@@ -2257,7 +2258,7 @@ Userguide
 </dt>\r
 <dd>\r
 <p>\r
-    <strong><a href="http://zsh.sunsite.dk/Guide/">http://zsh.sunsite.dk/Guide/</a></strong>\r
+    <strong><a href="https://zsh.sourceforge.io/Guide/">https://zsh.sourceforge.io/Guide/</a></strong>\r
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
@@ -2269,14 +2270,6 @@ ZSH-Wiki
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
-A short introduction from BYU\r
-</dt>\r
-<dd>\r
-<p>\r
-    <strong><a href="http://docs.cs.byu.edu/linux/advanced/zsh.html">http://docs.cs.byu.edu/linux/advanced/zsh.html</a></strong>\r
-</p>\r
-</dd>\r
-<dt class="hdlist1">\r
 Mouse-Support ;)\r
 </dt>\r
 <dd>\r
@@ -2285,30 +2278,6 @@ Mouse-Support ;)
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
-Curtains up: introducing the Z shell\r
-</dt>\r
-<dd>\r
-<p>\r
-    <strong><a href="http://www-128.ibm.com/developerworks/linux/library/l-z.html?dwzone=linux">http://www-128.ibm.com/developerworks/linux/library/l-z.html?dwzone=linux</a></strong>\r
-</p>\r
-</dd>\r
-<dt class="hdlist1">\r
-ZSH-Liebhaberseite (german)\r
-</dt>\r
-<dd>\r
-<p>\r
-    <strong><a href="http://michael-prokop.at/computer/tools_zsh_liebhaber.html">http://michael-prokop.at/computer/tools_zsh_liebhaber.html</a></strong>\r
-</p>\r
-</dd>\r
-<dt class="hdlist1">\r
-ZSH-Seite von Michael Prokop (german)\r
-</dt>\r
-<dd>\r
-<p>\r
-    <strong><a href="http://michael-prokop.at/computer/tools_zsh.html">http://michael-prokop.at/computer/tools_zsh.html</a></strong>\r
-</p>\r
-</dd>\r
-<dt class="hdlist1">\r
 ZSH Prompt introduction\r
 </dt>\r
 <dd>\r
@@ -2321,7 +2290,7 @@ ft&#8217;s zsh configuration
 </dt>\r
 <dd>\r
 <p>\r
-    <strong><a href="http://ft.bewatermyfriend.org/comp/zsh.html">http://ft.bewatermyfriend.org/comp/zsh.html</a></strong>\r
+    <strong><a href="http://ft.bewatermyfriend.org/computer/zsh.html">http://ft.bewatermyfriend.org/computer/zsh.html</a></strong>\r
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
@@ -2361,7 +2330,7 @@ IRC channel
 </dt>\r
 <dd>\r
 <p>\r
-    <strong>#zsh at irc.libera.chat</strong>\r
+    <strong>#zsh at irc.freenode.org</strong>\r
 </p>\r
 </dd>\r
 <dt class="hdlist1">\r
@@ -2388,14 +2357,14 @@ Thanks for your cool and incredible tips. We learned much from you!</p></div>
 <div class="content">\r
 <pre><code>Andrew 'zefram' Main  - http://www.fysh.org/~zefram/\r
 Barton E. Schaefer    - http://www.well.com/user/barts/\r
-Matthias Kopfermann   - http://www.infodrom.north.de/~matthi/\r
+Matthias Kopfermann   - http://www.guckes.net/zsh/lover.html\r
 Oliver Kiddle         - http://people.freenet.de/opk/\r
 Paul Falstad          - http://www.falstad.com/\r
 Peter Stephenson      - http://homepage.ntlworld.com/p.w.stephenson/\r
 Richard Coleman\r
 Stephane Chazelas     - http://stephane.chazelas.free.fr/\r
 Sven Guckes           - http://www.guckes.net/\r
-Sven Wischnowsky      - http://w9y.de/zsh/zshrc</code></pre>\r
+Sven Wischnowsky      - http://w9y.de/</code></pre>\r
 </div></div>\r
 </div>\r
 </div>\r
@@ -2433,9 +2402,9 @@ Also take a look at the section <strong>LINKS</strong> in this manpage.</p></div
 <div class="sect1">\r
 <h2 id="_bugs">BUGS</h2>\r
 <div class="sectionbody">\r
-<div class="paragraph"><p>Probably. This manpage might be never complete. So please report bugs,\r
-feedback and suggestions to &lt;<a href="mailto:zsh-lovers@michael-prokop.at">zsh-lovers@michael-prokop.at</a>&gt;. Thank\r
-you!</p></div>\r
+<div class="paragraph"><p>Probably. This manpage might be never complete.\r
+So please report bugs, feedback and suggestions via <a href="https://github.com/grml/zsh-lovers">https://github.com/grml/zsh-lovers</a>\r
+Thank you!</p></div>\r
 </div>\r
 </div>\r
 <div class="sect1">\r
@@ -2449,7 +2418,8 @@ Kopfermann.</p></div>
 <div id="footnotes"><hr /></div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 2010-07-28 21:55:37 UTC\r
+Last updated\r
+ 2023-09-08 11:52:40 UTC\r
 </div>\r
 </div>\r
 </body>\r