diff options
Diffstat (limited to 'postpost/outputdir_of_inputfile')
-rwxr-xr-x | postpost/outputdir_of_inputfile | 9 |
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 + |