gpt4 book ai didi

linux - 如何在 bash 脚本中为命令输出着色?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:13:39 25 4
gpt4 key购买 nike

我正在尝试几天来更改 bash 脚本中命令的颜色输出。我尝试了一些工作流程,例如陷阱但没有成功。唯一部分工作的是这段代码:

#!/bin/bash

GRN='\e[32m'
CYN='\e[36m'
END='\e[0m'

echo -e "${GRN}Formating Root partition ..${END}"

echo -e "${CYN}"
(set -x ; mkfs.ext4 -L Root -m 5 /dev/sda2) | GREP_COLOR='49;38;5;007' grep --color=always '.*'
echo -e "${END}"

echo -e "${GRN}Formating Home partition ..${END}"

...

有没有更好的方法呢?谢谢。

我想要的是:

Formating Root partition ..                                    <= Green
mkfs.ext4 -L Root -m 5 /dev/sda2 <= Cyan
mke2fs 1.45.2 (27-May-2019) <= Grey
Creating filesystem with 9175040 4k blocks and 2293760 inodes <= Grey
Filesystem UUID: ... <= Grey
... <= Grey
Formating Home partition .. <= Green

最佳答案

您可以使用下面的脚本,在 mac 和 ubuntu 上测试过。

每个函数接受两个参数,

  1. 示例字符串输出 green "will print green"
  2. 打印命令输出,例如 red "will print Free space in red:""free -m"free -m

脚本

#!/bin/bash
set +x
function black(){
echo -e "\x1B[30m $1 \x1B[0m"
if [ ! -z "${2}" ]; then
echo -e "\x1B[30m $($2) \x1B[0m"
fi
}
function red(){
echo -e "\x1B[31m $1 \x1B[0m"
if [ ! -z "${2}" ]; then
echo -e "\x1B[31m $($2) \x1B[0m"
fi
}
function green(){
echo -e "\x1B[32m $1 \x1B[0m"
if [ ! -z "${2}" ]; then
echo -e "\x1B[32m $($2) \x1B[0m"
fi
}
function yellow(){
echo -e "\x1B[33m $1 \x1B[0m"
if [ ! -z "${2}" ]; then
echo -e "\x1B[33m $($2) \x1B[0m"
fi
}
function blue(){
echo -e "\x1B[34m $1 \x1B[0m"
if [ ! -z "${2}" ]; then
echo -e "\x1B[34m $($2) \x1B[0m"
fi
}
function purple(){
echo -e "\x1B[35m $1 \x1B[0m \c"
if [ ! -z "${2}" ]; then
echo -e "\x1B[35m $($2) \x1B[0m"
fi
}
function cyan(){
echo -e "\x1B[36m $1 \x1B[0m"
if [ ! -z "${2}" ]; then
echo -e "\x1B[36m $($2) \x1B[0m"
fi
}
function white(){

echo -e "\x1B[37m $1 \x1B[0m"
if [ ! -z "${2}" ]; then
echo -e "\x1B[33m $($2) \x1B[0m"
fi
}


green "Green: Formating Root partition .."
white "White: Formating Root partition .."
# pass the second parameter, will be treated as command
yellow "color command output,print ls:" "ls"
red "Red: System Free RAM:" "free -m"
cyan "cyan: awesome..........end..................."
echo -e "mix the color $(purple "Purple: this is purple, will print disk usage" "du -h") Now Yellow: $(yellow "hi Yelow") "

enter image description here

关于linux - 如何在 bash 脚本中为命令输出着色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57092331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com