Skip to content
Advertisement

How we can use correctly pipe in Linux?

I have a project, the goal it is to extract phone numbers of a data.txt file, so I did a program. Like that :

JavaScript

My problem is when I want to use this program and to execute on my terminal I had to use pipe for my terminal command. I tried many different commands on my terminal and the last one is :

JavaScript

But this command doesn’t work, and I don’t know why. So what is the correct command I had to use with this above format please?

I had to use the following format SDTIN | STDOUT for the pipe.

I give you the data.txt file :

JavaScript

The result I need to have is :

JavaScript

Advertisement

Answer

A filter will:

  • Read from stdin
  • Write to stdout

Your program will:

  • Read from stdin
  • Write to a hard-coded filename

So your program is not a filter and can not be used similarly to what you want.

The easiest/worst way of turning your program into a filter is to write to a temporary file instead, and then cat that:

JavaScript

Now you can treat it as a filter:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement