常用操作

  • 正则替换
echo "[test](test.md)" | sed -E 's/\((.*).md/(\/\1\.html/g' 
# [test](/test.html)

这是当前站点用来替换路径的脚本

参考