16 lines
308 B
Bash
Executable File
16 lines
308 B
Bash
Executable File
#!/bin/sh
|
|
|
|
### 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"
|