I have a tab delimited txt file with two columns of data, ex:
PopA 1
PopB 2
PopC 3
PopD 4
I would like to paste a third column for the entire file, with each line being the same, 'EcoRI', thus:
PopA 1 EcoRI
PopB 2 EcoRI
PopC 3 EcoRI
PopD 4 EcoRI
What is a convenient way to do this simple process in Terminal??
Thanks