ここに私の.bashrcまたは少なくともプロンプトを含む部分があります。
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\A\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\d:\A\$ '
fi
unset color_prompt force_color_prompt
これで、私のメッセージは次のようになります。
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\d\A\$ '
今最大の悩みは、日付と時刻の間にスペースがある可能性があることです。
\d\A
プロンプトが次のようになるため -
shirish@think-debian:~Tue Oct 2001:03$
大きな問題は、構文がわからないとプロンプトを読み取れないことです。この問題を解決する方法はありますか?
答え1
その過程で徐々に価値が積み上げられ、コメントも残すことができます
PS1='\u@\h:' # User@Host:
PS1+='\w' # Working directory
PS1+='\d' # date
PS1+=' '
PS1+='\A' # Time
PS1+='\$ ' # Marker
答え2
今最大の悩みは、日付と時刻の間にスペースがある可能性があることです。
はい。日付と時刻の間にスペースを追加します。
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\d \A\$ '
大きな問題は、構文がわからないとプロンプトを読み取れないことです。この問題を解決する方法はありますか?
必要に応じてプロンプトにテキストを追加できます。
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w date:\d time:\A\$ '
答え3
PS1='\u@\h:\w \d \A\$ '
読みやすさが非常に向上しました。
declare -A prompt=(
[user]='\u'
[host]='\h'
[dir]='\w'
[date]='\d'
[time]='\A'
[prompt]='\$ '
)
PS1="${prompt[user]}@${prompt[host]}:${prompt[dir]} ${prompt[date]} ${prompt[time]} ${prompt[prompt]}"