Skip to content

Instantly share code, notes, and snippets.

@cskonopka
Created September 18, 2022 01:04
Show Gist options
  • Save cskonopka/93155064ada2a34ea32868b9b55bb23c to your computer and use it in GitHub Desktop.
Save cskonopka/93155064ada2a34ea32868b9b55bb23c to your computer and use it in GitHub Desktop.
#!/bin/bash
n=0;
for file in *.jpg ; do mv "${file}" "${n}".jpg; n=$((n+1)); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment