Home Explore Blog CI



nushell

1st chunk of `commands/categories/core.md`
38ee573e4fceda19a18e8701a946e00377109486e10efd1c00000001000002e2
---
editLink: false
contributors: false
---

# Core

<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('core'))
          .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: Core Commands
Summary
This section lists core commands with their descriptions. The commands are filtered from pages that include '/commands/docs/' in their path and have 'core' in their categories. The table displays the command title (as a link) and its usage description.