我运行每周一次的crontab,它收集信息并创建一个日志文件。
我有一个脚本,我针对这个每周文件运行,只输出特定状态行到我的显示器。
#!/bin/sh
# store newest filename to variable
HW_FILE="$(ls -t /home/user/hwinfo/|head -1)"
# List the Site name, hardware group, Redundancy or Health status', and the site divider
grep -i 'Site\|^\*\*\|^Redundancy\|^Health\|^##' /home/user/hwinfo/$HW_FILE
echo "/home/user/hwinfo/"$HW_FILE
exit 0
这是一个示例输出:
Accessing Site: site01
** FANS **
Redundancy Status : Full
** MEMORY **
Health : Ok
** CPUs **
Health : Ok
** POWER SUPPLIES **
Redundancy Status : Full
##########################################
Accessing Site: site02
** FANS **
Redundancy Status : Full
** MEMORY **
Health : Degraded
** CPUs **
Health : Ok
** POWER SUPPLIES **
Redundancy Status : Full
##########################################
Accessing Site: site03
** FANS **
Redundancy Status : Failed
** MEMORY **
Health : Ok
** CPUs **
Health : Ok
** POWER SUPPLIES **
Redundancy Status : Full
##########################################
/home/user/hwinfo/hwinfo_102217_034001.txt
有没有办法cat / grep / sed / awk / perl /当前输出,以便任何以Redundancy
或Health
开头但不以{{1}结尾的行或Full
分别得到颜色?
我想看到的是这个
我已尝试将当前输出汇总到Ok
但未成功。非常感谢任何帮助。
答案 0 :(得分:8)
在任何UNIX机器上的任何shell中都有任何awk:
awk -v on="$(tput setaf 1)" -v off="$(tput sgr0)" '$1~/^(Health|Redundancy)$/ && $NF!~/^(Full|Ok)$/{$0 = on $0 off} 1' file
你应该使用更强大的表达式来进行字符串比较,而不是使用当前的松散正则表达式:
awk -v on="$(tput setaf 1)" -v off="$(tput sgr0)" '
(($1=="Health") && ($NF!="Ok")) || (($1=="Redundancy") && ($NF!="Full")) { $0 = on $0 off }
1' file
答案 1 :(得分:7)
使用GNU grep:
| grep -P --color=auto '^Redundancy.*(?<!Full)$|^Health.*(?<!Ok)$|$'
-P使用PCRE进行后观(我不认为grep会支持),|$
使其输出所有行。您需要在行尾之前使用lookbehind。