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