Skip to content

Instantly share code, notes, and snippets.

@ttdoda
Created July 27, 2017 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ttdoda/670718b8e961c354688e2abb32843381 to your computer and use it in GitHub Desktop.
Save ttdoda/670718b8e961c354688e2abb32843381 to your computer and use it in GitHub Desktop.
Tera Termを250枚開くマクロ
total=250
xcount=20
xdelta=50
ydelta=50
for i 1 total
call opentt
unlink
next
;call opentt
end
:opentt
n = i - 1
xpos = (n % xcount) * xdelta
ypos = n / xcount * ydelta
sprintf2 connstr "connect nagato /auth=pageant /size=80,24 /X=%d /Y=%d" xpos ypos
connect connstr
callmenu 55103
wait "%" "$" "#"
sendln "unset histfile"
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment