Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mastering Bash

You're reading from  Mastering Bash

Product type Book
Published in Jun 2017
Publisher Packt
ISBN-13 9781784396879
Pages 502 pages
Edition 1st Edition
Languages
Author (1):
Giorgio Zarrelli Giorgio Zarrelli
Profile icon Giorgio Zarrelli

Table of Contents (15) Chapters

Preface 1. Let's Start Programming 2. Operators 3. Testing 4. Quoting and Escaping 5. Menus, Arrays, and Functions 6. Iterations 7. Plug into the Real World 8. We Want to Chat 9. Subshells, Signals, and Job Controls 10. Lets Make a Process Chat 11. Living as a Daemon 12. Remote Connections over SSH 13. Its Time for a Timer 14. Time for Safety

Pipes

We can describe a pipeline as a sequence of processes tied together by stdout and stdin so that the output of one process becomes the input of the following one. This is a simple form of IPC, commonly known as anonymous pipe, and it is a one-way form of communicating: whatever comes from standard output of the preceding process flows into the standard input of the following one; nothing comes back from the latter to the former.

Let's see an example that will clarify the concept of anonymous pipe, staring with a simple ps command:

zarrelli:~$ ps 
PID TTY TIME CMD
1427 pts/0 00:00:00 bash
12112 pts/0 00:00:00 ps

We have a simple listing with some commands: PID, TTY, and CMD. Let's say we want to trim down the output to just PID and CMD. We could alter the output using some ps switches, but who remembers them? It's easier to use something that is capable of mangling...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}