Home Explore Blog CI



nushell

commands/categories/random.md
64232cc2ced1cee172c08e3efd71531035b23fc8e492bfe100000003000002e6
---
editLink: false
contributors: false
---

# Random

<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('random'))
          .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
a502a7b5 (1st chunk of `commands/categories/random.md`)
Title: Random Commands
Summary
This section lists available commands categorized as 'random', presented in a table. Each row represents a command with columns for 'Command' (a link to detailed documentation) and 'Description' (a brief overview with usage examples). The commands included are filtered to those with paths containing '/commands/docs/' and categories including 'random'. The list is sorted alphabetically by command title for easy navigation. This provides an organized reference for using the available random commands, allowing users to quickly understand their purpose and access detailed instructions.