在shell指令碼裡顯示帶顏色的字(linux)

來源:互聯網
上載者:User

標籤:echo printf linux functions

一、echo命令(帶參數-e)cat color.sh#!/bin/bashecho -e "\033[30m black \033[0m"echo -e "\033[31m red \033[0m"echo -e "\033[32m green \033[0m"echo -e "\033[33m yellow \033[0m"echo -e "\033[34m blue \033[0m"echo -e "\033[35m purple \033[0m"echo -e "\033[36m cyan \033[0m"echo -e "\033[37m white \033[0m"執行結果:bash color.sh black  red  green  yellow  blue  purple  cyan  white 二、printf命令cat color2.sh#!/bin/bashprintf "\033[30m black \033[0m\n"printf "\033[31m red \033[0m\n"printf "\033[32m green \033[0m\n"printf "\033[33m yellow \033[0m\n"printf "\033[34m blue \033[0m\n"printf "\033[35m purple \033[0m\n"printf "\033[36m cyan \033[0m\n"printf "\033[37m white \033[0m\n"執行結果:bash color2.sh black  red  green  yellow  blue  purple  cyan  white三、使用變數cat color3.sh#!/bin/bashblackcolor=‘\E[1;30m‘redcolor=‘\E[1;31m‘greencolor=‘\E[1;32m‘yellowcolor=‘\E[1;33m‘bluecolor=‘\E[1;34m‘purplecolor=‘\E[1;35m‘cyancolor=‘\E[1;36m‘whitecolor=‘\E[1;37m‘echo -e "${blackcolor}black"echo -e "${redcolor}red"echo -e "${greencolor}green"echo -e "${yellowcolor}yellow"echo -e "${bluecolor}blue"echo -e "${purplecolor}purple"echo -e "${cyancolor}cyan"echo -e "${whitecolor}white"執行結果:bash color3.shblackredgreenyellowbluepurplecyanwhite四、系統函數cat color4.sh#!/bin/bashblackcolor="echo -en \\033[1;30m"redcolor="echo -en \\033[1;31m"greencolor="echo -en \\033[1;32m"yellowcolor="echo -en \\033[1;33m"bluecolor="echo -en \\033[1;34m"purplecolor="echo -en \\033[1;35m"cyancolor="echo -en \\033[1;36m"whitecolor="echo -en \\033[1;37m"echo black && ${blackcolor}echo red && ${redcolor}echo green && ${greencolor}echo yellow && ${yellowcolor}echo blue && ${bluecolor}echo purple && ${purplecolor}echo cyan && ${cyancolor}echo white && ${whitecolor}執行結果:bash color4.shblackredgreenyellowbluepurplecyanwhite

本文出自 “7928217” 部落格,請務必保留此出處http://7938217.blog.51cto.com/7928217/1651807

在shell指令碼裡顯示帶顏色的字(linux)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.