TABLE OF CONTENTS
::pwtk::skiplines
SYNOPSIS
proc ::pwtk::skiplines {channelId nlines} {
PURPOSE
Skip the specified number of lines in the opened file (channelId).
ARGUMENTS
- channelId -- channel identifier of the opened file
- nlines -- number of lines to skip
SOURCE
for {set i 0} {$i < $nlines} {incr i} { gets $channelId } }