Home Explore Blog CI



nushell

commands/categories/network.md
5d31593e8cd88a4fa8f22be937cfb94774733727fce4e6da00000003000002e8
---
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>

Chunks
c67ab59b (1st chunk of `commands/categories/network.md`)
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.