4 lines
70 B
Bash
4 lines
70 B
Bash
|
for i in *.drawio
|
||
|
do
|
||
|
drawio -x -f png -t -e -b5 "${i}" "${i}.png"
|
||
|
done
|