Home Explore Blog CI



nushell

commands/categories/platform.md
cdda16a5b44b99e6e35e7615b0c16508777dc63cfa75df2000000003000002ea
---
editLink: false
contributors: false
---

# Platform

<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('platform'))
          .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
0e1c36c2 (1st chunk of `commands/categories/platform.md`)
Title: Platform Commands Documentation
Summary
This document lists available platform commands with their descriptions. It dynamically generates a table of commands, linking to their detailed documentation and providing a brief usage summary for each.