awk/testdir/t.format4

10 lines
127 B
Plaintext
Raw Normal View History

2019-06-23 09:13:57 +00:00
BEGIN {
text=sprintf ("%125s", "x")
print length (text)
print text
xxx=substr (text,1,105)
print length (xxx)
print xxx
exit
}