echo -e "^[[1;32m skyapp exist ^[[0m" //绿色 echo -e "^[[1;33m skyapp exist ^[[0m" //*** echo -e "^[[1;34m skyapp exist ^[[0m" //蓝色 echo -e "^[[1;35m skyapp exist ^[[0m" //紫色 echo -e "^[[1;36m skyapp exist ^[[0m" //青绿 echo -e "^[[1...
echo -e "\033[34m 蓝色字 \033[0m" echo -e "\033[35m 紫色字 \033[0m" echo -e "\033[36m 天蓝字 \033[0m" echo -e "\033[37m 白色字 \033[0m" 字背景颜色范围:40—–47 echo -e "\033[40;37m 黑底白字 \033[0m" echo -e "\033[41;37m 红底白字 \033[0m" echo -e...
[root@k8s-node02 test]# echo -e "\e[32m test content绿 \e[0m" test content绿 [root@k8s-node02 test]# echo -e "\e[33m test content黄 \e[0m" test content黄 [root@k8s-node02 test]# echo -e "\e[34m test content蓝 \e[0m" test content蓝 [root@k8s-node02 test]# echo ...
[root@k8s-node02 test]# echo -e "\e[30m test content黑 \e[0m" test content黑 [root@k8s-node02 test]# echo -e "\e[31m test content红 \e[0m" test content红 [root@k8s-node02 test]# echo -e "\e[32m test content绿 \e[0m" test content绿 [root@k8s-node02 test]# echo -...
echo-e"OK! \n"# -e 开启转义echo"It is a test" 输出结果: OK!Itisa test 5.显示不换行 #!/bin/shecho-e"OK! \c"# -e 开启转义 \c 不换行echo"It is a test" 输出结果: OK!Itisa test 6.显示结果定向至文件 echo"It is a test">myfile ...
简介:Shell echo 详细介绍(-n、-e、-e字体颜色背景以及其他配置项) 一、echo基本使用 echo输出格式 # 正常输出,默认输出后进行换行macbook$ echo "hello world"hello worldmacbook$# 加上 -n,输出后不进行换行,下一行的命令被连在了一起macbook$ echo -n "hello world"hello worldmacbook$# 加上 -e 设...
可以在 echo 命令中使用-e选项,这样就可以使用换行符\n在同一输出行中打印新行了,如下例子: 复制 echo-e"Name\nAddress\nPhone Number" 1. 其输出如下: 复制 Name Address Phone Number 1. 2. 3. 下面我们来详细了解一下。 使用echo 命令的 -e 选项打印新行 ...
把脚本第一行改成 !/bin/bash 就行了。echo -e是bash才能用的。sh默认是指dash。 用这个命令 ls -l `which sh`可以看到最右 lrwxrwxrwx 1 root root 4 7月 3 18:14 /bin/sh -> dash 刚才
shell脚本中echo显示内容带颜色显示,echo显示带颜色,需要使用参数-e 字背景颜色和文字颜色之间是英文的"" 文字颜色后面有个m 字符串前后可以没有空格,如果有的话,输出也是同样有空格 字颜色 30—37echo -e "\033[30m 黑色字 \033[0m"echo -e "\033[31m 红色字 \033[0m"echo -e "\033[32m 绿色字 ...
shell脚本中echo颜色设置 简介:shell脚本中echo颜色设置 问题:跑shell脚本时,想增加高亮输出 第一种设置方法: 颜色字号表 vim echo.sh #!/bin/bash# 定义颜色动作, 把echo -e也定义到变量中RED="echo -en \\E[4;31m"GREEN="echo -en \\E[7;32m"YELLOW="echo -en \\E[5;33m"RESET="echo -en \...