By combining the find, sed, and sh commands using the pipe mechanism you can compose flexible and powerful command lines. For example, in one step you can rename all files whose name match specified criteria under a specified directory by replacing parts of each file name. Read more...

Your find command needs single quotes around the ‘*song*abc2009*.jpg ‘ to prevent wildcard expansion.
For a small number of files in the same directory echo *song*abc2009*.jpg will work.