Home Explore Blog CI



nushell

commands/docs/inspect.md
252ea3f03618048f56826532d63eccc16fef3c0b3eb95bab00000003000002b1
---
title: inspect
categories: |
  debug
version: 0.104.0
debug: |
  Inspect pipeline results while running a pipeline.
usage: |
  Inspect pipeline results while running a pipeline.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

# `inspect` for [debug](/commands/categories/debug.md)

<div class='command-title'>Inspect pipeline results while running a pipeline.</div>

## Signature

```> inspect {flags} ```


## Input/output types:

| input | output |
| ----- | ------ |
| any   | any    |
## Examples

Inspect pipeline results
```nu
> ls | inspect | get name | inspect

```

Chunks
1a84a7df (1st chunk of `commands/docs/inspect.md`)
Title: inspect: Debug Pipeline Results in Nushell
Summary
The `inspect` command in Nushell's debug category allows you to examine pipeline results during execution. It takes any input and outputs the same data, enabling you to observe data flow and identify issues within your pipelines.