ReachableCEO-Profile-FullTi.../non-cv/build.sh

82 lines
2.1 KiB
Bash
Raw Normal View History

2024-11-27 19:59:37 +00:00
#!/bin/bash
rm ./output/intermediate/CharlesNWybleShortResume.md
IntermediateOutputFile="./output/intermediate/CharlesNWybleShortResume.md"
# Combine markdown files into single input file for pandoc
echo "Combining markdown files..."
2024-11-27 19:59:37 +00:00
#Pull in my contact info
cat "../common/Contact-Info.md" >> $IntermediateOutputFile
2024-11-27 19:59:37 +00:00
echo " " >> $IntermediateOutputFile
#Pull in my skills
2024-11-28 19:00:01 +00:00
echo "## Skills" >> "$IntermediateOutputFile"
#Table heading
echo "|Skill|Experience|Skil Details|" >> $IntermediateOutputFile
echo "|---|---|---|" >> $IntermediateOutputFile
#Table rows
IFS=$'\n\t'
for skill in \
$(cat ../common/Skills.csv); do
2024-11-28 19:00:01 +00:00
SKILL_NAME="$(echo $skill|awk -F '|' '{print $1}')"
SKILL_YEARS="$(echo $skill|awk -F '|' '{print $2}')"
SKILL_DETAIL="$(echo $skill|awk -F '|' '{print $3}')"
echo "|**$SKILL_NAME**|$SKILL_YEARS|$SKILL_DETAIL|" >> $IntermediateOutputFile
done
unset IFS
2024-11-27 19:59:37 +00:00
echo "\pagebreak" >> $IntermediateOutputFile
2024-11-27 19:59:37 +00:00
#Pull in my projects
cat "./Projects.md" >> $IntermediateOutputFile
2024-11-27 19:59:37 +00:00
echo " " >> $IntermediateOutputFile
echo "\pagebreak" >> $IntermediateOutputFile
2024-11-27 19:59:37 +00:00
#Pull in my work history
2024-11-27 19:59:37 +00:00
echo " " >> $IntermediateOutputFile
echo "## Employment History" >> $IntermediateOutputFile
2024-12-02 10:34:09 +00:00
IFS=$'\n\t'
for position in \
$(cat ../common/WorkHistory.csv); do
COMPANY="$(echo $position|awk -F ',' '{print $1}')"
TITLE="$(echo $position|awk -F ',' '{print $2}')"
DATEOFEMPLOY="$(echo $position|awk -F ',' '{print $3}')"
echo " " >> "$HumanIntermediateOutputFile"
echo "**$COMPANY** | $TITLE | $DATEOFEMPLOY" >> $HumanIntermediateOutputFile
echo " " >> "$HumanIntermediateOutputFile"
cat ../cv/@ReachableCEO/Resume/CV/$COMPANY.md >> "$HumanIntermediateOutputFile"
echo " " >> "$HumanIntermediateOutputFile"
done
unset IFS
2024-11-27 19:59:37 +00:00
#Pull in my education info
2024-11-27 19:59:37 +00:00
echo " " >> $IntermediateOutputFile
cat "../common/Education.md" >> $IntermediateOutputFile
2024-11-27 19:59:37 +00:00
2024-11-28 15:19:14 +00:00
# Run pandoc to generate PDF into output dir
2024-11-27 19:59:37 +00:00
echo "Generating PDF..."
2024-11-27 19:59:37 +00:00
pandoc \
2024-11-27 20:06:31 +00:00
$IntermediateOutputFile \
2024-11-27 19:59:37 +00:00
--template eisvogel \
2024-12-02 10:34:09 +00:00
--metadata-file=./HumanOutput-NonCV.yml \
2024-11-27 19:59:37 +00:00
--from markdown \
--to=pdf \
2024-11-27 20:05:12 +00:00
--output /d/tsys/@ReachableCEO/resume.reachableceo.com/non-cv/CharlesNWybleShortResume.pdf