| Home | Getting Started | Commands | Concepts | Data Sets | Tools |
5hell supports piping, similar to other command-line environments. Piping sends the output of one command into the input of the next command on the same line.
With a file named targets in /root:
enum targets | enum -d dig
Result:
Dig executes on every IP on each new line in targets.
| The | operator forwards that output. |
Piping allows command chains where each stage transforms or consumes the previous stage output.