I have a list of file names like
./run_results/rat/coding_exons/0.01_100_best.txt ./run_results/mouse/introns/0.01_100_best.txt
I want to create new files with names like rat_coding_exons_0.01_100_best.txt
or mouse_introns_0.01_100_best.txt
Problem is, when I try to cut these file names, cut instead starts cutting each line in said files (sensible, but not what I want).
find . -name "*0.01*txt" | echo
returns nothing so there is nothing for me to cut. That, however is not your fault so upvote. – The Unfun Cat Jun 23 '13 at 08:48