Forrest logo
back to the find tool

find:ai:e71fc

Recursively finds all files ending with .mkv and moves them to specified path.
$ find /path/to/start -type f -name '*.mkv' -exec mv {} /destination/path \;
try on your machine

Recursively finds all files ending with .mkv and moves them to specified path.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.

Questions that are answered by this command:

  • move all files recursively ending with .mkv to path?
back to the find tool