Suspends the execution of the shell.
suspend [-f]
-f performs a suspend operation on the login shell.
Returns successful unless job control is not enabled or an error occurs.
# Open a terminal and first obtain the PID.
echo $$
# Execute the suspend command
suspend
# Open another terminal and send the SIGCONT command
kill -s SIGCONT PID
# At this point, the previous terminal ends the suspended state and can interact normally.