Linux关闭命令行正在执行的程序
? https://superuser.com/questions/262942/whats-different-between-ctrlz-and-ctrlc-in-unix-command-line CTRL+Z stops (pauses) a job CTRL+C terminates a job with CTRL+C you cannot resume the process but with CTRL+Z the job can be resumed by just entering at the command promt: fg %1 if you have multiple processes paused then you should do jobs to see the output and select the appropriate number to resume e.g. fg %3 resumes the third job in the list. You can also have jobs running in the background with bg %n where n is the job number. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |