chg: [build] generate markdown table of all the trainings

improvedChecklist
Alexandre Dulaunoy 2018-12-29 23:01:50 +01:00
parent 87b413f076
commit a1df214f9a
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 8 additions and 0 deletions

View File

@ -51,3 +51,11 @@ cd ..
exiftool -overwrite_original_in_place -Title="MISP Training and Slide Decks" -Author="CIRCL Computer Incident Response Center Luxembourg" -Subject="MISP Threat Intelligence Platform Training Materials" -Keywords="MISP Threat Intelligence CTI STIX information sharing yara sigma suricata snort bro openioc threat-actor TIP threat intelligence platform circl.lu training cybersecurity MISPProject" misp-training.pdf
rm table.md
echo "| Slides (PDF) | Source Code |">>table.md
for t in ${slidedecks[@]}; do
echo "| [${t}](https://www.misp-project.org/misp-training/${t}.pdf) | [source](https://github.com/MISP/misp-training/tree/master/${t}) |" >>table.md
done