我正在尝试制作一个脚本,该脚本将连接到UPS并获取电池值并将其存储在变量中。
我已经成功连接到UPS并从中获取信息,但我正在努力将电池值放入变量中。
到目前为止的脚本
#!/bin/bash
#
# Connect to ups and output values into output var
output="$( upsc ups@localhost)"
# Trip the output to just have battery charge info
output1="$( sed -n '/battery.charge:*/,/./p' <<< "$output" )"
echo "$output1";
输出返回
ambient.1.humidity.alarm.high: 60.00
ambient.1.humidity.alarm.low: 30.00
ambient.1.temperature.alarm.high: 40.00
ambient.1.temperature.alarm.low: 10.00
battery.charge: 100.00
battery.current: 0.00
battery.current.total: 0.00
battery.date: 03/15/2013
battery.runtime: 2040.00
battery.runtime.low: 120
battery.voltage: 54.70
device.mfr: APC
device.model: Smart-UPS 2200
device.serial: IS1248007101
device.type: ups
driver.name: snmp-ups
driver.parameter.pollinterval: 2
driver.parameter.port: 172.16.27.207
driver.version: 2.7.2
driver.version.data: apcc MIB 1.2
driver.version.internal: 0.72
input.frequency: 50.00
input.sensitivity: high
input.transfer.high: 253
input.transfer.low: 208
input.transfer.reason: smallMomentarySpike
input.voltage: 249.00
input.voltage.maximum: 249.00
input.voltage.minimum: 247.50
output.current: 2.30
output.frequency: 50.00
output.voltage: 249.00
output.voltage.nominal: 230
ups.delay.shutdown: 0
ups.delay.start: 0
ups.firmware: UPS 06.5 / MCU 11.0 / UBL 08.2 / MBL 11.0 (ID18)
ups.id: UPS-Understage
ups.load: 25.30
ups.mfr: APC
ups.mfr.date: 11/24/2012
ups.model: Smart-UPS 2200
ups.serial: IS1248007101
ups.status: OL
ups.temperature: 18.30
ups.test.date: 04/12/2016
ups.test.result: Ok
我只需要写着 battery.charge: 100.00 的部分
到一个变量中
通过脚本,我得到的输出是
battery.charge: 100.00
battery.current: 0.00
任何帮助请只是从电池充电位获取 100.00。
答案1
作为没有中间变量且没有 的单行grep
:
output="$( upsc ups@localhost | awk '/battery\.charge/ {print $2}'
答案2
您的问题仅涉及获取单个变量,但一种方法是将整个输出吸入环境upsc
中bash
,并从那里挑选出您需要的值。以机智:
upsc_parser()
{
local upsc_var
local upsc_val
while read
do
upsc_var="${REPLY%: *}"
upsc_val="${REPLY#${upsc_var}: }"
upsc_var="${upsc_var//./_}"
upsc_val="${upsc_val//[\"\'\\]/}"
echo "upsc_${upsc_var}=\"${upsc_val}\""
done
}
eval $(upsc | upsc_parser)
echo $upsc_battery_charge
这样就可以获得您需要的值,并且如果您稍后决定需要另一个值,也不需要进行大量额外的工作。
答案3
只需将电池充电特定输出分配给变量即可
BCHRG="$( upsc ups@localhost | grep battery.charge | awk {'print $2'} )"
答案4
不是那么优雅,但如果你愿意,你可以使用 awk 更改最后一行脚本:
echo $output1 | grep battery.charge | awk {'print $2'}
如果你想将其保持为变量:
output2=$(echo $output1 | grep battery.charge | awk {'print $2'})