vote up 2 vote down star
1

I want to use zbarcam but after reading a barcode, it doesn't stop.

$ zbarcam | xvkbd -file - -window emacs
EAN-13:6941428130969
CODE-128:3096140900557

Do you know how I can tell bash to kill zbarcam after printing on the stdout the first \n ?

flag

+1 for making me aware of zbarcam, that looks cool! – Greg Oct 15 at 10:13
Yes, it is really cool. zbar.sf.net – Natim Oct 15 at 10:26

2 Answers

vote up 1 vote down check

Try

tmp=/tmp/barcode.$$ # Note: security risk
zbarcam > $tmp &
pid=$!
# Sleep until file has content
while [[ ! -s $tmp ]] ; do
    sleep 1
done
kill $pid
cat $tmp

Note that it might not work if zbarcam doesn't flush its output.

link|flag
Thank you, It works well ! – Natim Oct 16 at 0:59
vote up 1 vote down

Have you tried this?

zbarcam | head -1 | xvkbd -file - -window emacs
link|flag
It just stop to write on the virtual keyboard but doesn't stop zbarcam. – Natim Oct 16 at 0:57
Ok, the technique works for some things, but not everything. Glad you got another answer that worked for you. – retracile Oct 16 at 12:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.