summaryrefslogtreecommitdiff
path: root/postpost/all_eps2pdf
blob: 739a7c405092f80599f75230dfb0dd4be553d4f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

for t in $1*
do
  if [ -e $t ]
  then
    for s in $t/Post/*.eps
    do
      if [ -e $s ]
      then
        echo $s;
        epstopdf $s;
      fi
    done
  fi
done