Add a binary distribution of ZXing 1D/2D code library

This commit is contained in:
Michael Raskin
2014-11-23 02:35:15 +03:00
parent 9f82cc2684
commit e511865580
6 changed files with 56 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#! /bin/sh
choice="$1";
shift
case "$choice" in
encode | create | write | CommandLineEncoder)
zxing-cmdline-encoder "$@";
;;
decode | read | run | CommandLineRunner)
zxing-cmdline-runner "$@";
;;
esac