美文网首页
mac终端执行source ~/.bash_profile报错

mac终端执行source ~/.bash_profile报错

作者: i爱吃土豆的猫 | 来源:发表于2022-12-21 11:46 被阅读0次

    命令打开编辑

    open ~/.bash_profile
    

    修改的变量代码

    echo "export THEOS=~/theos" >> ~/.zprofile
    export SSHPASS='alpine'
    sshpass -e ssh -Y localhost
    export MonkeyDevDeviceIP=alpine
    export MonkeyDevDevicePort=2222
    export THEOS="/opt/theos"
    export PATH="/opt/theos/bin/:$PATH"
    

    生效代码

    source ~/.bash_profile 
    

    报错

    /Users/XXX/.bash_profile:4: bad assignment
    

    原因

    export后,其他的语句中不能含有空格

    相关文章

      网友评论

          本文标题:mac终端执行source ~/.bash_profile报错

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