今天下午花了半小时,将原来octopress的静态博客迁移支hexo中,小记在此。
常用的hexo命令:

  1. 新建博客:hexo new 博客迁移
  2. 推送博客:hexo clean && hexo generate && hexo deploy

同时,我也更新了两个脚本:生成博客blog_post.sh和发布博客publish.sh。

1
2
3
4
5
6
7
8
9
#!/bin/bash
# blog_post
BLOG_DIR=~/hexo_blog/source/_posts
cd $BLOG_DIR
DATA=`date +%Y-%m-%d`
NEW_POST_PATH=`hexo new "$DATA-$*" | awk '/INFO Created:/ {print $3}'`
echo "Editing blog entry $NEW_POST_PATH"
sleep 1
subl $NEW_POST_PATH &
1
2
3
4
5
6
7
#!/bin/bash
# publish.sh
hexo clean
hexo generate
hexo deploy
sleep 2
open "http://xxxxx.github.io/"