Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fedora - Command line quick tips: Using pipes to connect tools

#1
Command line quick tips: Using pipes to connect tools

One of the most powerful concepts of Linux is carried on from its predecessor, UNIX. Your Fedora system has a bunch of useful, single-purpose utilities available for all sorts of simple operations. Like building blocks, you can attach them in creative and complex ways. Pipes are key to this concept.

Before you hear about pipes, though, it’s helpful to know the basic concept of input and output. Many utilities in your Fedora system can operate against files. But they can often take input not stored on a disk. You can think of input flowing freely into a process such as a utility as its standard input (also sometimes called stdin).

Similarly, a tool or process can display information to the screen by default. This is often because its default output is connected to the terminal. You can think of the free-flowing output of a process as its standard output (or stdout — go figure!).

Examples of standard input and output


Often when you run a tool, it outputs to the terminal. Take for instance this simple sequence command using the seq tool:

$ seq 1 6
1
2
3
4
5
6

The output, which is simply to count integers up from 1 to 6, one number per line, comes to the screen. But you could also send it to a file using the > character. The shell interpreter uses this character to mean “redirect standard output to a file whose name follows.” So as you can guess, this command puts the output into a file called six.txt:

$ seq 1 6 > six.txt

Notice nothing comes to the screen. You’ve sent the ouptut into a file instead. If you run the command cat six.txt you can verify that.

You probably remember the simple use of the grep command from a previous article. You could ask grep to search for a pattern in a file by simply declaring the file name. But that’s simply a convenience feature in grep. Technically it’s built to take standard input, and search that.

The shell uses the < character similarly to mean “redirect standard input from a file whose name follows.” So you could just as well search for the number 4 in the file six.txt this way:

$ grep 4 < six.txt
4

Of course the output here is, by default, the content of any line with a match. So grep finds the digit 4 in the file and outputs that line to standard output.

Introducing pipes


Now imagine: what if you took the standard output of one tool, and instead of sending it to the terminal, you sent it into another tool’s standard input? This is the essence of the pipe.

Your shell uses the vertical bar character | to represent a pipe between two commands. You can find it on most keyboard above the backslash \ character. It’s used like this:

$ command1 | command2

For most simple utilities, you wouldn’t use an output filename option on command1, nor an input file option on command2. (You might use other options, though.) Instead of using files, you’re sending the output of command1 directly into command2. You can use as many pipes in a row as needed, creating complex pipelines of several commands in a row.

This (relatively useless) example combines the commands above:

$ seq 1 6 | grep 4
4

What happened here? The seq command outputs the integers 1 through 6, one line at a time. The grep command processes that output line by line, searching for a match on the digit 4, and outputs any matching line.

Here’s a slightly more useful example. Let’s say you want to find out if TCP port 22, the ssh port, is open on your system. You could find this out using the ss command* by looking through its copious output. Or you could figure out its filter language and use that. Or you could use pipes. For example, pipe it through grep looking for the ssh port label:

$ ss -tl | grep ssh
LISTEN 0 128 0.0.0.0:ssh 0.0.0.0:* LISTEN 0 128 [::]:ssh [::]:*

* Those readers familiar with the venerable netstat command may note it is mostly obsolete, as stated in its man page.

That’s a lot easier than reading through many lines of output. And of course, you can combine redirectors and pipes, for instance:

$ ss -tl | grep ssh > ssh-listening.txt

This is barely scratching the surface of pipes. Let your imagination run wild. Have fun piping!




https://www.sickgaming.net/blog/2019/08/...ect-tools/
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Fedora - Quick Fedora shirt update and sale of last stock with the old logo xSicKxBot 0 2,055 09-16-2023, 12:28 PM
Last Post: xSicKxBot
  Fedora - Control the firewall at the command line xSicKxBot 0 1,530 03-20-2020, 12:09 PM
Last Post: xSicKxBot
  Fedora - Connect your Google Drive to Fedora Workstation xSicKxBot 0 1,430 03-16-2020, 11:27 AM
Last Post: xSicKxBot
  Fedora - Using the Quarkus Framework on Fedora Silverblue – Just a Quick Look xSicKxBot 0 1,601 03-11-2020, 06:13 AM
Last Post: xSicKxBot
  Fedora - Connect Fedora to your Android phone with GSConnect xSicKxBot 0 1,444 02-08-2020, 10:35 AM
Last Post: xSicKxBot
  Fedora - Set up an offline command line dictionary in Fedora xSicKxBot 0 1,614 01-23-2020, 05:01 AM
Last Post: xSicKxBot
  Fedora - A quick introduction to Toolbox on Fedora xSicKxBot 0 1,721 11-30-2019, 04:57 AM
Last Post: xSicKxBot
  Fedora - Firefox tips for Fedora 31 xSicKxBot 0 1,688 10-31-2019, 09:09 PM
Last Post: xSicKxBot
  Fedora - Command line quick tips: Locate and process files with find and xargs xSicKxBot 0 1,673 10-22-2019, 08:39 PM
Last Post: xSicKxBot
  Fedora - Command line quick tips: Searching with grep xSicKxBot 0 1,648 09-08-2019, 08:55 PM
Last Post: xSicKxBot

Forum Jump:


Users browsing this thread:

Forum software by © MyBB Theme © iAndrew 2016