问题
You can use \d in the your PS1 confuration to display a long date ie. Tues 18 May, but how can I get it to display it in a format like 18.05.2012 for example?
回答1:
Try this:
PS1="\$(date +%d.%m.%Y) > "
export PS1
回答2:
Try including \D{%d.%m.%Y}
. You can use any time format suppoorted by strftime(3)
.
回答3:
Use \D{format} where format is a strftime format code. For example:
$ export PS1='\D{%d.%m.%Y}$ '
08.02.2012$
回答4:
Rather than telling the shell to execute the date command each time, you would rather use the built-in format. Hence you can also use (though a little variation from what you have asked)
\D{%F %T}
to give you date and time. date in format : YYYY-MM-DD and time in format hh:mm:ss.
回答5:
you can try this that display time:
$ PS1="\n\t \u@\h:\w# "
08:18:57 user@localhost:/home/user#
来源:https://stackoverflow.com/questions/9200862/short-date-in-bash-ps1-prompt