# pane.Pane.pipeTo

- **Module:** pane.Pane
- **Package:** libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/3fe1ca654b81b8cbf4a13b777a001a3298c87a6f/packages/libtmux/src/pane.ts#L441
- **Page:** https://libtmux.org/en/ts/latest/reference/pane-pane-pipeto/

```
pane.Pane.pipeTo(command: : string, options: : { readonly toggle?: boolean }) -> Promise<void>
```

Send everything this pane writes to a shell command as well as its screen.

A pane keeps `history-limit` lines and a stream reader keeps a bounded
buffer, so output larger than either is gone before anything asks for it.
The command runs for as long as the pipe is open, which is how a long
build is captured whole. Pass no command to stop one.

## Example

```ts
await pane.pipeTo("cat >> /tmp/build.log");
```
