MNeill73
MNeill73
That's a relatively trivial task, though...in bashlike form... SSStartLog=`grep "*some identifiable start string from the log*" /path/to/server.log | awk "{print *$the $fields $that $are $the $date*}"` SSStart=`date --date="${SSStartLog}" %+"%s"` And...
"(Yes, this can be achieved by using "output_format": "html" and scripting one's own conversion to HTML. But that's somewhat less convenient.)" No, it can't - the output formatter overrides the...
Doesn't it show when you mouse over the "banner image"? On Mon, Nov 27, 2023, 5:39 AM Iaroslav Shepilov ***@***.***> wrote: > Hi @ojtimsen , there should be a >...
This would be a bad idea. Config files for WhateverProduct should accept a single syntax. JSON, or YAML, or INI file, or whatever... But one format. A config file that...
Seems like the cleanest option would be a toggle in the script configuration, to "Send SIGINT instead of SIGTERM on stop" On Tue, Oct 17, 2023 at 6:10 AM Iaroslav...
${auth.username} should be available to your scripts to access, as the currently logged in UI user On Wed, Aug 23, 2023, 11:20 PM zfpang ***@***.***> wrote: > From this screen,...
Part of the shell-safeness of this system is that it doesn't let the target script "interpret" parameters. The way you've configured the script, it has one parameter. In effect, the...
*while [[ $# -gt 0 ]] ;* *do key="$1"* *case $key in* *--location|-l) location="$2"* *shift ; shift # pass argument, then pass value* *;;* *--unit|-u) unit="$2"* *shift ; shift #...
Services that restart themselves generally fork a controller process to: - Stop the original process - Start a new one The other option is to put it under the control...
For help/info page type output, just write a script, with no parameters, that prints all the output you want to see. Then go back and reference the manual auto-execute configuration...