==========================
#!/bin/sh
apps_dir='/tmp/ddd/fj'
cd ${apps_dir}/
while read strs
do
echo ${strs}
find ./ -type f | xargs perl -pi -e "s|href="${strs}|href="/|g"
find ./ -type f | xargs perl -pi -e "s|href=" ${strs}|href="/|g"
find ./ -type f | xargs perl -pi -e "s|src="${strs}|src="/|g"
done < /tmp/ddd/string_file



