From 62df7214a1b6602bec3e355a0729de2968db6504 Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Wed, 6 Sep 2023 11:03:36 +0200 Subject: add support for .sh files --- src/extract-generic.sh | 17 +++++++++++++++-- src/extract-sh.sh | 8 ++++++++ src/extract.sh | 1 + 3 files changed, 24 insertions(+), 2 deletions(-) create mode 100755 src/extract-sh.sh (limited to 'src') diff --git a/src/extract-generic.sh b/src/extract-generic.sh index 0c84ec1..cadbb30 100755 --- a/src/extract-generic.sh +++ b/src/extract-generic.sh @@ -33,8 +33,21 @@ tree-grepper \ text=$(echo "$item" | jq .match.text -r | sed 's/^'"$LINE_COMMENT_START"' *TODO *//' | - sed 's/^'"$BLOCK_COMMENT_START"' *TODO *//' | - sed 's/ *'"$BLOCK_COMMENT_END"'$//') + { + if test -z "${BLOCK_COMMENT_START-}"; then + cat + else + sed 's/^'"$BLOCK_COMMENT_START"' *TODO *//' + fi + } | + { + if test -z "${BLOCK_COMMENT_END-}"; then + cat + else + sed 's/ *'"$BLOCK_COMMENT_END"'$//' + fi + } + ) echo "$item" | jq '. + {"text": $text, "last_commit": $last_commit}' \ --arg text "$text" \ diff --git a/src/extract-sh.sh b/src/extract-sh.sh new file mode 100755 index 0000000..c31df74 --- /dev/null +++ b/src/extract-sh.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +set -efu + +TREE_GREPPER_LANGUAGE=sh \ +TREE_GREPPER_QUERY='((comment)+)' \ +LINE_COMMENT_START='#' \ +"$(dirname "$0")"/extract-generic.sh "$@" diff --git a/src/extract.sh b/src/extract.sh index ce5c4d0..07eac37 100755 --- a/src/extract.sh +++ b/src/extract.sh @@ -14,6 +14,7 @@ find "$input_dir" -type f | grep -Pv '/\.|~$' | case $input_file in *.elm) ext="elm" ;; *.nix) ext="nix" ;; + *.sh) ext="sh" ;; *) ;; esac -- cgit v1.2.3