Home Explore Blog CI



nushell

commands/docs/help_externs.md
e1e43cbe7fd4deb9dae9a4768e368fd10bb8636ce2d3034f000000030000039b
---
title: help externs
categories: |
  core
version: 0.104.0
core: |
  Show help on nushell externs.
usage: |
  Show help on nushell externs.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

# `help externs` for [core](/commands/categories/core.md)

<div class='command-title'>Show help on nushell externs.</div>

## Signature

```> help externs {flags} ...rest```

## Flags

 -  `--find, -f {string}`: string to find in extern names and descriptions

## Parameters

 -  `...rest`: The name of extern to get help on.


## Input/output types:

| input   | output |
| ------- | ------ |
| nothing | table  |
## Examples

show all externs
```nu
> help externs

```

show help for single extern
```nu
> help externs smth

```

search for string in extern names and descriptions
```nu
> help externs --find smth

```

Chunks
d40a4533 (1st chunk of `commands/docs/help_externs.md`)
Title: help externs: Display Help Information for Nushell Externs
Summary
The `help externs` command displays help information for Nushell externs (external commands). It can show a list of all externs, display detailed help for a specific extern, or search for externs by name or description using the `--find` flag.