summaryrefslogtreecommitdiff
path: root/postpost/unvollstaendig
blob: 93275417ae4e4cee5c538e6cde46cf18f435f00e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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