Home Explore Blog CI



nushell

commands/categories/expression.md
093ac8021867981de9f683a39addb92ed001be2961c7b72e00000003000002ee
---
editLink: false
contributors: false
---

# Expression

<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('expression'))
          .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
b7574a22 (1st chunk of `commands/categories/expression.md`)
Title: Expression Commands
Summary
This page lists and describes expression commands. It provides a table with the command name and a brief description of its usage. The list of commands is dynamically generated from pages tagged with the 'expression' category.