github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/core/management/fexec_doc.yaml (about) 1 - DocumentID: fexec 2 Title: >+ 3 `fexec` 4 CategoryID: commands 5 Summary: >- 6 Execute a command or function, bypassing the usual order of precedence. 7 Description: |- 8 `fexec` allows you to execute a command or function, bypassing the usual order 9 of precedence. 10 Usage: |- 11 ``` 12 fexec flag command [ parameters... ] -> <stdout> 13 ``` 14 Examples: |- 15 ``` 16 fexec private /source/builtin/autocomplete.alias 17 ``` 18 Flags: 19 function: >- 20 Execute a Murex public function 21 private: >- 22 Execute a Murex private function 23 builtin: >- 24 Execute a Murex builtin 25 help: >- 26 Display help message 27 Detail: |- 28 ### Order of precedence 29 30 {{ include "gen/includes/order-of-precedence.inc.md" }} 31 32 ### Compatibility with POSIX 33 34 For compatibility with traditional shells like Bash and Zsh, `builtin` is an 35 alias to `fexec builtin` 36 Synonyms: 37 - fexec 38 - builtin 39 Related: 40 - function 41 - private 42 - exec 43 - source 44 - open 45 - alias 46 - autocomplete 47 - event 48 - builtins 49 - bg 50 - fg 51 - jobs