Thank you for your respond and advice
Following is the command I run to execute "retranslator" application and list of files and folders in application directory:
Code:
linux-x6dh:/home/retranslator # ./retranslator
./retranslator: line 7: ./retranslator.bin: No such file or directory
linux-x6dh:/home/retranslator # ls
backup bases retranslator retranslator.bin retranslator.conf retranslator.conf~
linux-x6dh:/home/retranslator #
As you can see the "retranslator.bin" is in the same path with "retranslator" script which is used to run the application.
Following is the content of retranslator script:
Code:
#!/bin/sh
LD_LIBRARY_PATH="$(dirname $0)/lib"
export LD_LIBRARY_PATH
$0.bin "$@"
Bookmarks