AWK Issue

Hey,

this is my code,

cat $fulltrpath | while read line
do
  inputfile=$(sed 1q $fulltrpath | awk '{ FS = "\t"; print $2$1}')
  outputpath=$(sed 1q $fulltrpath | awk '{ FS = "\t"; print $3 }')
  echo $inputfile
  echo $outputpath
  cp $inputfile $outputpath
  let path++
done

if i execute this code it only consider the first line of the input file its not moving to next line,

can anyone please explain what did i missed

thanks & regards
Mohamed Inshaf

------

Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum under special homework rules.

Please review the rules, which you agreed to when you registered, if you have not already done so.

More-than-likely, posting homework in the main forums has resulting in a forum infraction. If you did not post homework, please explain the company you work for and the nature of the problem you are working on.

If you did post homework in the main forums, please review the guidelines for posting homework and repost.

Thank You.

The UNIX and Linux Forums.