Linux Ctrl Z
-
chncaesar
2013-11-20 11:24:56
-
Linux操作系统
-
原创
Ctrl +Z puts a process in background. For instance, while you're editing a file using vi, hitting Ctrl+z brings user back to command line, and makes vi run as a background process.
Use jobs command to list all background process.
Use fg % to bring the process back.