访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux关闭命令行正在执行的程序

时间:2019-06-20

linux 命令_linux命令_linux关机命令

Ctrl + C 终止 是强制中断程序的执行,,进程已经终止。

Ctrl + Z 是将任务中止(暂停的意思),但是此任务并没有结束,他仍然在进程中他只是维持挂起的状态linux命令,用户可以使用fg/bg操作继续前台或后台的任务linux命令,fg命令重新启动前台被中断的任务,bg命令把被中断的任务放在后台执行。

Ctrl + S 挂起

linux命令_linux关机命令_linux 命令

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:

linux命令_linux 命令_linux关机命令

fg %1

if you have multiple processes paused then you should do

jobs

linux关机命令_linux命令_linux 命令

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.

原文:https://www.cnblogs.com/sinferwu/p/11056636.html