I want to move all files matching a certain pattern in the current directory to another directory.
For example, how would I move all the files starting with
find . | grep "your_pattern" | xargs mv destination_directory
Does the following: