From terminals, via pipes, to processing actual text
Marek Šuppa
Ondrej Jariabka
Adrián Matejov
It teaches you the Unix philosophy, which is to
Write programs that do one thing and do it well
Write programs to work together
Write programs to handle text streams, because that is a universal interface
-- Doug McIlroy, creator of Unix pipes
It teaches you the Unix philosophy, which is to
Write programs that do one thing and do it well
Write programs to work together
Write programs to handle text streams, because that is a universal interface
-- Doug McIlroy, creator of Unix pipes
Or in other words
KISS: Keep It Simple, Stupid
Standardizing input/output has been a big breakthrough of UNIX
Unline in previous systems, the input/output devices have been abstracted
Plus the programmer needed to do absolutelly nothing to have some standard input/output set up for their program
By default, any process (command/application) has access to:
stdin
(0): standard input (keyboard)
stdout
(1): standard output (terminal)
stderr
(2): standard error (terminal)
Also referred to as "standard I/O streams".
By default, any process (command/application) has access to:
stdin
(0): standard input (keyboard)
stdout
(1): standard output (terminal)
stderr
(2): standard error (terminal)
Also referred to as "standard I/O streams".
From the point of view of the process, these are files like any other.
Represented by "file descriptors" (IDs) 0, 1 and 2.
By default, they are all connected to the terminal.
echo string
stdout
$ echo HelloHello
$ echo "Hi there"Hi there
echo string
stdout
$ echo HelloHello
$ echo "Hi there"Hi there
cat FILE
FILE
to stdout
FILE
is specified (or when FILE
is -
), read stdin
$ cat text.txtThis is a sample text from the text.txt file.
$ catHiHithere!there!
command > file.txt
command
will be redirected to file.txt
$ echo Hello > output.txt$ cat output.txtHello$ cat output.txt > file.txt$ cat file.txtHello
command >> file.txt
command
will be appended to file.txt
$ echo Hi > output.txt$ echo there! >> output.txt$ cat output.txtHithere!
Note that >
overrides the contents of the file -- anything that was in it will be removed.
Standard I/O can also be referenced via numbers
For instance, the following sends the error output to /dev/null
$ pip install somepackage 2> /dev/null
it is possible to combine multiple redirections in the same command
the following forwards the stdout
to output.log
and stderr
to error.log
$ pip install unknownpkg 1> output.log 2> error.log
Perhaps the single most striking invention in Unix (source)
A simple way of forwarding the stdout
from one command to the stdin
of another one.
The image below represents the following call (the pipe is denoted |
):
$ command1 | command2
Perhaps the single most striking invention in Unix (source)
A simple way of forwarding the stdout
from one command to the stdin
of another one.
The image below represents the following call (the pipe is denoted |
):
$ command1 | command2
Similarly to &>
, there exists a way of sending both the stdout
and stderr
to the stdin
of another process
This is done via the |&
shortcut (not used that much in practice though)
$ command1 |& command2
head
and tail
head
-n k
only outputs the first k
lines-n -k
outputs all but the last k
linestail
-n k
only outputs the last k
lines-n +k
output starts at line k
-f
output appends as the file grows$ cat file.txt1 Adam2 Beatrice3 Cynthia4 David5 Emma$ head -n 3 file.txt1 Adam2 Beatrice3 Cynthia$ head -n -3 file.txt1 Adam2 Beatrice$ tail -n 3 file.txt3 Cynthia4 David5 Emma$ tail -n +4 file.txt4 David5 Emma
sort
sorts the input (file or stream of characters)
-r
prints the sorted lines in reverse
-n
makes the sorting numeric
-k m
sort by column m
(set sort key)
$ sort -k 2 file.txt13 Adam02 Beatrice3 Cynthia-4 David5 Emma
$ cat file.txt02 Beatrice5 Emma-4 David3 Cynthia13 Adam$ sort file.txt02 Beatrice13 Adam3 Cynthia-4 David5 Emma$ sort -r file.txt5 Emma-4 David3 Cynthia13 Adam02 Beatrice$ sort -n file.txt-4 David02 Beatrice3 Cynthia5 Emma13 Adam
uniq
removes the duplicate lines
-d
only outputs duplicates
-u
only outputs unique lines (those without duplicates)
-i
makes the comparison case-insensitive
-c
prints out the number of repetitions
$ cat file.txtAmyAmyBobCarolCarolCarol$ uniq file.txtAmyBobCarol$ uniq -d file.txtAmyCarol$ uniq -u file.txtBob$ uniq -c file.txt2 Amy1 Bob3 Carol
sort
+ uniq
== strong combosort
+ uniq
== strong combo$ cat attempts.txtjoelenajoejoegarfieldlenawoegarfield$ cat attempts.txt | sortgarfieldgarfieldjoejoejoelenalenawoe
$ cat attempts.txt | sort | uniq -c 2 garfield 3 joe 2 lena 1 woe$ cat attempts.txt | sort | uniq -c | sort 1 woe 2 garfield 2 lena 3 joe$ cat attempts.txt | sort | uniq -c | sort -r 3 joe 2 lena 2 garfield 1 woe
tr
the standard usage is tr [SET1] [SET2]
translate from one set of characters ([SET1]
) to the other ([SET2]
)
the sets (which need to be of the same size) can be defined as
abcdef
)a-z
, A-Z
or 0-9
)[:digit:]
(all digits), [:alpha:]
(all letters) or [:lower:]
and [:upper:]
(lower and upper case letters)$ echo "Hi There" | tr abcdef ABCDEFHi ThErE$ echo "Hi There" | tr a-z A-ZHI THERE$ echo "Hi There" | tr [:upper:] [:lower:]hi there
-d
removes the characters specified in [SET1]
$ echo "Hi There" | tr -d abcdefHi Thr
$ cat attempts.txt | sort > file1.txt$ cat file1.txt[ ... output ommited ... ]$ cat file1.txt | uniq -c > file2.txt$ cat file2.txt[ ... output omitted ... ]$ cat file2.txt | sort -r > file3.txt$ cat file3.txt[ ... output omitted ... ]
$ cat attempts.txt | sort > file1.txt$ cat file1.txt[ ... output ommited ... ]$ cat file1.txt | uniq -c > file2.txt$ cat file2.txt[ ... output omitted ... ]$ cat file2.txt | sort -r > file3.txt$ cat file3.txt[ ... output omitted ... ]
$ cat attempts.txt | sort | uniq -c | sort -r
This is the massive advantage of having a powerful shell:
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |