I would like to copy all files out of a dir except for one named Default.png. It seems that there are a number of ways to do this. What seems the most effective to you?
use the shell's expansion parameter with regex
cp //[^not_to_copy_file]* .
Everything will be copied except for the not_to_copy_file
-- if something is wrong with this. please Specify !