add print script

This commit is contained in:
Felix Van der Jeugt 2016-11-04 10:30:11 +01:00
parent 73d3de343a
commit d42666c579
1 changed files with 18 additions and 0 deletions

18
local/bin/print Normal file
View File

@ -0,0 +1,18 @@
#!/bin/sh
if [ -z "$1" ]; then
echo "usage: $0 [--colour] <file>"
echo
echo " -c | --colour print in colour"
echo " file file (print-ready) to print or -"
echo
echo "print print-ready files with the UGent printers. Accepts only"
echo ".txt, .ps, .pdf, .pcl, .cht and .prn."
exit 1
fi >&2
if [ "$1" == "-c" -o "$1" == "--colour" ]; then
curl --insecure -F "fileToPrint=@$2" 'https://we02pr06.ugent.be/hp/device/Print/Print'
else
curl --insecure -F "localFile=@$1" 'https://we02pr04.ugent.be/hp/device/this.printservice?printThis'
fi