我需要一个 bash 脚本,它接受 shell 命令的输出并解析该输出以提取状态。如果状态为:糟糕,则应发送电子邮件。
~$ bucardo status
PID of Bucardo MCP: 2074
Name State Last good Time Last I/D Last bad Time
============================================+========+=======================+==============+===========+=======================+==============
zenith | Good | Jun 28, 2020 08:37:45 | 31h 13m 14s | 1/1 | Jun 22, 2020 12:28:34 | 171h 22m 25s
zenith | Good | Jun 23, 2020 19:12:42 | 140h 38m 17s | 4/4 | none |
我无法正确使用正则表达式
#!/usr/bin/env bash
bucardo status
while read line; do
if [[ ! ${line} =~ ^[\+\| ]]; then
if [[ ${line} =~ \|[[:space:]]*([[:alpha:]]+)[[:space:]]*\ ]]; then
state="${BASH_REMATCH[1]}"
echo "${state}"
fi
fi
done
答案1
if [[ ${line} =~ \|[[:space:]]*([[:alpha:]]+)[[:space:]]*\ ]]; then
应该
if [[ ${line} =~ \|[[:space:]]*([[:alpha:]]+)[[:space:]]* ]]; then
(删除多余的\
)。现在对我有用。
提示:如果您使用 Vim,语法高亮会让您立即看到这一点!