git-secret/create_posts.sh
2016-02-24 00:50:36 +03:00

53 lines
1.1 KiB
Bash

#!/usr/bin/env bash
set -e
MAN_LOCATION="man/man1"
POSTS_LOCATION="_posts"
function checkout_manuals {
git checkout master "$MAN_LOCATION"
# rm -f $MAN_LOCATION/*.1
}
function copy_to_posts {
# Cleaning old files:
rm -f $POSTS_LOCATION/*.md
# Moving new command files:
local timestamp=$(date "+%Y-%m-%d %H:%M:%S %z")
local current_date=$(date "+%Y-%m-%d")
# Creating command refernce:
for com in $MAN_LOCATION/git-secret-*.1.ronn; do
local short_name=$(echo "$com" | sed -n "s|$MAN_LOCATION/\(.*\)\.1\.ronn|\1|p")
local command_header="---
layout: post
title: '${short_name}'
date: ${timestamp}
categories: command
---"
local post_filename="$POSTS_LOCATION/${current_date}-${short_name}.md"
echo "$command_header" > "$post_filename"
cat "$com" >> "$post_filename"
done
# Creating main usage file:
local usage_header="---
layout: post
title: 'git-secret'
date: ${timestamp}
categories: usage
---"
local usage_filename="$POSTS_LOCATION/${current_date}-git-secret.md"
echo "$usage_header" > "$usage_filename"
cat "$MAN_LOCATION/git-secret.7.ronn" >> "$usage_filename"
}
checkout_manuals
copy_to_posts