Home Explore Blog CI



nushell

commands/categories/path.md
e45400f8151fc68ee74e12e314f2b9a231734e8b064909d300000003000002e2
---
editLink: false
contributors: false
---

# Path

<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('path'))
          .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
b09dd03b (1st chunk of `commands/categories/path.md`)
Title: Path Commands
Summary
This section lists available commands related to 'path'. It presents a comprehensive list of commands, each accompanied by a concise description outlining its purpose and usage. The commands are organized in a table format for easy navigation. Each command name is hyperlinked, directing users to a dedicated documentation page that provides in-depth information, including syntax, options, examples, and potential use cases. This allows users to quickly grasp the functionality of each path-related command and access detailed resources for further exploration. The table aims to provide a structured overview of path-related commands, enabling users to efficiently identify and utilize the appropriate commands for their specific needs. The commands are sorted alphabetically by title to facilitate quick lookups. This serves as a valuable resource for developers and system administrators working with path manipulations and configurations.