1

I am a fresh user of Ubuntu. I enjoy with 18.04 version and there are many things to learn. As for example to launch a program called "Holy Bible." The distributor is the "Institute for Bible Translation" - https://ibtrussia.org/en/pc.

The installation of the package comes along with the file that provides the script to launch the program; but I couldn't as a result of my incompetence.

Here it is the script:

#!/bin/bash
cd "$( dirname "${BASH_SOURCE[0]}" )"
"./MK/xulrunner/xulrunner" --app "./MK/xulsword/application.ini" -profile "./MK/profile" 

Would you please explain how to run the program with this script from "Terminal"

Thank you very much.

dessert
  • 39,982
Little
  • 11

1 Answers1

0

Let’s say you extracted the archive to ~/Downloads/Holy_Bible, then open a terminal with Ctrl+Alt+T and execute:

~/Downloads/Holy_Bible/start-MK.sh

You can also try to just click on the start-MK.sh file in your file manager, at least PCManFM asks what to do and lets you choose to “Execute” the file, which runs the program.

Protip: To change the program’s language, just press F1 and select a language in the appearing dropdown menu.

dessert
  • 39,982
  • Excellent solution. The program was executed through the Terminal. I set up a language. On the left panel there appeared icon MK that associated with Holy Bible. However, when I closed the application with a purpose to start it again, I found no more the icon titled MK. Now I don't know how to open the program I've just installed. I am so thankful for giving me the instruction how to run the program. Now would you please help me again with finding the icon to start "Holy Bible". – Little Aug 08 '18 at 00:12
  • @Little I‘d create a launcher for it, its command (or Exec line respectively) would be ~/Downloads/Holy_Bible/start-MK.sh in my example. – dessert Aug 08 '18 at 05:33