Remove a special character and Insert that to a line
- by Kraj
How to remove a special character(#) from a big file and insert that character to a particular line for example
input.tsv
$22 23 24 25 26
33 33 34 35 36
44 45 46 47 48
ID ID1 ID2 ID3 ID4
Output.tsv
22 23 24 25 26
33 33 34 35 36
44 45 46 47 48
$ID ID1 ID2 ID3 ID4
I've used the sed -e 's/#//g' input.tsv file to remove the '$' then how can I include '$' to the line starting with ID