Como posso apagar linhas em branco em um arquivo? [duplicado]

0

Eu tenho um arquivo .txt como este:

Euqueroquesejaassim:

Estou pensando em substituir /(beginning of line)(new line character)/ .

    
por Forwarding 17.08.2016 / 03:30

1 resposta

3

Por favor, não poste fotos de texto; copie e cole do terminal para a questão.

Existem várias maneiras de filtrar linhas em branco. Dois dos mais simples seriam os seguintes.

com grep :

grep -v '^$' /path/to/input > /path/to/output

com sed :

sed '/^$/d' /path/to/input > /path/to/output
sed --in-place '/^$/d' /path/to/input # modify the file rather than creating a new one
    
por 17.08.2016 / 03:52