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.
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.
lp
===
打印文件或修改排队的打印任务
## 说明
**lp命令** 用于打印文件, 或者修改排队的打印任务。与lpr命令类似, lp命令既支持文件输入也支持标准输入。它与lpr的不同之处在于它有一个不同( 稍微复杂点) 的参数选项设置。
### 语法
```
lp(选项)(参数)
```
```
-E: 与打印服务器连接时强制使用加密;
-U: 指定连接打印服务器时使用的用户名;
-d: 指定接收打印任务的目标打印机;
-i: 指定一个存在的打印任务号;
-m: 打印完成时发送E-mail;
-n: 指定打印的份数;
-t: 指定打印任务的名称;
-H: 指定打印任务开始的时间;
-P: 指定需要打印的页码。
```
### 参数
文件:需打印的文件。
### 实例
要在连接在设备dlp0上的打印机lp0上打印文件`/etc/motd`,请输入:
```
lp /etc/motd
```
要使用文件的一个副本打印`/etc/motd`文件的30个副本, 并且要用邮件通知用户作业完成, 请输入:
```
lp -c -m -n30 -dlp0:lpd0 /etc/motd
```
要使用后端标志-f和-a并带上作业标题blah打印`/etc/motd`文件,请输入:
```
lp -t "blah" -o -f -o -a /etc/motd
```
要排队MyFile文件并返回作业编号, 请输入:
```
lp myfile
```
要排队MyFile文件并禁止作业编号, 请输入:
```
lp -s myfile
```
** 退出状态**
该命令返回以下退出值:
* 0: 所有输入文件成功处理。
* >0: 没有输出设备可用, 或者出现一个错误。