Skip to Content
Linux eficiente na linha de comandos
book

Linux eficiente na linha de comandos

by Daniel J. Barrett
April 2025
Intermediate to advanced
248 pages
6h 19m
Portuguese (Portugal, Brazil)
O'Reilly Media, Inc.
Content preview from Linux eficiente na linha de comandos

... log de um servidor web para processar suas linhas da mais nova para a mais antiga:

192.168.1.34 - - [30/Nov/2021:23:37:39 -0500] "GET / HTTP/1.1" ...
192.168.1.10 - - [01/Dec/2021:00:02:11 -0500] "GET /notes.html HTTP/1.1" ...
192.168.1.8 - - [01/Dec/2021:00:04:30 -0500] "GET /stuff.html HTTP/1.1" ...
⋮

As linhas estão em ordem cronológica com carimbos de data e hora, mas não estão em ordem alfabética ou numérica, portanto o comando sort -r não é útil. O comando tac pode reverter essas linhas sem precisar considerar as marcas de tempo.

O comando colar

O comando paste combina ficheiros lado a lado em colunas separadas por um único carácter de tabulação. É um parceiro do comando cut, que extrai colunas de um ficheiro separado por tabulação:

$ cat title-words1
EFFICIENT
AT
COMMAND
$ cat title-words2
linux
the
line
$ paste title-words1 title-words2
EFFICIENT	linux
AT	the
COMMAND line
$ paste title-words1 title-words2 | cut -f2        cut & paste are complementary
linux
the
line

Altera o separador para outro carácter, como uma vírgula, com a opção -d (que significa "delimitador"):

$ paste -d, title-words1 title-words2
EFFICIENT,linux
AT,the
COMMAND,line

Transpõe a saída, produzindo linhas coladas em vez de colunas coladas, com aopção-s:

$ paste -d, -s title-words1 title-words2
EFFICIENT,AT,COMMAND
linux,the,line

paste também intercala dados de dois ou mais ficheiros se alterar o separador para um carácter de nova linha (\n):

$ paste -d "\n" title-words1 title-words2 EFFICIENT linux AT the ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Aprende o Linux moderno

Aprende o Linux moderno

Michael Hausenblas

Publisher Resources

ISBN: 9798341642164