1
0
This commit is contained in:
2024-04-05 23:23:23 +09:00
parent 427b643a47
commit 4c5be2105c
8 changed files with 61 additions and 16 deletions

16
scpt/md.zsh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/zsh
d=${0:a:h:h}
c=$d/content/blog
for i in $(seq -w 1 20)
do
d=2024-01-$i
f=$c/$d-test.md
echo "
+++
date = \"${d}T00:00:00+09:00\"
title = \"${RANDOM}\"
+++
" >! $f
done