> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/bash/pass-arguments-while-piping.md).

# Pass Arguments while Piping

We can pass arguments to bash while piping like:

```bash
bash -s -- <ARG>
```

## Example

```bash
curl -s http://wget.racing/nench.sh | bash -s -- -q
```

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/53605439)
