diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-04-22 09:17:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-04-22 09:17:14 -0300 |
commit | 5ea22ca5698cdd16a8797ac5d8edb03817946c66 (patch) | |
tree | c9040cef92b0a116d9bb98f18ba705af3d26ad22 /lprm-ssh | |
parent | 1b7f2cc5f57e0480143d045ce08b7c1b80b4cfe9 (diff) | |
download | scripts-5ea22ca5698cdd16a8797ac5d8edb03817946c66.tar.gz scripts-5ea22ca5698cdd16a8797ac5d8edb03817946c66.tar.bz2 |
Moves lpr-ssh scripts to its own repo
Diffstat (limited to 'lprm-ssh')
-rwxr-xr-x | lprm-ssh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lprm-ssh b/lprm-ssh deleted file mode 100755 index 53e1905..0000000 --- a/lprm-ssh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -# -# LPR over SSH. -# - -# Parameters -BASENAME="`basename $0`" -SERVER="$1" - -# Shift -shift - -# Check -if [ -z "$1" ]; then - echo "usage: $BASENAME <server> <job>" - exit 1 -fi - -# Proceed -ssh $SERVER lprm $1 |