diff options
Diffstat (limited to 'templates/latex/scripts/extract_text_from_all.sh')
-rwxr-xr-x | templates/latex/scripts/extract_text_from_all.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/latex/scripts/extract_text_from_all.sh b/templates/latex/scripts/extract_text_from_all.sh new file mode 100755 index 0000000..dd8818f --- /dev/null +++ b/templates/latex/scripts/extract_text_from_all.sh @@ -0,0 +1,7 @@ +#! /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 |