美文网首页AppleScript
AppleScript自动连接SSH服务器

AppleScript自动连接SSH服务器

作者: 十一岁的加重 | 来源:发表于2017-09-15 10:21 被阅读9次
    tell application "Terminal"
        do script "ssh ssh服务器地址"
        delay 0.8
        tell application "System Events"
            tell process "Terminal"
                set frontmost to true
                delay 1
                keystroke "ssh服务器密码"
                keystroke return
                
                
            end tell
        end tell
        
    end tell
    
    

    相关文章

      网友评论

        本文标题:AppleScript自动连接SSH服务器

        本文链接:https://www.haomeiwen.com/subject/irkssxtx.html