Files
scripts/catix
2025-06-20 21:46:44 +02:00

9 lines
154 B
Bash
Executable File

#!/usr/bin/env bash
if [[ "$1" == "-g" ]]; then
GEOMETRY="$2"
shift 2
fi
for f in "$@"; do
convert "$f" -geometry ${GEOMETRY:=800x480} sixel:-
done