この記事は3年以上前に書かれた記事で内容が古い可能性があります
ttlmacroでログイン自動化
2016-03-15
teratermマクロを作成したので、メモ。
;========================================== HOST = '<xxx>' PORT = '<xxx>' LogPath = '<xxx>' ;========================================== ;========================================== ;接続 ;========================================== strconcat target HOST strconcat target ':' strconcat target PORT strconcat target ' /nossh' ;サーバへの接続 connect target ;========================================== ;ログ取得開始 ;========================================== ;ファイル名設定 gettime logname '%Y%m%d_%H%M%S_&h.log' ;ログ出力先設定 fullpath = LogPath strconcat fullpath logname ;ログ取得開始 logopen fullpath 0 1 ;========================================== ;ログイン後処理 ;========================================== wait '$' sendln 'uname -n' ;ここに色々処理記述 ;========================================== ;ログアウト処理 ;========================================== wait '$' sendln 'exit' ;logclose