Hi Guys,
I have a custom script which converts jpg to txt using tessaract 3.01. When I execute the script from command line the conversion works fine but when the same script is executed from within ALfresco 4.2.2, it seems the application cannot execute tesseract command while other commands in the script are executed successfully. There is no error in alfresco log files. This issue is happening on my redhat 6.2 box but not on my ubuntu 12.04 box.
#!/bin/sh
SOURCE=$1
TARGET=ocrOutput
echo "Starting tesseract"
tesseract $SOURCE $TARGET
echo " Finished"
Can someone please advice?