Home Explore Blog CI



nushell

commands/categories/history.md
f1c0e0e3735ce37b616ef2abf6f8bd0e19a727b0cc78485700000003000002e8
---
editLink: false
contributors: false
---

# History

<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('history'))
          .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
c4379b3a (1st chunk of `commands/categories/history.md`)
Title: History Commands
Summary
This section details the available history-related commands. A table presents these commands with links to their documentation and concise descriptions of their usage. Each row in the table represents a command, with columns for the command name (linked to its documentation) and a brief explanation of its function. The commands are filtered to include those within the '/commands/docs/' path and categorized under 'history', and are sorted alphabetically by title. This table serves as a quick reference for users to find the appropriate history command and understand its basic purpose before consulting the full documentation. It offers an efficient way to navigate and understand the tools available for interacting with historical data within the system.