Unable to add escape sequences dynamically for 'PS1'

好久不见. 提交于 2019-12-11 23:55:01

问题


Say I want to include an escape sequence dynamically:

if [ -n $something ]; then
    user="\u"
else
    user="admin"
fi
PS1='$user@\h$ '

The problem is, instead of filling in the user name, my prompt looks like this:

\u@ubuntu-1$ 

Even if I escape the backslash (user="\\u") it still does not print out the user name. How do I get the prompt to look like this:

andreas@ubuntu-1$ 

回答1:


Use double quotes when you are trying to interpolate variables and want them to expand.

You also have another option, instead of dealing with \u and complications with when the interpretation of it happens.

if [ -n $something ]; then
    user=`whoami`
else
    user="admin"
fi
PS1="$user@\h$ "


来源:https://stackoverflow.com/questions/23819927/unable-to-add-escape-sequences-dynamically-for-ps1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!