We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Many command supports redirect usage, for example
echo "HelloWorld" > 1.txt echo "HelloWorld" | clip
If tesseract supports it, it will be more user-friendly.
tesseract
The text was updated successfully, but these errors were encountered:
I write a script to snapshot and then recognize it (for Windows).
ksnip.exe -c -p "d:\temp\source.png" && tesseract.exe "d:\temp\source.png" "d:\temp\ocr_result" -l eng && cat "d:\temp\ocr_result.txt" | clip
It will be more simple a lot if tesseract supports redirecting function like many commands, such as cat. If it supports, the script will be
cat
ksnip.exe -c -p "d:\temp\source.png" && tesseract.exe "d:\temp\source.png" -l eng | clip
Redirecting function give users freedom to save result to anywhere
Sorry, something went wrong.
No branches or pull requests
Your Feature Request
Many command supports redirect usage, for example
If
tesseract
supports it, it will be more user-friendly.The text was updated successfully, but these errors were encountered: