You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
942 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

fg
===
将后台作业放到前台终端运行
## 说明
**fg命令** 用于将后台作业在后台运行的或者在后台挂起的作业放到前台终端运行。与bg命令一样若后台任务中只有一个则使用该命令时可以省略任务号。
在Linux系统中执行某些操作时候有时需要将当前任务暂停调至后台或有时须将后台暂停的任务重启开启并调至前台这一序列的操作将会使用到 jobs、bg、和 fg 三个命令以及两个快捷键来完成。
### 语法
```
fg(参数)
```
### 参数
作业标识:指定要放到前台的作业标识号。
### 实例
使用fg命令将任务号为1的任务从后台执行转换到前台执行输入如下命令
```
fg 1 #将任务转换到前台执行
```
执行上面的命令后,命令行窗口将显示如下信息:
```
find / -name password #前台执行命令
```