RosettaCodeData/Task/User-input-Text/AWK/user-input-text.awk
2023-07-01 13:44:08 -04:00

5 lines
151 B
Awk

~/src/opt/run $ awk 'BEGIN{printf "enter a string: "}{s=$0;i=$0+0;print "ok,"s"/"i}'
enter a string: hello world
ok,hello world/0
75000
ok,75000/75000