amgmvio now copies, rather than moves

This commit is contained in:
vhenson 1996-09-10 21:00:04 +00:00
parent 0d19ae76ce
commit 401c32ca58
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ if [ "$2" != "" ]; then
for i in $1.in.problem $1.in.solver $1.out*
do
EXT=`echo $i $1 | awk '{print substr($1,length($2)+1)}'`
mv $i $2${EXT}
cp $i $2${EXT}
done
else

View File

@ -23,7 +23,7 @@ if [ "$2" != "" ]; then
for i in $1.in.problem $1.in.solver $1.out*
do
EXT=`echo $i $1 | awk '{print substr($1,length($2)+1)}'`
mv $i $2${EXT}
cp $i $2${EXT}
done
else