summaryrefslogtreecommitdiff
path: root/postpost/all_idl2eps
diff options
context:
space:
mode:
Diffstat (limited to 'postpost/all_idl2eps')
-rwxr-xr-xpostpost/all_idl2eps15
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
+