Copy a range of files in command line (ZSH/BASH)

Solution 1:

You were very close. Your question was almost the correct syntax:

cp P10802{75..83}.JPG ~/Images

Solution 2:

To iterate over a range in bash:

for x in {0..10}; do echo $x; done

Applying the same in your case:

for x in {272..283}; do cp P1080$x.JPG ~/Images; done