Skip to main content

onCommandCompletion

Laurence MorganAbout 2 min

onCommandCompletion

Trigger an event upon a command's completion

Description

onCommandCompletion events are triggered after a command has finished executing in the interactive terminal.

Background processes or commands ran from inside aliases, functions, nested blocks or from shell scripts cannot trigger this event. This is to protect against accidental race conditions, infinite loops and breaking expected behaviour / the portability of Murex scripts. On those processes directly ran from the prompt can trigger this event.

Usage

event onCommandCompletion name=command { code block }

!event onCommandCompletion name

The following payload is passed to the function via STDIN:

{
    "Name": "",
    "Interrupt": {
        "Command": "",
        "Parameters": [],
        "Stdout": "",
        "Stderr": "",
        "ExitNum": 0
    }
}

Valid Interrupts

  • <command> Name of command that triggers this event

Payload

Name

This is the name you specified when defining the event.

Command

Name of command executed prior to this event being triggered

Operation

The commandline parameters of the aforementioned command

Stdout

This is the name of the Murex named pipe which contains a copy of the STDOUT from the command which executed prior to this event.

You can read this with read-named-pipe. eg

» <stdin> -> set: event
» read-named-pipe: $event.Interrupt.Stdout -> ...

Stderr

This is the name of the Murex named pipe which contains a copy of the STDERR from the command which executed prior to this event.

You can read this with read-named-pipe. eg

» <stdin> -> set: event
» read-named-pipe: $event.Interrupt.Stderr -> ...

ExitNum

This is the exit number returned from the executed command.

Examples

Read STDERR:

In this example we check the output from pacman, which is ArchLinux's package management tool, to see if you have accidentally ran it as a non-root user. If the STDERR contains a message saying you are no root, then this event function will re-run pacman with sudo.

event onCommandCompletion sudo-pacman=pacman {
    <stdin> -> set event
    read-named-pipe $event.Interrupt.Stderr \
    -> regexp 'm/error: you cannot perform this operation unless you are root/' \
    -> if {
          sudo pacman @event.Interrupt.Parameters
       }
}

Detail

Stdout

Stdout is written to the terminal. So this can be used to provide multiple additional lines to the prompt since readline only supports one line for the prompt itself and three extra lines for the hint text.

See Also

  • Named Pipes: A detailed breakdown of named pipes in Murex
  • <stdin>: Read the STDIN belonging to the parent code block
  • alias: Create an alias for a command
  • config: Query or define Murex runtime settings
  • event: Event driven programming for shell scripts
  • function: Define a function block
  • if: Conditional statement to execute different blocks of code depending on the result of the condition
  • onPrompt: Events triggered by changes in state of the interactive shell
  • regexp: Regexp tools for arrays / lists of strings
  • read-named-pipe: Reads from a Murex named pipe

This document was generated from builtins/events/onCommandCompletion/oncommandcompletion_doc.yamlopen in new window.

Last update:
Contributors: Laurence Morgan,Olivier Refalo