dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

Commit: cca958da9fd0b40d337ab683ed380dcbd3740072
Parent: d8d496f375c4361b3f84ce91d92b6b3eeca17c97
Author: Randy Palamar
Date:   Fri,  9 Jul 2021 16:56:24 -0600

ocr: fix getopts

Diffstat:
Mbin/ocr | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/ocr b/bin/ocr @@ -12,7 +12,7 @@ usage() { exit 1 } -while getopts "ld:" arg; do +while getopts "l:d:" arg; do case "${arg}" in d) dpi="${OPTARG}" ;; l) lang="${OPTARG}" ;;