From fb87c15e934fc440ee416612702316378e4b1136 Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Thu, 25 Jul 2024 08:36:30 +0200 Subject: initial commit --- scripts/extract_text_from_all.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 scripts/extract_text_from_all.sh (limited to 'scripts') diff --git a/scripts/extract_text_from_all.sh b/scripts/extract_text_from_all.sh new file mode 100755 index 0000000..e42f690 --- /dev/null +++ b/scripts/extract_text_from_all.sh @@ -0,0 +1,8 @@ +#! /usr/bin/env sh + +grep 'INPUT ./' ./build/wahlordnung.fls | uniq | sed 's/INPUT //' | while read -r file; do + if ! [ "$(basename "$file")" = preamble.tex ] && ! [ "$(basename "$file")" = gymnasium.png ]; then + printf "\n%% Filename: %s\n" "$file" + grep -v '^\s*%' "$file" + fi +done -- cgit 1.4.1