summaryrefslogtreecommitdiff
path: root/postpost/outputdir_of_inputfile
diff options
context:
space:
mode:
Diffstat (limited to 'postpost/outputdir_of_inputfile')
-rwxr-xr-xpostpost/outputdir_of_inputfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/postpost/outputdir_of_inputfile b/postpost/outputdir_of_inputfile
new file mode 100755
index 0000000..58c3ea4
--- /dev/null
+++ b/postpost/outputdir_of_inputfile
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+read s
+while [ ! "$s" = "" ]
+do
+ grep "path" "$s" | awk '{ print $3; }'
+ read s
+done
+