Differenze tra le versioni di "Eliminare righe da un file"

Da Caos per caso.
Jump to navigation Jump to search
imported>Giorgio
 
imported>Giorgio
 
(2 versioni intermedie di un altro utente non mostrate)
Riga 1: Riga 1:
 
 
 
Per eliminare tutte le righe da un file che contengono una certa stringa
 
Per eliminare tutte le righe da un file che contengono una certa stringa
  
 +
cat /path/to/file/501_6h.txt | grep -v 2007,000,0000 > /new/path/501_6h.txt.new
  
 +
l'opzione -v nega
  
cat /path/to/file/501_6h.txt | grep -v 2007,000,0000 > /new/path/501_6h.txt.new
+
[[Category:Linux]]
 
 
 
 
 
 
l'opzione -v nega
 

Versione attuale delle 16:19, 3 ott 2009

Per eliminare tutte le righe da un file che contengono una certa stringa

cat /path/to/file/501_6h.txt | grep -v 2007,000,0000 > /new/path/501_6h.txt.new

l'opzione -v nega