info_tfgrid/collections/tech/qsss/img/create_png.sh
2024-03-18 14:28:08 +02:00

10 lines
157 B
Bash

#!/bin/bash
for name in ./*.mmd
do
output=$(basename $name mmd)png
echo $output
mmdc -i $name -o $output -w 4096 -H 2160 -b transparant
echo $name
done