diff options
Diffstat (limited to 'postpost/unvollstaendig')
-rwxr-xr-x | postpost/unvollstaendig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/postpost/unvollstaendig b/postpost/unvollstaendig new file mode 100755 index 0000000..9327541 --- /dev/null +++ b/postpost/unvollstaendig @@ -0,0 +1,25 @@ +#!/bin/sh + +for s in $1/* +do + if [ -d "$s" ] + then + if [ ! -d "$s/Post" ] + then + echo "Post: "$s + else + if [ ! -e "$s/Post/ft-fm" ] || [ ! -e "$s/Post/ft-fp" ] + then + echo -ne "ft: "$s + for t in $s/Post/input*.lpi* + do + if [ ! -e "$t" ] + then + echo -ne " ******" + fi + done + echo + fi + fi + fi +done |