在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
参考:
- 搜索引擎搜索
Linux prompt $ #
sudo echo >> 权限不够 - 本地目录查找
sudo grep PS1 /etc/ -R
以下两种方式任选其一:
sudo bash -c "echo 'PS1=\"\$ \"'>>/etc/profile.d/custom.sh"
echo 'PS1=\$ ' | sudo tee -a /etc/profile.d/custom.sh