CV_Typst/render.sh

16 lines
310 B
Bash
Executable File

#!/bin/bash
### VARS ###
NAME="Felix"
SURNAME="Desmaretz"
### CLEAN ###
mkdir -p out
rm -f out/*
### COMPILE ###
# EN
typst compile --font-path fonts cv_en.typ && mv cv_en.pdf "out/Resume_${SURNAME}_${NAME}.pdf"
# FR
typst compile --font-path fonts cv_fr.typ && mv cv_fr.pdf "out/CV_${SURNAME}_${NAME}.pdf"