Removing blank records

Pipelines v1.6

 

.* Example by TenFiftyTwo(c).

Home

 
.* The following pipeline reads the file: example.txt and removes any blank records.
 
pipe < &installdrive:\&installpath\Examples\Input\example.txt .* Read input file.
     | strip trailing                                         .* Trim off whitespace.
     | locate                                                 .* Discard blank records.
     | console                                                .* Display on the console.