summaryrefslogtreecommitdiff
path: root/postpost/all_idl2eps
blob: 312524cd9929c5a9ee3da00510e72b683e973a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

for t in $1*
do
  if [ -e $t ]
  then
    if [ -e $t/Post/allidl.pro ]
    then
      cd $t/Post
      idl allidl.pro
      cd ../../postpost
    fi
  fi
done