term- xshell VS securecrt

Xshell使用技巧总结

https://www.cnblogs.com/zhangwuji/p/7155575.html

SecureCRT与Xshell简单对比

http://ju.outofmemory.cn/entry/156249

如何让securecrt能模拟出屏幕到记事本的功能呢。

暂时想到可以将securecrt-select All写到剪贴板,再将剪贴板内容写到临时文件。再用文本编辑器将其打开。

同时再删除剪贴板内容。不知道是否可行?

#NoTrayIcon
#singleinstance force
#ifwinactive ahk_class VanDyke Software - SecureCRT
prefix=%TMP%/securecrt
!+o::
    FormatTime, TimeString,,yyyy-MM-dd-HH-mm-ss
    tempname=%prefix%/%TimeString%.tmp
    send ^!{a}
    sleep, 100
    ;FileDelete %tempname%
    FileAppend, %Clipboard%, %tempname%
    run %tempname%
    return
#if
原文地址:https://www.cnblogs.com/itzxy/p/9571536.html