Home Explore Blog CI



nushell

1st chunk of `commands/categories/system.md`
b6813458fcad81dceaefa39ea16f79bf750466bfc682b7bd00000001000002e6
---
editLink: false
contributors: false
---

# System

<script>
  import pages from '@temp/pages'
  export default {
    computed: {
      commands() {
        return pages
          .filter(p => p.path.includes('/commands/docs/'))
          .filter(p => p.frontmatter.categories.includes('system'))
          .sort((a,b) => (a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0));
      }
    }
  }
</script>

<table>
  <thead>
    <tr>
      <th>Command</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr v-for="command in commands">
       <td><a :href="$withBase(command.path)">{{ command.title }}</a></td>
       <td style="white-space: pre-wrap;">{{ command.frontmatter.usage }}</td>
    </tr>
  </tbody>
</table>

Title: System Commands
Summary
This page lists system-related commands with their descriptions. It dynamically generates a table of commands, filtering pages from the '/commands/docs/' directory that belong to the 'system' category, and sorting them alphabetically by title.