mv_img.sh 156 B

123456789
  1. #!/bin/bash
  2. for img_num in "$@"; do
  3. echo "Moving $img_num from DLs to PHOTOs"
  4. mv ~/Downloads/IMG_${img_num}.JPG static/photos/IMG_${img_num}.jpg
  5. done