Home Explore Blog CI



nushell

commands/README.md
892202914fcdeae25e126a461ed2d6e5d8377c1de1f8275b00000003000003a8
# Command Reference

If you're new to Nushell, [the quick tour](/book/quick_tour.md) can show you the most important commands. You don't need to know them all!

To see all commands from inside Nushell, run [`help commands`](/commands/docs/help.md).

<script>
  import pages from '@temp/pages'
  export default {
    computed: {
      commands() {
        return pages
          .filter(p => p.path.indexOf('/commands/docs/') >= 0)
          .sort((a,b) => (a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0));
      }
    }
  }
</script>

<table>
  <tr>
    <th>Command</th>
    <th>Categories</th>
    <th>Description</th>
    <th>Feature</th>
  </tr>
  <tr v-for="command in commands">
   <td><a :href="$withBase(command.path)">{{ command.title }}</a></td>
   <td style="white-space: pre-wrap;">{{ command.frontmatter.categories }}</td>
   <td style="white-space: pre-wrap;">{{ command.frontmatter.usage }}</td>
  </tr>
</table>

Chunks
c0d23b0e (1st chunk of `commands/README.md`)
Title: Nushell Command Reference
Summary
This section provides a command reference for Nushell, including a table of commands with their categories, descriptions, and associated features. New users are encouraged to start with the quick tour. The `help commands` command can be used to see all commands from inside Nushell.