소스 검색

#321: add lp and lpstat commands (kudos to @Qtrain)

Igor Shubovych 9 년 전
부모
커밋
08b7e1c0cd
3개의 변경된 파일34개의 추가작업 그리고 0개의 파일을 삭제
  1. 23 0
      pages/common/lp.md
  2. 11 0
      pages/common/lpstat.md
  3. 0 0
      pages/index.json

+ 23 - 0
pages/common/lp.md

@@ -0,0 +1,23 @@
+# lp
+
+> print files.
+
+- Print the output of a command to the default printer (see `lpstat` command).
+
+`echo "test" | lp`
+
+- Print a file to the default printer.
+
+`lp {{path/to/filename}}`
+
+- Print a file to a named printer (see `lpstat` command).
+
+`lp -d {{printer_name}} {{path/to/filename}}`
+
+- Print N copies of file to default printer (replace N with desired number of copies).
+
+`lp -n {{N}} {{path/to/filename}}`
+
+- Print only certain pages to the default printer (print pages 1, 3-5, and 16).
+
+`lp -P 1,3-5,16 {{path/to/filename}}`

+ 11 - 0
pages/common/lpstat.md

@@ -0,0 +1,11 @@
+# lpstat
+
+> print status information about printers
+
+- List printers present on the machine and whether they are enabled for printing.
+
+`lpstat -p`
+
+- Print the default printer name.
+
+`lpstat -d`

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
pages/index.json


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.