Home Explore Blog CI



nushell

commands/categories/filters.md
ff6af55a269465cb201f74d49dbd1d234cf499b4a52f0dd200000003000002e8
---
editLink: false
contributors: false
---

# Filters

<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('filters'))
          .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
3342ca20 (1st chunk of `commands/categories/filters.md`)
Title: Filter Commands Documentation
Summary
This document lists and describes the available filter commands. It provides a table with the command name and a brief description of its usage. The commands are dynamically pulled from pages under the '/commands/docs/' path that are categorized as 'filters' and are sorted alphabetically by title.