美文网首页
AppleScript

AppleScript

作者: 悄然林静 | 来源:发表于2020-03-27 10:33 被阅读0次

    https://www.jianshu.com/p/a22084e87b09
    https://sspai.com/post/46912

    AppleScript使用sudo权限执行命令

    // 终端执行操作(当前用户权限)
    do shell script "SOME COMMANDS"
    
    // 终端执行操作(sudo权限)
    do shell script "SOME COMMANDS" with administrator privileges
    
    // 错误格式命令
    // do shell script "sudo SOME COMMANDS"
    
    // 报错:
    // AppleScript 错误
    // sudo: no tty present and no askpass program specified
    
    

    相关文章

      网友评论

          本文标题:AppleScript

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