Use the following shortcuts to quickly move the cursor around the current line while typing a command. This is particularly useful when running commands with a lot of long, verbose output, but you don’t want to stop the command itself with Ctrl+C. This is similar to running the “clear” command.
The following shortcuts allow you to control what appears on the screen. RELATED: How Linux Signals Work: SIGINT, SIGTERM, and SIGKILL Controlling the Screen This is similar to running the exit command. This sends an EOF (End-of-file) marker to bash, and bash exits when it receives this marker. To return the process to the foreground later, use the fg process_name command. This sends the SIGTSTP signal to the process. Ctrl+Z: Suspend the current foreground process running in bash.This sends the SIGINT signal to the process, which is technically just a request-most processes will honor it, but some may ignore it. Ctrl+C: Interrupt (kill) the current foreground process running in in the terminal.Use the following shortcuts to manage running processes.