美文网首页
Enterprise Linux修改Bash命令行提示符为 $

Enterprise Linux修改Bash命令行提示符为 $

作者: 少女白洁 | 来源:发表于2020-03-29 21:13 被阅读0次

    在profile.d中添加custom.sh,为所有用户自定义PS1环境变量

    以下两种方式任选其一:

    • sudo bash -c "echo 'PS1=\"\$ \"'>>/etc/profile.d/custom.sh"
    • echo 'PS1=\$ ' | sudo tee -a /etc/profile.d/custom.sh

    参考:

    1. 搜索引擎搜索
      Linux prompt $ #
      sudo echo >> 权限不够
    2. 本地目录查找
      sudo grep PS1 /etc/ -R

    相关文章

      网友评论

          本文标题:Enterprise Linux修改Bash命令行提示符为 $

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