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.

41 lines
933 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.

nice
===
改变程序执行的优先权等级
## 补充说明
**nice命令** 用于以指定的进程调度优先级启动其他的程序。
### 语法
```
nice(选项)(参数)
```
### 选项
```
-n指定进程的优先级整数
```
### 参数
指令及选项:需要运行的指令及其他选项。
### 实例
新建一个进程并设置优先级将当前目录下的documents目录打包但不希望tar占用太多CPU
```
nice -19 tar zcf pack.tar.gz documents
```
方法非常简单,即在原命令前加上`nice -19`。很多人可能有疑问了最低优先级不是19么那是因为这个“-19”中的“-”仅表示参数前缀所以如果希望将当前目录下的documents目录打包并且赋予tar进程最高的优先级
```
nice --19 tar zcf pack.tar.gz documents
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->