Skip to content

Instantly share code, notes, and snippets.

View skpassegna's full-sized avatar
👨‍💻
Focusing

Samuel Kpassegna skpassegna

👨‍💻
Focusing
View GitHub Profile
@skpassegna
skpassegna / convert.bat
Created February 24, 2024 05:27
This script will convert all SVG files in the current directory to PDF files using Inkscape. (Windows)
@echo off
REM Check if Inkscape is installed
if exist "%ProgramFiles%\Inkscape\bin\inkscape.exe" (
set inkscape_path=%ProgramFiles%\Inkscape\bin\inkscape.exe
) else (
echo Error: Inkscape not found. Please install it from https://inkscape.org/
exit /b 1
)