scripts/mid.awk

6 lines
94 B
Awk
Raw Normal View History

2019-05-14 22:12:41 -07:00
{ z = col - length
y = int(z / 2)
x = z - y
printf "%*s%s%*s\n", x, "", $0, y, ""
}