Bash script to find specific files in a hierarchy of files
问题 I have a folder in which there are many many folder and in each of these I have lots and lots of files. I have no idea which folder each files might be located in. I will periodically receive a list of files I need to copy to a predefined destination. The script will run on a Unix machine. So, my little script should: read received list find all files in the list copy each file to a predefined destination via SCP step 1 and 3, I think I'll manage on my own, but how will I do step 2? I was