I have a temp file o2.csv generated in a loop. I want to cut it's 2nd column and paste it to another file g3temp.csv.
paste <(cut -f 2 o2.csv) g3temp.csv > g3temp.csv
this command generates correct output if the write is made to some new file:
paste <(cut -f 2 o2.csv) g3temp.csv > g3new.csv
why is the write to the same file not giving correct result?