Home Explore Blog CI



nushell

1st chunk of `commands/README.md`
c0d23b0eb7c7533a74ed0f123e20ae2c0e30664a1433344700000001000003a8
# 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>

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.