Changeset 484


Ignore:
Timestamp:
Dec 4, 2009 5:06:56 PM (13 years ago)
Author:
toby
Message:

# on 2001/11/07 18:17:37, toby did:
get rid of echo command

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expgui

    • Property rcs:date changed from 2001/10/31 20:06:10 to 2001/11/07 18:17:37
    • Property rcs:lines changed from +16 -6 to +8 -6
    • Property rcs:rev changed from 1.50 to 1.51
    r478 r484  
    271271                set newfile $expnam.O$num
    272272                file rename -force $expnam.EXP $newfile
    273                 exec echo "\n----------------------------------------------" >> $expnam.LST
    274                 exec echo "     Regressing to archive file [file tail $expfile]" >> $expnam.LST
    275                 exec echo "     but first archiving [file tail $expnam.EXP] as [file tail $newfile]" >> $expnam.LST
    276                 exec echo "----------------------------------------------\n" >> $expnam.LST
     273                set fp [open $expnam.LST a+]
     274                puts $fp "\n----------------------------------------------"
     275                puts $fp "     Regressing to archive file [file tail $expfile]"
     276                puts $fp "     but first archiving [file tail $expnam.EXP] as [file tail $newfile]"
     277                puts $fp "----------------------------------------------\n"
     278                close $fp
    277279            }
    278280        }
Note: See TracChangeset for help on using the changeset viewer.