gdritter repos lib-static / master bin / link.sh
master

Tree @master (Download .tar.gz)

link.sh @masterraw · history · blame

#!/bin/sh -e

if [ "$#" -lt "2" ]; then
    echo "Not enough arguments to $(basename $0)"
    echo "Usage: $(basename $0) [data-dir] [link file]"
    exit 1
fi

DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
PATH=$DIR:$PATH

if [ "$2" = "all" ]; then
    ARGS="$1/links/*"
    FOCUS=false
else
    ARGS="$2"
    FOCUS=true
fi
COPY="whaa"

json-list -c $ARGS                     \
  | json-dict linklist - focus $FOCUS  \
  | mustache - templates/link.mustache \
  | json-dict title Link contents - usejs true copy "$COPY" onload '"doLoadHighlight()"' \
  | mustache - templates/main.mustache