ReachableCEO-Profile-FullTi.../non-cv/build.sh
2024-11-28 09:19:14 -06:00

43 lines
1.2 KiB
Bash

#!/bin/bash
rm ./output/intermediate/CharlesNWybleShortResume.md
IntermediateOutputFile="./output/intermediate/CharlesNWybleShortResume.md"
# Combine markdown files into single input file for pandoc
NonCvResumeInputFiles=(
"../@ReachableCEO/Resume/Non-CV/Skills.md"
"../@ReachableCEO/Resume/Non-CV/Projects.md"
)
#Pull in my contact info
cat "../common/@ReachableCEO/Resume/Common/Contact-Info.md" >> $IntermediateOutputFile
echo " " >> $IntermediateOutputFile
#Pull in my skills
cat "../common/@ReachableCEO/Resume/Common/Skills.md" >> $IntermediateOutputFile
echo " " >> $IntermediateOutputFile
#Pull in my projects
cat "./@ReachableCEO/Resume/Non-Cv/Projects.md" >> $IntermediateOutputFile
echo " " >> $IntermediateOutputFile
#Pull in my work history
cat "../common/WorkHistory.md" >> $IntermediateOutputFile
echo " " >> $IntermediateOutputFile
#Pull in my education info
cat "../common/@ReachableCEO/Resume/common/Education.md" >> $IntermediateOutputFile
echo " " >> $IntermediateOutputFile
# Run pandoc to generate PDF into output dir
pandoc \
$IntermediateOutputFile \
--template eisvogel \
--metadata-file=../common/HumanOutput.yml \
--from markdown \
--to=pdf \
--output /d/tsys/@ReachableCEO/resume.reachableceo.com/non-cv/CharlesNWybleShortResume.pdf