xargs article: add shell wait reference - www.codemadness.org - www.codemadness.org saait content files
(HTM) git clone git://git.codemadness.org/www.codemadness.org
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 7f6beb4e5733154d4067672b4a0d0e4e51e23fd2
(DIR) parent be18dc3aeddc322644047e8f9353a5a6d0528e63
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Thu, 23 Nov 2023 20:28:32 +0100
xargs article: add shell wait reference
Diffstat:
M output/atom.xml | 2 +-
M output/atom_content.xml | 5 +++--
M output/rss_content.xml | 3 ++-
M output/sitemap.xml | 2 +-
M output/xargs.html | 3 ++-
M output/xargs.md | 1 +
M pages/xargs.cfg | 2 +-
M pages/xargs.md | 1 +
8 files changed, 12 insertions(+), 7 deletions(-)
---
(DIR) diff --git a/output/atom.xml b/output/atom.xml
@@ -10,7 +10,7 @@
<title>xargs: an example for parallel batch jobs</title>
<link rel="alternate" type="text/html" href="https://www.codemadness.org/xargs.html" />
<id>https://www.codemadness.org/xargs.html</id>
- <updated>2023-11-22T00:00:00Z</updated>
+ <updated>2023-11-23T00:00:00Z</updated>
<published>2023-11-22T00:00:00Z</published>
<author>
<name>Hiltjo</name>
(DIR) diff --git a/output/atom_content.xml b/output/atom_content.xml
@@ -10,7 +10,7 @@
<title>xargs: an example for parallel batch jobs</title>
<link rel="alternate" type="text/html" href="https://www.codemadness.org/xargs.html" />
<id>https://www.codemadness.org/xargs.html</id>
- <updated>2023-11-22T00:00:00Z</updated>
+ <updated>2023-11-23T00:00:00Z</updated>
<published>2023-11-22T00:00:00Z</published>
<author>
<name>Hiltjo</name>
@@ -18,7 +18,7 @@
</author>
<summary>xargs: an example for parallel batch jobs</summary>
<content type="html"><![CDATA[<h1>xargs: an example for parallel batch jobs</h1>
- <p><strong>Last modification on </strong> <time>2023-11-22</time></p>
+ <p><strong>Last modification on </strong> <time>2023-11-23</time></p>
<p>This describes a simple shellscript programming pattern to process a list of
jobs in parallel. This script example is contained in one file.</p>
<h1>Simple but less optimal example</h1>
@@ -181,6 +181,7 @@ been read then utility will be called with the available lines.</li>
<ul>
<li>xargs: <a href="https://man.openbsd.org/xargs">https://man.openbsd.org/xargs</a></li>
<li>printf: <a href="https://man.openbsd.org/printf">https://man.openbsd.org/printf</a></li>
+<li>ksh, wait: <a href="https://man.openbsd.org/ksh#wait">https://man.openbsd.org/ksh#wait</a></li>
<li>wait(2): <a href="https://man.openbsd.org/wait">https://man.openbsd.org/wait</a></li>
</ul>
]]></content>
(DIR) diff --git a/output/rss_content.xml b/output/rss_content.xml
@@ -13,7 +13,7 @@
<dc:date>2023-11-22T00:00:00Z</dc:date>
<author>Hiltjo</author>
<description><![CDATA[<h1>xargs: an example for parallel batch jobs</h1>
- <p><strong>Last modification on </strong> <time>2023-11-22</time></p>
+ <p><strong>Last modification on </strong> <time>2023-11-23</time></p>
<p>This describes a simple shellscript programming pattern to process a list of
jobs in parallel. This script example is contained in one file.</p>
<h1>Simple but less optimal example</h1>
@@ -176,6 +176,7 @@ been read then utility will be called with the available lines.</li>
<ul>
<li>xargs: <a href="https://man.openbsd.org/xargs">https://man.openbsd.org/xargs</a></li>
<li>printf: <a href="https://man.openbsd.org/printf">https://man.openbsd.org/printf</a></li>
+<li>ksh, wait: <a href="https://man.openbsd.org/ksh#wait">https://man.openbsd.org/ksh#wait</a></li>
<li>wait(2): <a href="https://man.openbsd.org/wait">https://man.openbsd.org/wait</a></li>
</ul>
]]></description>
(DIR) diff --git a/output/sitemap.xml b/output/sitemap.xml
@@ -2,7 +2,7 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.codemadness.org/xargs.html</loc>
- <lastmod>2023-11-22</lastmod>
+ <lastmod>2023-11-23</lastmod>
</url>
<url>
<loc>https://www.codemadness.org/youtube-feed.html</loc>
(DIR) diff --git a/output/xargs.html b/output/xargs.html
@@ -42,7 +42,7 @@
<header>
<h1>xargs: an example for parallel batch jobs</h1>
<p>
- <strong>Last modification on </strong> <time>2023-11-22</time>
+ <strong>Last modification on </strong> <time>2023-11-23</time>
</p>
</header>
@@ -208,6 +208,7 @@ been read then utility will be called with the available lines.</li>
<ul>
<li>xargs: <a href="https://man.openbsd.org/xargs">https://man.openbsd.org/xargs</a></li>
<li>printf: <a href="https://man.openbsd.org/printf">https://man.openbsd.org/printf</a></li>
+<li>ksh, wait: <a href="https://man.openbsd.org/ksh#wait">https://man.openbsd.org/ksh#wait</a></li>
<li>wait(2): <a href="https://man.openbsd.org/wait">https://man.openbsd.org/wait</a></li>
</ul>
(DIR) diff --git a/output/xargs.md b/output/xargs.md
@@ -185,4 +185,5 @@ Options explained:
* xargs: <https://man.openbsd.org/xargs>
* printf: <https://man.openbsd.org/printf>
+* ksh, wait: <https://man.openbsd.org/ksh#wait>
* wait(2): <https://man.openbsd.org/wait>
(DIR) diff --git a/pages/xargs.cfg b/pages/xargs.cfg
@@ -3,4 +3,4 @@ id = xargs
description = xargs: an example for parallel batch jobs
keywords = xargs, wow hyper speed
created = 2023-11-22
-updated = 2023-11-22
+updated = 2023-11-23
(DIR) diff --git a/pages/xargs.md b/pages/xargs.md
@@ -185,4 +185,5 @@ Options explained:
* xargs: <https://man.openbsd.org/xargs>
* printf: <https://man.openbsd.org/printf>
+* ksh, wait: <https://man.openbsd.org/ksh#wait>
* wait(2): <https://man.openbsd.org/wait>