Blame | Last modification | View Log | RSS feed
BEGIN {
$0 = "a b c d e f"
print NF
OFS = ":"
NF--
print $0
NF++
}