User Tools

Site Tools


blog:print_files_from_any_device_using_dropbox

Print files from any device using Dropbox

If you have a printer attached to a Linux machine, you can easily send print jobs to that printer from another remote computer using Dropbox (see similar solutions for Windows and Mac).

#!/bin/bash
user=brb
PrintQueue="/home/$user/Dropbox/PrintQueue";
IFS=$'\n'
for PrintFile in $(/bin/ls -1 ${PrintQueue}) do
  lpr -r ${PrintQueue}/${PrintFile};
done
-- dropprint.sh ---

Ref: http://www.labnol.org/software/print-files-on-linux/17841/

~~LINKBACK~~

Discussion

Enter your comment. Wiki syntax is allowed:
   ___   _      __  _   __  ____   _      __
  / _ \ | | /| / / | | / / / __ \ | | /| / /
 / ___/ | |/ |/ /  | |/ / / /_/ / | |/ |/ / 
/_/     |__/|__/   |___/  \___\_\ |__/|__/
 
blog/print_files_from_any_device_using_dropbox.txt · Last modified: 2011-04-17 16:46 by brb