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, 4 insertions, 3 deletions
diff --git a/templates/latex/scripts/extract_text_from_all.sh b/templates/latex/scripts/extract_text_from_all.sh index dd8818f..11b2ac4 100755 --- a/templates/latex/scripts/extract_text_from_all.sh +++ b/templates/latex/scripts/extract_text_from_all.sh @@ -2,6 +2,7 @@ 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 + printf "\n%% Filename: %s\n" "$file" + grep -v '^\s*%' "$file" + fi +done |