Control the output color of the shell script _linux shell

Source: Internet
Author: User

Implementation code:

#!/bin/sh

# ANSI Color-Use this variables to make output in different colors
# and formats. Color names that end with the ' F ' are foreground (text) colors, # and those ending with
' B ' are background.

Initializeansi ()
{
 esc= "\033" # if this doesn ' t work, enter an ESC directly

 blackf= ' ${esc}[30m ';  Redf= "${esc}[31m";  greenf= "${esc}[32m"
 yellowf= "${esc}[33m"  bluef= "${esc}[34m";  purplef= "${esc}[35m"
 cyanf= "${esc}[36m";  whitef= "${esc}[37m"

 blackb= "${esc}[40m";  redb= "${esc}[41m";  greenb= "${esc}[42m"
 yellowb= "${esc}[43m"  blueb= "${esc}[44m";  purpleb= "${esc}[45m"
 cyanb= "${esc}[46m";  whiteb= "${esc}[47m"

 boldon= "${esc}[1m";  boldoff= "${esc}[22m"
 italicson= "${esc}[3m"; italicsoff= "${esc}[23m" ulon= "${esc}[4m"
 ;   uloff= "${esc}[24m"
 invon= "${esc}[7m";   invoff= "${esc}[27m"

 reset= "${esc}[0m"
}

Define the function first, then initialize the next function, and then you can see the effect.
Perform

Echo-e ${yellowf}this is a phrase in Yellow${redb} and Red${reset}
Echo-e ${boldon}this is Bold${ulon} it is italics${reset} bye bye
Echo-e ${italicson}this are Italics${italicsoff} and this isn't

After you know it, you can write a colorful, cool script.

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.