2026-07-17
tool

part of this sitemaker for (unix) hackers

#!/bin/sh -Cefu


set -Cefu


_css()
{
	local file="$1"
	
	
	exiftool -n -csv -ImageSize "$file" | fgrep -v ImageSize \
	| cut -d , -f 2 | xargs printf 'width: %s; height: %s;'
}


echo '<p>'
echo

for img in $*
do
	resized="`echo \"$img\" | sed 's|\.|-resized.|'`"
	
	convert "$img" -resize 375x "$resized"
	
	cat <<- eof
	<a href="$img">
	<img src="$resized" alt="$resized"
	style="`_css "$resized"`">
	</a>
	
	eof
done

echo '</p>'
created [1784246692] 2026-07-17 03:04:52 +0300/EEST, modified [1784246935] 2026-07-17 03:08:55 +0300/EEST