> Built-in utility commands in the Jitzu shell.

# Utilities

<table>
  <thead>
    <tr>
      <th>Command</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr><td><code>echo [text]</code></td><td>Print text</td></tr>
    <tr><td><code>sleep seconds</code></td><td>Pause for N seconds</td></tr>
    <tr><td><code>yes [text]</code></td><td>Repeat text (default: y)</td></tr>
    <tr><td><code>seq [first [inc]] last</code></td><td>Print a sequence of numbers</td></tr>
    <tr><td><code>true</code></td><td>Return success (exit code 0)</td></tr>
    <tr><td><code>false</code></td><td>Return failure (exit code 1)</td></tr>
    <tr><td><code>time command</code></td><td>Measure command execution time</td></tr>
    <tr><td><code>watch [-n s] command</code></td><td>Repeat command every N seconds</td></tr>
    <tr><td><code>wget url</code></td><td>Download a file from a URL</td></tr>
    <tr><td><code>history</code></td><td>Show command history</td></tr>
    <tr><td><code>clear</code></td><td>Clear the screen</td></tr>
    <tr><td><code>help</code></td><td>Show help with all commands</td></tr>
    <tr><td><code>reset</code></td><td>Reset the session state</td></tr>
    <tr><td><code>exit / quit</code></td><td>Exit the shell</td></tr>
  </tbody>
</table>
