Skip to content

Commit 5dfd2a1

Browse files
committed
Link command docs
Link first occurrences of commands in section to command docs.
1 parent 2fa7c49 commit 5dfd2a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

book/pipelines.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,9 @@ Nu works with data piped between two external commands in the same way as other
300300
The Basics section above describes how commands can be combined in pipelines as input, filters, or output.
301301
How you can use commands depends on what they offer in terms of input/output handling.
302302

303-
You can check what a command supports with `help <command name>`, which shows the relevant *Input/output types*.
303+
You can check what a command supports with [`help <command name>`](/commands/docs/help.md), which shows the relevant *Input/output types*.
304304

305-
For example, through `help first` we can see that the `first` command supports multiple input and output types:
305+
For example, through `help first` we can see that the [`first` command](/commands/docs/first.md) supports multiple input and output types:
306306

307307
```nu
308308
> help first
@@ -323,7 +323,7 @@ a
323323
1
324324
```
325325

326-
As another example, the `ls` command supports output but not input:
326+
As another example, the [`ls` command](/commands/docs/ls.md) supports output but not input:
327327

328328
```nu
329329
> help ls
@@ -349,7 +349,7 @@ Note that this only works if `$in` matches the argument type. For example, `[dir
349349

350350
Other commands without default behavior may fail in different ways, and with explicit errors.
351351

352-
For example, `help sleep` tells us that `sleep` supports no input and no output types:
352+
For example, `help sleep` tells us that [`sleep`](/commands/docs/sleep.md) supports no input and no output types:
353353

354354
```nu
355355
> help sleep

0 commit comments

Comments
 (0)