aboutsummaryrefslogtreecommitdiffstats
path: root/test/gensub3.awk
blob: be0f7538fc0bd97613cb2449061b75fc33b8ba22 (plain)
1
2
3
4
5
6
7
8
/apple/ {
   $0 = $0
   x = $0
}

END {
   print x
}