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

在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命令行提示符为 $ 和 #)