Home Explore Blog CI



nushell

commands/categories/database.md
4735c751dcd5a754bc971c2df50e1e9f0a352fe53ef2670700000003000002ea
---
editLink: false
contributors: false
---

# Database

<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('database'))
          .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>

Chunks
0197e652 (1st chunk of `commands/categories/database.md`)
Title: Database Commands
Summary
This section lists available database commands with their descriptions. The commands are dynamically generated from files located in the `/commands/docs/` directory and filtered by the 'database' category. The table displays the command name as a link and its usage description.