How to move a different file type into a specific folder with just one single command:
find . -type f -name '*.txt' -exec mv "{}" /mnt/Backup01/ \;
How to move a different file type into a specific folder with just one single command:
find . -type f -name '*.txt' -exec mv "{}" /mnt/Backup01/ \;