~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/fpat8.awk

Update README.solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BEGIN {
2
 
        RS = ""
3
 
        FPAT = "\\w+"
4
 
}
5
 
 
6
 
{
7
 
        print
8
 
        $2 = "-"
9
 
        print
10
 
}