Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 256 Bytes

File metadata and controls

15 lines (10 loc) · 256 Bytes

Pass Arguments while Piping

We can pass arguments to bash while piping like:

bash -s -- <ARG>

Example

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

Source: StackOverFlow