ubuntu personnaliser l'invite de bash

$ sudo vi ~/.bashrc
# modify the PS1 var with options you want
PS1='\s://\u@\H//\A:\w\n\$'
# \s for the name of the shell
# \u for the current username
# \H for the domain name
# \A for the time (w/o seconds)
# \w for the current directory (pwd)
# \n for a new line (big prompt)
# \$ for the prompt (where the command is typed)

$ source ~/.bashrc
Disturbed Deer