Removing leading blank records

Pipelines v1.6

 

.* Example by TenFiftyTwo(c).

Home

 
.* The following pipeline displays the file: example.txt, on the console. The pipeline does
.* not display the leading blank lines; the FROMLABEL stage only begins selecting records
.* once a non-blank record has been read.
 
pipe < &installdrive:\&installpath\Examples\Input\example.txt .* Read input file.
     | fromlabel zone(11-*) regexp /./     .* Start reading from the first non-blank record.
     | cons                                .* Display on the console.