From 4f2b735472eb921b5edd91c502e0a47d5e4d0cd2 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 11 Jun 2024 09:48:15 +0200 Subject: chore(build): Update --- build/latex/scripts/extract_text_from_all.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 build/latex/scripts/extract_text_from_all.sh (limited to 'build/latex/scripts/extract_text_from_all.sh') diff --git a/build/latex/scripts/extract_text_from_all.sh b/build/latex/scripts/extract_text_from_all.sh new file mode 100755 index 0000000..11b2ac4 --- /dev/null +++ b/build/latex/scripts/extract_text_from_all.sh @@ -0,0 +1,8 @@ +#! /usr/bin/env sh + +grep 'INPUT ./' ./build/main.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