That’s not totally insensible - a similar thing can be accomplished with sed or perl, you just need to get the regular expression right. Something like the following (untested)
$ sed -E 's/^GCA_[0-9]+\|//' oldfile.txt > newfile.txt
That’s not totally insensible - a similar thing can be accomplished with sed or perl, you just need to get the regular expression right. Something like the following (untested)
$ sed -E 's/^GCA_[0-9]+\|//' oldfile.txt > newfile.txt