MAWalker
(United Kingdom)
August 20, 2024, 11:47am
1
Does anyone know how/where I can extract the following value from the command line (for use in a script) ?
I’ve looked in various DB Tables & CONF files but not yet been able to find where this value is stored. A pointer to it would be greatly appreciated, Thanks.
billsimon
(Bill Simon)
August 20, 2024, 11:55am
2
fwconsole updatemanager -l
or more concisely
fwconsole updatemanager notification_emails
MAWalker
(United Kingdom)
August 20, 2024, 11:58am
3
Thank you
I’ve used that as follows to get the precise value;
fwconsole updatemanager -l | grep -iw 'notification_emails' | cut -d '|' -f3 | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'
Alternatively;
fwconsole updatemanager notification_emails | cut -d '"' -f4
system
(system)
Closed
August 27, 2024, 11:58am
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.