linux_ws2122/examples/test.awk

11 lines
74 B
Awk
Raw Normal View History

2021-10-13 17:25:16 +00:00
BEGIN {
print "HELLO;WORLD;";
}
{
print $0;
}
END {
print "END";
}