Home Explore Blog CI



nushell

commands/categories/bits.md
4058dbccbb2b92f41a13f7c9cde8030c1ff3c997d73bcdde00000003000002e2
---
editLink: false
contributors: false
---

# Bits

<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('bits'))
          .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
c253463b (1st chunk of `commands/categories/bits.md`)
Title: Bits Commands Documentation
Summary
This page provides a table listing available commands related to 'bits', along with their descriptions. The table includes the command name and a brief description of its usage, with links to the full documentation for each command.