我正在尝试创建一个 shell 脚本,它应该像下面这样使用:
ocrscript.sh -from /home/kristoffer/test.png -to /home/kristoffer/test.txt
然后,脚本将 ocr 将图像文件转换为文本文件。以下是我目前为止得出的结论:
#!/bin/bash
export HOME=/home/kristoffer
/usr/local/bin/abbyyocr9 -rl Swedish -if ???fromvalue??? -of ???tovalue??? 2>&1
但是我不知道如何得到 -from
和 -to
的值。有什么办法吗?