Execute Function or Builtin: fexec
Execute Function or Builtin: fexec
Execute a command or function, bypassing the usual order of precedence.
Description
fexec allows you to execute a command or function, bypassing the usual order of precedence.
Usage
fexec flag command [ parameters... ] -> <stdout>
Examples
fexec private /source/builtin/autocomplete.alias
Flags
builtinExecute a Murex builtinfunctionExecute a Murex public functionhelpDisplay help messageprivateExecute a Murex private function
Detail
Order of precedence
There is an order of precedence for which commands are looked up:
runmode: this is executed before the rest of the script. It is invoked by the pre-compiler forking process and is required to sit at the top of any scripts.testandpipefunctions also alter the behavior of the compiler and thus are executed ahead of any scripts.private functions - defined via
private. Private's cannot be global and are scoped only to the module or source that defined them. For example, You cannot call a private function directly from the interactive command line (however you can force an indirect call viafexec).Aliases - defined via
alias. All aliases are global.Murex functions - defined via
function. All functions are global.Variables (dollar prefixed) which are declared via
global,setorlet. Also environmental variables too, declared viaexport.globbing: however this only applies for commands executed in the interactive shell.
Murex builtins.
External executable files
You can override this order of precedence via the fexec and exec builtins.
Compatibility with POSIX
For compatibility with traditional shells like Bash and Zsh, builtin is an alias to fexec builtin
Synonyms
fexecbuiltinexec.builtinexec.functionexec.private
See Also
- Alias "shortcut":
alias: Create an alias for a command - Background Process:
bg: Run processes in the background - Display Running Functions:
jobs: Lists all running functions within the current Murex session - Execute External Command:
exec: Runs an executable - Foreground Process:
fg: Sends a background process into the foreground - Include / Evaluate Murex Code:
source: Import Murex code from another file or code block - Murex Event Subsystem:
event: Event driven programming for shell scripts - Open File:
open: Open a file with a preferred handler - Private Function:
private: Define a private function block - Public Function:
function: Define a function block - Shell Runtime:
builtins: Returns runtime information on the internal state of Murex - Tab Autocompletion:
autocomplete: Set definitions for tab-completion in the command line
This document was generated from builtins/core/management/fexec_doc.yaml.