Skip to content

Instantly share code, notes, and snippets.

@byk0t
Created November 29, 2020 20:38
Show Gist options
  • Save byk0t/8f42d80ca0f4cb300858606c2c827f83 to your computer and use it in GitHub Desktop.
Save byk0t/8f42d80ca0f4cb300858606c2c827f83 to your computer and use it in GitHub Desktop.
Resize (by width) all images in the folder by single command (using imagemagick convert)
for file in *.jpg; do convert $file -resize 1000 $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment