12/19/2015

Bash rename with count

j=1;for i in *.jpg; do mv "$i" xmas_"$j".jpg; let j=j+1;done