Browse Source

Wrap lpremote s.t. it can be used in a pipe

Samuel W. Flint 6 năm trước cách đây
mục cha
commit
72e3d79655
1 tập tin đã thay đổi với 9 bổ sung0 xóa
  1. 9 0
      lpremoteWrap

+ 9 - 0
lpremoteWrap

@@ -0,0 +1,9 @@
+#!/bin/sh
+
+TEMPFILE=$(mktemp)
+
+cat >${TEMPFILE}
+
+lpremote ${TEMPFILE} $@
+
+rm ${TEMPFILE}