summaryrefslogtreecommitdiff
path: root/postpost/outputdir_of_inputfile
blob: 58c3ea4cd42d52ae06bef90721d21ff823cfb9ea (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

read s
while [ ! "$s" = "" ]
do
  grep "path" "$s" | awk '{ print $3; }'
  read s
done