Add script for testing lots of files in content folder.

This commit is contained in:
Dillon Kearns 2020-10-14 10:09:13 -07:00
parent 81df8b7094
commit 5b5b2b4cda

View File

@ -0,0 +1,7 @@
#!/bin/bash
cd content
for i in {1..1000}
do
echo -e "---\ntitle: Post Number\ntype: page\n---\n\n## Page $i\n\nWelcome to page $i" > "page-$i.md"
done