BASH Shell change the color of my shell prompt under Linux or Unix

Source: Internet
Author: User
Tags echo command set background
Document directory
  • Task: display current bash prompt (PS1)
  • Task: modify current bash prompt
  • Task: add colors to the prompt
  • Task: how to make the prompt setting permanent
  • Tput command
  • Handy tput commands
  • Colors {code} code for tput command

Q

. How do I change the color of my shell prompt under Linux?

A

. You
Can change the color of your shell prompt to impress your friend or
Make your own life quite easy while working at command prompt.

In the Linux default shell is Bash.

Your current prompt setting is stored in PS1 shell variable. There are other variables too, like PS2, PS3 and PS4.

Bash displays the primary prompt PS1 when it is ready to read
Command, and the secondary prompt PS2 when it needs more input
Complete a command. Bash allows these prompt strings to be customized
By inserting a number of backslash-escaped special characters.

Task: display current bash prompt (PS1)

Use echo command to display current bash prompt:
$ echo $PS1
Output:

[//u@/h //W]//$

By default the command prompt is set to: [/u @/h/W]/$. backslash-escaped special characters are decoded as follows:

  • /U
    : Display the current Username
  • /H
    : Display the hostname
  • /W
    : Print the current working directory
Task: modify current bash prompt

Use Export command to setup a new shell prompt:$ export PS1="[//u@//H //W //@]//$"

Where,

  • /H
    : Display FQDN hostname
  • /@
    : Display current time in 12-hour AM/PM format
Task: add colors to the prompt

To add colors to the shell prompt use the following export command syntax:
'/E [X; ym $ PS1/E [m'

Where,

  • /E [start color scheme
  • X; y color pair to use (X; y)
  • $ PS1 is your shell prompt
  • /E [m Stop Color Scheme

To set a red color prompt, type the command:
$ export PS1="/e[0;31m[/u@/h /W]/$ /e[m "

List of color code
Color Code
Black 0; 30
Blue 0; 34
Green 0; 32
Cyan 0; 36
Red 0; 31
Purple 0; 35
Brown 0; 33
Blue 0; 34
Green 0; 32
Cyan 0; 36
Red 0; 31
Purple 0; 35
Brown 0; 33

Replace digit 0 with 1 to get light color version.

Task: how to make the prompt setting permanent

Your new shell prompt setting is temporary I. e. When you logout
Setting will be lost. To have it set everytime you login to your
Workstation add abve Export command to your. bash_profile file or
. Bashrc file.
$ cd
$ vi .bash_profile

Or
$ vi .bashrc

Append export line:
export PS1="/e[0;31m[/u@/h /W]/$ /e[m"

Save and close the file.

Tput command

You can also use tput command. For example display red prompt use tput as follows:
export PS1="/[$(tput setaf 1)/]/u@/h:/w $ /[$(tput sgr0)/]"

Handy tput commands
  • Tput bold-bold effect
  • Tput rev-display inverse colors
  • Tput sgr0-reset everything
  • Tput setaf {code}-set foreground color, see color {code} below
  • Tput setab {code}-Set background color, see color {code} below
Colors {code} code for tput command
Color {code} Color
0 Black
1 Red
2 Green
3 Yellow
4 Blue
5 Magenta
6 Cyan
7 White

Read the man page of Bash and tput command for more information.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.