xref: /illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/t.format4 (revision e6d6c189fa3a95d7aa27bbe0aeacf7c1a6b57c8c)
1BEGIN {
2text=sprintf ("%125s", "x")
3print length (text)
4print text
5xxx=substr (text,1,105)
6print length (xxx)
7print xxx
8exit
9}
10