2025-02-26 21:26:50 -05:00

11 lines
146 B
Bash

#!/bin/bash
if [ $# -ne 1 ]; then
echo "Usage: $0 <image_file>"
exit 1
fi
IMAGE_FILE=$1
convert "$IMAGE_FILE" -rotate 90 "$IMAGE_FILE"