広告
Teratermマクロで実行回数を表示する。
カウンタ表示マクロ(counter.ttl)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
; グローバル変数 Count = 0 true = 1 false = 0 ; 以下、dateコマンドを無限に繰り返す while true call show_counter sendln "date" wait ']$' pause 1 endwhile ; カウンタの表示 :show_counter sprintf2 str "%d 回目" Count statusbox str "カウンタ" Count = Count + 1 return |
実行結果
画面ログに残すだけなら下記。
1秒毎にカウントアップ
1 2 3 4 5 6 7 8 9 |
count = 1 true = 1 while true int2str counts count sendln '##### ' counts ' times ' pause 1 count = count + 1 endwhile |
実行結果
1 2 3 4 5 6 |
$ ##### 1 times $ ##### 2 times $ ##### 3 times $ ##### 4 times $ ##### 5 times |
広告
広告