TABLE OF CONTENTS


::pwtk::skiplines

SYNOPSIS

proc ::pwtk::skiplines {channelId nlines} {

PURPOSE

Skip the specified number of lines in the opened file (channelId).

ARGUMENTS

SOURCE

    for {set i 0} {$i < $nlines} {incr i} {
        gets $channelId
    }
}