Piping in Linux
Piping in Linux means executing another command after the first command executed and passing output first command to second one.
For example it is possible to combine ls and grep commands.
First command will list all the files, second command will limit this output to only content that matches search pattern.
Comments
Post a Comment