Skip to content

Latest commit

 

History

History
executable file
·
62 lines (35 loc) · 1016 Bytes

File metadata and controls

executable file
·
62 lines (35 loc) · 1016 Bytes

工具

KATEX在线编辑

http://latex.codecogs.com/eqneditor/editor.php

docsify

docsify

cd xxx  # xxx.docs
docsify init ./
docsify serve docs

shell

批量替换内容

# ==================批量替换内容==================

find ./ -name "*.md" | xargs perl -pi -e "s/SUMMARY.md/README.md/gi"
find ./ -name "*.md.bak" | xargs rm -f

批量替换内容

# ==================批量替换内容==================

find ./ -name "*.md" | xargs sed -i "" "s/^[$][$]$/vvvv/g"

find ./ -name "*.md" | xargs sed -i "" "s/[$][$]/\$/g"

find ./ -name "*.md" | xargs sed -i "" "s/vvvv/\$\$/g"

批量替换内容

# ==================批量替换内容==================

find ./ -name "*.md" | xargs sed -i "" "s/- \[/\* \[/g"

批量删除内容

# ==================批量删除内容==================
find ./ -name "*.md" | xargs sed -i "" "s/xxx/d"