suspendsuspends the current process |
KornShell Built-in |
suspend
suspend
stops the current process from executing by
sending a SIGSTOP signal to itself. This process can resume by receiving a
SIGCONT signal from another qualifying process.
suspend
is a built-in alias defined as
alias suspend="stop \$\$"
0