#!/bin/sh
# Shell script to run the modify html links in Visio html files 
# in all immediate subdirectories
#

for name in $1/*/png_1.htm
do
  echo $name
  ~prabakar/www/sample/perl/flowcharts/modifyHtml.pl $name
done
