Skip to content

Instantly share code, notes, and snippets.

@QuentinGoulas
QuentinGoulas / drawio_to_pdf.bash
Last active October 19, 2025 14:14
A bash script to convert draw.io files to pdf automatically
#!/bin/bash
echo ------------------------- Converting drawio to PDF ------------------------------
COUNTER=0
for filename in ./*.drawio; do
echo " 🔁 $converting {filename} ..."
DUMMY=$(rm "${filename}.pdf" 2>&1)