qse/ase/test/awk/t14.awk

34 lines
358 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
*/
{
2006-07-06 13:57:32 +00:00
//$3 = "10";
//print $0, $2, $5;
$0 = "wow this is just a test";
print "step 1--------------------";
//print $0;
a = $6;
print "step 2--------------------";
print a;
/*
print $6;
*/
print "step 3--------------------";
2006-07-05 16:20:23 +00:00
}