Home Explore Blog CI



nushell

commands/categories/env.md
ccfc3c0106673bb972165d1a53d0d2bac6ed7bb3cb91bedf00000003000002e0
---
editLink: false
contributors: false
---

# Env

<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('env'))
          .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
3e632206 (1st chunk of `commands/categories/env.md`)
Title: Environment Commands
Summary
This section provides a comprehensive overview of environment-related commands available within the system. It presents a structured table format, clearly outlining each command alongside a concise description of its functionality and intended usage. The table is designed to be easily navigable, allowing users to quickly locate the specific command they require. Each command entry includes a hyperlink that directs users to the detailed documentation page for that command, offering in-depth explanations, examples, and advanced usage scenarios. This resource is intended to serve as a central reference point for managing and interacting with the environment, enabling users to efficiently configure and customize their system settings. By providing both a quick overview and links to detailed documentation, this section aims to cater to users of all experience levels, from beginners seeking a basic understanding to advanced users requiring comprehensive information.