#!/bin/sh # poem: write a poem begins_with() { # haystack prefix value=$1 prefix=$2 case "$value" in "$prefix"*) return 0 esac return 1 } usage() { echo "poem [help | ls | ls-html | NAME]" } fuzzy() { FILE="$(find "$WWW_DEFAULT_PATH/src/poetry" -type f | $FUZZY)" [ -z "$FILE" ] && exit 0 if ! begins_with "$FILE" "$WWW_DEFAULT_PATH/src/poetry" ; then FILE="$WWW_DEFAULT_PATH/src/poetry/$FILE" fi mkdir "$(dirname "$FILE")" -p $EDITOR "$FILE" } list() { header="Date\tTitle\n" for f in $(find $WWW_DEFAULT_PATH/src/poetry -type f | sort -k 3) ; do out="$out$(sed -n 2p $f)\t$(sed -n 1p $f)\n" done out="$header$(printf "$out" | sort -rk 1)\n" printf "$out" } list_html() { header="
Date | \tTitle |
---|---|
$(sed -n 2p $f) | $(sed -n 1p $f) |