qse/ase/test/awk/t14.awk

24 lines
161 B
Awk
Raw Normal View History

2006-07-05 16:20:23 +00:00
/*
2006-07-01 16:07:06 +00:00
{
print "1111111111111";
}
{
print "22222222222222";
next;
}
{
print "33333333333333333";
}
2006-07-01 16:24:36 +00:00
END
{
print "\a";
}
2006-07-05 16:20:23 +00:00
*/
{
$3 = "10";
print $0, $2, $5;
}