Advertisement
jhangyu

Move HDR+ photo

Jul 12th, 2018
928
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.26 KB | None | 0 0
  1. cd /storage/emulated/0/DCIM/Camera/
  2. for dir in */
  3. do
  4.     echo $dir
  5.     cd $dir
  6.     echo moving image files
  7.     mv *.dng /storage/emulated/0/DCIM/dng
  8.     mv *.jpg /storage/emulated/0/DCIM/Camera
  9.     cd /storage/emulated/0/DCIM/Camera
  10.     rm -r $dir
  11. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement