English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux suspend command

Linux Command大全

The Linux suspend command is used to pause the execution of the shell.

suspend is a built-in shell command that can pause the currently executing shell. To resume, you must use SIGCONT signal.

Syntax

suspend [-f]

Parameter Description:

  • -f If the currently executed shell is a login shell, the suspend default cannot pause this shell. To force pause a login shell, you must use-f parameter.

Online Examples

Pause Shell

# suspend 
-bash: suspend: Cannot suspend a login shell
# suspend -f

Linux Command大全