#!/bin/bash
#
myfile=$1
tmp=/tmp/.shell_tmp
while read line
do
printf "$linen" $myfile >$tmp
oldname=`
linuxjishu/13830.html target=_blank class=infotextkey>awk '{print $2}' $tmp`
newname=`awk '{print $1}' $tmp`
mv $oldname $newname
done < $myfile
rm -f $tmp