Voglio sostituire le righe che corrispondono a un modello da un file dalle righe in ordine da un altro file, ad esempio, dato:
file1.txt :
aaaaaa
bbbbbb
!! 1234
!! 4567
ccccc
ddddd
!! 1111
ci piace sostituire le righe che iniziano con !! con le righe di questo file:
file2.txt :
first line
second line
third line
quindi il risultato dovrebbe essere:
aaaaaa
bbbbbb
first line
second line
ccccc
ddddd
third line
Risposta accettata:
Facile può essere fatto con awk
awk '
/^!!/{ #for line stared with `!!`
getline <"file2.txt" #read 1 line from outer file into $0
}
1 #alias for `print $0`
' file1.txt
Altra versione
awk '
NR == FNR{ #for lines in first file
S[NR] = $0 #put line in array `S` with row number as index
next #starts script from the beginning
}
/^!!/{ #for line stared with `!!`
$0=S[++count] #replace line by corresponded array element
}
1 #alias for `print $0`
' file2.txt file1.txt