Search Results

Search: Posts Made By: haakon
13,788
Posted By haakon
Does any of these sooth your need? awk...
Does any of these sooth your need?

awk '/<\/text>/,/<text>/{next}1' file_name
sed '/<\/text>/,/<text>/d' file_name
2,450
Posted By haakon
A couple of one liners that do the same using awk...
A couple of one liners that do the same using awk or sed

paste -d" " file1 file2 | awk '/<header>/,/<\\header>/{next}1' > file3
paste -d" " file1 file2 | sed '/<header>/,/<\\header>/d' > file3
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 09:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy