MNeill73

Results 33 comments of MNeill73

I envision them seeing it on the "home" screen any time they land on it, the big empty canvas where there's nothing until you select a script. If they go...

This may be easier to do by way of a crontab that runs just after midnight each day... ``` #!/bin/bash cd /path/to/your/scriptserver/logs ydate=`date -d "yesterday" +"%y%m%d"` logfile="Scriptserver-unified-${ydate}.log"; rm ${logfile} for...

You can do this with a script in the script server. You already have the command, just replace the order number with ${1}, change those single quotes to double so...

Here's a quickie I did against my own logs directory, I'm looking for any script that ran against **se_lab_XXX**, where I pass XXX as the single parameter: ``` [ec2-user@control ~]$...

Just a breadcrumb for eventually revisiting the Python/QT discussion... https://doc.qt.io/qtforpython/

Or, you could install a custom signal handler in the script, to intercept the signal from scriptserver. For example, in Bash you'd use the "trap" command. https://phoenixnap.com/kb/bash-trap-command On Thu, May...

Eh, this is true... In this case, then, you probably need to make use of backup copies, exit functions, and semaphore files to make sure you preserve intact data... *...

What if you invoke it as "--extra_label=LabelB"? Shell convention says that long-name arguments should have their values set with =, and short-name arguments assign from the value following the argument....

The ability to disable the logging opens up the possibility of bad actors installing scripts that you do want logged that don't. The logfile names are based on the script...

Control-left-click doesn't open the link in a tab? On Wed, Dec 4, 2024, 7:19 AM SaberStrat ***@***.***> wrote: > Currently > > I can only open a single run by...