1、echo:输出空行;
2、echo -e:enable interpretation of backslash escapes;
3、echo -n:do not output the trailing newline;
4、echo -e "\033[fgColor;bgColorm字符串\033[0m"
fgColor:30-》37(黑、红、绿、黄、蓝、紫、青、白[灰])
bgColor:40-》47(黑、红、绿、黄、蓝、紫、青、白[灰])
本文共 273 字,大约阅读时间需要 1 分钟。
1、echo:输出空行;
2、echo -e:enable interpretation of backslash escapes;
3、echo -n:do not output the trailing newline;
4、echo -e "\033[fgColor;bgColorm字符串\033[0m"
fgColor:30-》37(黑、红、绿、黄、蓝、紫、青、白[灰])
bgColor:40-》47(黑、红、绿、黄、蓝、紫、青、白[灰])
转载于:https://blog.51cto.com/zengfanhong/1793060