Moving Files containing a specific string

Posted on December 25, 2006 in Linux

So far i found this solution to move files from current directory to a given one:
find . -type f -iname '*string*' -exec mv {} /dir \;
If someone knows something shorter, please let me know.