(not set) | |
Blog | (not set) |
Website | (not set) |
0
score
|
Insert lines from one text file to another one$ awk 'NR % 10 == 1 {getline f2 < "file1"; print f2} 1' file2 | cat -n |
1
score
|
Insert lines from one text file to another one$ sed -re ':a;Rfile1' -e 'x;s/^/./;/.{10}/!{x;ba};s/.*//;x' file2 |