zshの関数を作成した
3行くらいのシンプルなやつ
memo```function hugon () { post_path='post/'$(date +%Y)'/'$(date +%m)'/'$(date +%d)'/'$1'/index.md'; hugo new $post_path;} ```
思考の /dev/null
memo
```
function hugon () {
post_path='post/'$(date +%Y)'/'$(date +%m)'/'$(date +%d)'/'$1'/index.md';
hugo new $post_path;
}
```