mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
12 lines
211 B
Bash
12 lines
211 B
Bash
|
#! /bin/sh
|
||
|
choice="$1";
|
||
|
shift
|
||
|
case "$choice" in
|
||
|
encode | create | write | CommandLineEncoder)
|
||
|
zxing-cmdline-encoder "$@";
|
||
|
;;
|
||
|
decode | read | run | CommandLineRunner)
|
||
|
zxing-cmdline-runner "$@";
|
||
|
;;
|
||
|
esac
|