dots


dots / config / .local / bin
xxwhirlpool  ·  2026-03-12

resizeimg

 1#!/usr/bin/env bash
 2
 3WORKDIR=$(pwd)
 4
 5TMPDIR="/home/kat/Pictures/Camera/tmp-resize"
 6
 7cd "$WORKDIR" || exit 1
 8
 9for f in *.jpg; do mv "$f" "$TMPDIR"; done
10
11cd "$TMPDIR" && magick -size 3000x4000 *.jpg -resize 40% "../${f%.*}-resized.jpg" && rm -rf *.jpg