github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/docs/commands/fg.md (about) 1 # `fg` 2 3 > Sends a background process into the foreground 4 5 ## Description 6 7 `fg` resumes a stopped process and sends it into the foreground. 8 9 ## Usage 10 11 POSIX only: 12 13 ``` 14 fg fid 15 ``` 16 17 ## Detail 18 19 This builtin is only supported on POSIX systems. There is no support planned 20 for Windows (due to the kernel not supporting the right signals) nor Plan 9. 21 22 ## See Also 23 24 * [`bg`](../commands/bg.md): 25 Run processes in the background 26 * [`exec`](../commands/exec.md): 27 Runs an executable 28 * [`fid-kill`](../commands/fid-kill.md): 29 Terminate a running Murex function 30 * [`fid-killall`](../commands/fid-killall.md): 31 Terminate _all_ running Murex functions 32 * [`fid-list`](../commands/fid-list.md): 33 Lists all running functions within the current Murex session 34 * [`jobs`](../commands/fid-list.md): 35 Lists all running functions within the current Murex session 36 37 <hr/> 38 39 This document was generated from [builtins/core/processes/bgfg_doc.yaml](https://github.com/lmorg/murex/blob/master/builtins/core/processes/bgfg_doc.yaml).