lp(System V) : lpr과 유사하게 문서를 프린터로 출력한다. # lp hellcbt.txt -> hellocbt.txt를 출력한다. # lp -n 3 hellocbt.txt -> hellocbt.txt를 3장 출력한다.
lpr(BSD)
: 프린터에게 작업을 요청한 후에 프린트할 파일을 읽어서 출력 가능한 데이터를 LPD(Linux Printing Daemon)에게 전달한다.
# lpr hellocbt.txt -> hellocbt.txt를 출력한다.
# lpr hellocbt.txt | lpr
또는
# cat hellocbt.txt > /dev/lp0
-> 리다이렉션을 통해 hellocbt.txt를 출력한다.
lp(System V)
: lpr과 유사하게 문서를 프린터로 출력한다.
# lp hellcbt.txt -> hellocbt.txt를 출력한다.
# lp -n 3 hellocbt.txt -> hellocbt.txt를 3장 출력한다.
lpr(BSD)
: 프린터에게 작업을 요청한 후에 프린트할 파일을 읽어서 출력 가능한 데이터를 LPD(Linux Printing Daemon)에게 전달한다.
# lpr hellocbt.txt -> hellocbt.txt를 출력한다.
# lpr hellocbt.txt | lpr
또는
# cat hellocbt.txt > /dev/lp0
-> 리다이렉션을 통해 hellocbt.txt를 출력한다.