line="work/ hoop.htm"
field1=`echo $line| awk {'print $1'}
field2=`echo $line| awk {'print $2'}
line=`printf ${field1}${field2}`
if you are going to read from a fiel and want to do it for every line
cat file | while read line
do
field1=`echo $line| awk {'print $1'}
field2=`echo $line| awk {'print $2'}
line=`printf ${field1}${field2}`
echo $line >> newfile
done
hope this helps
________________________________
UNIX because I majored in cryptology...