Home Explore Blog CI



nushell

commands/categories/hash.md
8b882bd2260292391eea6bf02a72317200400a9119f4682700000003000002e2
---
editLink: false
contributors: false
---

# Hash

<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('hash'))
          .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
dbde47ae (1st chunk of `commands/categories/hash.md`)
Title: Hash Commands Overview
Summary
This section provides a table listing available hash-related commands. The table includes the command name and a brief description of its usage. The commands are dynamically listed based on files located in the `/commands/docs/` directory and categorized under 'hash'.