I have a lot of .iso files in different directories on my computer and I want to move them all at once to some folder. What I would use for searching those file is find and mv to move it. The obvious way of doing this would be
find / -name "*.iso" | mv --target-directory=/home/ISO/
but it doesn't work. Any ideas?