From e371d9edd474bcf89cf5d462eaccb8638900b390 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sat, 3 Oct 2020 19:27:15 -0400 Subject: Initial commit --- .local/bin/todotable | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 .local/bin/todotable (limited to '.local/bin/todotable') diff --git a/.local/bin/todotable b/.local/bin/todotable new file mode 100755 index 0000000..6609a1f --- /dev/null +++ b/.local/bin/todotable @@ -0,0 +1,23 @@ +#!/bin/sh + +file=$(readlink -f "$1") +dir=$(dirname "$file") +base="${file%.*}" + +contents="$1" +shift +for i in "$@"; do + output=$output"\n"$(cat "$contents" | grep -n "$i" | sed 's/\([0-9]*\):.*'"$i"'.\(.*\)$/-\ \*\*'"$i"':\*\*\ \2\ (line \1)/g' + ) +done + + +if [ "$#" -eq $(printf $output | wc -l ) ]; +then + rm "$base"-tdtable.pdf + exit 0 +else + echo -e '---\ntitle: Checklist:\n.PP'"$output" | groffdown | refer -PS -e "-p$REFERBIB" | groff -me -ms -kejpt -T pdf > "$base"-tdtable.pdf +fi +# Uncomment for debugging: +# echo -e '---\ntitle: TODOs\n.PP'"$output" > "$base"-tdtable.gd -- cgit v1.2.3