-3

I know for example: ls -all | grep Hello means to search all files containing Hello. What is the definitive definition of the | command? What exactly is going on here with |?

Cyrus
  • 84,225
  • 14
  • 89
  • 153
Descode
  • 1
  • 3

1 Answers1

0

pipe; send whatever we get from the left side to the right side: (https://www.makeuseof.com/what-are-linux-metacharacters/) I would also take a look at the gnu bash manual: https://www.gnu.org/software/bash/manual/bash.html and check specifically the 3.2.3 Pipelines for more in depth information

Riperoni
  • 21
  • 7