41 lines
775 B
HTML
Raw Normal View History

2025-03-30 22:29:29 +03:00
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../../../../../style.css">
<base target="_parent">
<title data-trilium-title>While loop</title>
</head>
<body>
<div class="content">
<h1 data-trilium-h1>While loop</h1>
<div class="ck-content">
<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
2025-05-27 19:33:46 +03:00
2025-03-30 22:29:29 +03:00
# This script opens 4 terminal windows.
2025-05-27 19:33:46 +03:00
2025-03-30 22:29:29 +03:00
i="0"
2025-05-27 19:33:46 +03:00
2025-03-30 22:29:29 +03:00
while [ $i -lt 4 ]
2025-05-27 19:33:46 +03:00
2025-03-30 22:29:29 +03:00
do
2025-05-27 19:33:46 +03:00
2025-03-30 22:29:29 +03:00
xterm &amp;
2025-05-27 19:33:46 +03:00
2025-03-30 22:29:29 +03:00
i=$[$i+1]
2025-05-27 19:33:46 +03:00
2025-03-30 22:29:29 +03:00
done</code></pre>
</div>
</div>
</body>
</html>