Home Explore Blog CI



nushell

commands/categories/debug.md
b827c5f211e6f428739b11ea9801afbce362a7510d68b1cd00000003000002e4
---
editLink: false
contributors: false
---

# Debug

<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('debug'))
          .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
824c963f (1st chunk of `commands/categories/debug.md`)
Title: Debug Commands
Summary
This section provides a comprehensive overview of debug commands available within the system. It dynamically generates a table listing each command, accompanied by a concise description outlining its primary function and usage. Each row in the table features a direct link to the command's dedicated documentation page, enabling users to quickly access detailed information, including syntax, parameters, and examples. The commands are filtered to only include those categorized under 'debug' and are then sorted alphabetically by title for ease of navigation. This serves as a central reference point for developers seeking to troubleshoot and diagnose issues, offering a structured and easily searchable directory of debugging tools and techniques. The 'usage' field from the frontmatter of each page is displayed as the command's description.