Justin Tullgren
10/27/2023, 4:07 PMexec
task? Example, the shell command spits outs a couple options to choose from. I want the task to just pick the first one or have the user be able to select. Thanks!Sam
10/27/2023, 4:22 PM-y
for running in silent/non-interactive mode.Justin Tullgren
10/27/2023, 4:22 PMVampire
10/27/2023, 7:19 PMJustin Tullgren
10/27/2023, 7:40 PMregister<Exec>("task") {
commandLine = listOf(
// command puts out a choice
// so we just choose the first from the list.
"bash", "-c", "echo 0 | command"
)
}
Justin Tullgren
10/27/2023, 7:41 PMJustin Tullgren
10/27/2023, 7:41 PM