RosettaCodeData/Task/Terminal-control-Dimensions/Pluto/terminal-control-dimensions.pluto
2025-08-11 18:05:26 -07:00

6 lines
189 B
Text

local tmp = "_pluto_.tmp"
os.execute($"stty size > {tmp}")
local res = io.contents(tmp):strip()
io.remove(tmp)
local [h, w] = res:split(" ")
print($"Terminal width = {w} and height = {h}")