Home Explore Blog CI



nushell

commands/categories/shells.md
f6125f974b903e3ada2335d4d18c2a305eaa29983502175a00000003000002e6
---
editLink: false
contributors: false
---

# Shells

<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('shells'))
          .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
1a3f43c6 (1st chunk of `commands/categories/shells.md`)
Title: Shell Commands
Summary
This page provides a comprehensive listing of shell commands. It dynamically generates a table presenting each command, accompanied by a direct link to its detailed documentation. Furthermore, the table includes a concise description outlining the command's usage, enabling users to quickly understand the command's purpose and application. The listing is specifically filtered to include commands categorized under 'shells', ensuring relevance to users interested in shell-related functionalities. The commands are sorted alphabetically by title, facilitating easy navigation and lookup within the table. This serves as a valuable resource for users seeking to explore and understand various shell commands and their practical applications in different scenarios. The table format allows for efficient browsing and comparison of commands, enhancing the overall user experience and knowledge acquisition.