linux_ws2122/examples/test.awk

11 lines
74 B
Awk

BEGIN {
print "HELLO;WORLD;";
}
{
print $0;
}
END {
print "END";
}