Copy files from a numeric range to another folder
Solution 1:
You could just do
cp {14..39}.mp3 Volume2
But the for-loop is handy for other things:
for f in {14..39}.mp3; do cp "$f" Volume2; done
You could just do
cp {14..39}.mp3 Volume2
But the for-loop is handy for other things:
for f in {14..39}.mp3; do cp "$f" Volume2; done