Created
May 7, 2012 21:01
-
-
Save Koronen/2630394 to your computer and use it in GitHub Desktop.
Simple Webcam Barcode Scanner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
sudo apt-get install zbar-tools xdotool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
f = IO.popen('zbarcam -q --raw') | |
begin | |
while (line = f.readline) | |
system "xdotool type '#{line}'" | |
end | |
rescue EOFError | |
f.close | |
rescue Interrupt | |
f.close | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment