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