Home Explore Blog CI



nushell

1st chunk of `commands/categories/network.md`
c67ab59b2bf68447f17f73080a5454e69d45d3e2258703f400000001000002e8
---
editLink: false
contributors: false
---

# Network

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

Title: Network Commands
Summary
This section lists available network-related commands with their descriptions. The commands are dynamically generated from pages tagged with the 'network' category and sorted alphabetically by title. The table provides links to each command's documentation and displays a brief usage description.