diff options
Diffstat (limited to 'postpost/all_idl2eps')
-rwxr-xr-x | postpost/all_idl2eps | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/postpost/all_idl2eps b/postpost/all_idl2eps new file mode 100755 index 0000000..312524c --- /dev/null +++ b/postpost/all_idl2eps @@ -0,0 +1,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 + |