docs(demo): link to old documentation (closes #5211)

This commit is contained in:
Elian Doran
2025-11-05 08:19:25 +02:00
parent ab298cbb3b
commit 2b983f871e
9 changed files with 50 additions and 18 deletions

View File

@@ -16,18 +16,32 @@
<p>Documentation: <a href="http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_02.html">http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_02.html</a>
</p><pre><code class="language-text-x-sh">#!/bin/bash
# This script opens 4 terminal windows.
i="0"
while [ $i -lt 4 ]
do
xterm &amp;
i=$[$i+1]
done</code></pre>
</div>
</div>