echo "










                * ======================================== *
                | find jpg                                 |
                | Press Enter...                         |
                * ======================================== *










"
read ""


find ~ -name '*.jpg'

echo "
clear








                * ======================================== *
                | copy to ~/pic                            |
                | Press Enter To Start.                    |
                * ======================================== *






"


read

find ~ -name '*.jpg' | xargs -i cp -v {} '~/pic'
