I'm trying to copy all files of a certain type, in one folder and its subfolders!
I know cp /source/path /path/to/destination_path
.
And I know find . -name "*.mp4"
I tried cp "$(find . -name "*.mp4")" /path/to/destination
. Though the problem seems to be, that find puts out the results in one string.
Do you got any solution? Thanks in advance. :)