Rimuovere linee vuote da un file

 

Rimuovere linee vuote da un file

 

Come rimuovere linee vuote da un file usando, sed, awk, tr e grep:

$ sed '/^$/d' file.txt
$ awk '/./' file.txt
$ tr -s '\n' < file.txt
$ grep -v "^$" file.txt
$ grep -v "^$" file_input.txt > file_output.txt

enjoy 😉

 

 

Autore: Franco Conidi aka edmond

Senior System Integrator, Network Administrator, Sys Admin Linux, Linux User, Consulente Informatico.

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *