Archived
1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
VWA/zeichen.sh
2015-02-03 20:40:48 +01:00

27 lines
625 B
Bash
Executable file

#!/bin/bash
echo "aus pdf:"
pdftotext main.pdf -enc UTF-8 - | wc -m
echo ""
echo "mit detex:"
echo ""
echo "hardware.tex"
detex hardware.tex | wc -m
echo ""
echo "software.tex"
detex software.tex | wc -m
echo ""
echo "einleitung.tex"
detex einleitung.tex | wc -m
echo ""
echo "weitere_informationen.tex"
detex weitere_informationen.tex | wc -m
echo ""
echo "main.tex"
detex main.tex | wc -m
echo ""
echo ""
echo "gesamt"
detex einleitung.tex software.tex hardware.tex weitere_informationen.tex| wc -m
echo ""
echo "gesamt mit main.tex"
detex einleitung.tex software.tex hardware.tex weitere_informationen.tex main.tex| wc -m