-2

In example:

lsof -i -P -n | grep LISTEN

How do I "read" that command? I have tried to search anywhere, and found nothing explained those.

panoet
  • 3,608
  • 1
  • 16
  • 27

1 Answers1

-1

This PIPE operator is very useful where the output of the first command acts as an input to the second command. For example, pipeline the output of ls -l to ‘less‘ and see the output of the command.

stephen
  • 78
  • 12