Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7628229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:34:01+00:00 2026-05-31T05:34:01+00:00

I have a Unix shell script (bash) that sources some environment variables and then

  • 0

I have a Unix shell script (bash) that sources some environment variables and then gives the user a few options. Based on the user input I call some other Unix shell scripts that perform certain actions. I’m having an issue with the start app server option below. When I execute the appserver/run.sh script from main.sh I get a “Unable to access jarfile start.jar”. When I navigate directly to the run.sh script and run it from its directory, it works. start.jar starts up a Jetty application server. Any ideas on how to execute run.sh from main.sh?

permissions:

-rw-r--r--  1 colgray eng  42364 Jan 10 15:40 start.jar

main.sh:

source ./setupenvironment.sh
echo "Which Example would you like to run?"
select yn in "one" "two" "start app server" "Quit" do
    case $yn in
        "one" ) ./examples/one/scripts/one.sh; break;;
        "two" ) ./examples/twp/scripts/two.sh; break;;
        **"start app server" ) ./examples/appserver/run.sh; break;;**
         Quit ) exit;;
    esac
done

/examples/appserver/run.sh:

java -jar start.jar
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T05:34:02+00:00Added an answer on May 31, 2026 at 5:34 am

    Since you’re running from a directory other than ./examples/appserver, it cannot find your jar file:

    <somewhere>                        <-- this is where you are
         |                                  ^
         +--> examples                      | <- this is a distance too far :-)
                 |                          v
                 +--> appserver        <- this is where start.jar is
    

    Based on the fact that you seem to be running it from the directory where examples lives (otherwise the relative paths wouldn’t work), you’ll need either

    java -jar examples/appserver/start.jar
    

    or:

    cd examples/appserver
    java -jar start.jar
    

    in your run.sh file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .sh unix shell script that receives as a parameter a path,
I have a script written the unix shell language (NOT in bash or any
I have a unix shell script which test ftp ports of multiple hosts listed
I have the below line in the unix shell script. I want to exclude
I have some code to execute the unix shell command in background in python
Is there an editor for Unix shell scripts such as Bash that has a
I have to write a script to send mails using unix shell scripts. The
I have a unix shell script which uses redirection of stdout and stderr to
I currently have a request to build a shell script to get some data
i have unix shell script which is need to be run like below test_sh

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.