#!/bin/csh

set i = 1
while ( $i <= 10 )
  @ j = $i + 29
  echo $i "->" $j
#  cp rod_$i.pdb rod_$j.pdb
  cp force_$i.pdb force_$j.pdb
  @ i ++
end
