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

  • Home
  • SEARCH
  • 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 8277553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:43:07+00:00 2026-06-08T08:43:07+00:00

I have to bash scripts: script1.sh HELLO=hello export HELLO ./script2.sh echo $HELLO script2.sh echo

  • 0

I have to bash scripts:

script1.sh

HELLO=hello
export HELLO
./script2.sh
echo $HELLO

script2.sh

echo $HELLO
HELLO=world
export $HELLO

The output is hello hello instead of hello world. How can I modify variables between scripts which call each other?

EDIT: Passing variables as arguments won’t work. I don’t know the number of variables which might be changed in script2.sh.

  • 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-06-08T08:43:09+00:00Added an answer on June 8, 2026 at 8:43 am

    If you do not want to run the second script as a child process, you have to source it:

    HELLO=hello
    export HELLO
    . ./script2.sh  # Note the dot at the beginning
    echo $HELLO
    

    No export is needed in the second script – you already told bash to export the variable.

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

Sidebar

Related Questions

Say you have a bash script test.sh #!/bin/sh echo 'Hello World!' In linux if
I have a bash script like: #!/bin/bash echo Hello world! How do I execute
I have this script called test.sh: #!/bin/bash STR = Hello World echo $STR when
I have a script that looks like this #!/bin/bash function something() { echo hello
I have the following bash script, we can call it script1.sh : #!/bin/bash exec
Assume I have a file at http://mysite.com/myscript.sh that contains: #!/bin/bash echo Hello $1 From
I have a few bash scripts I run, but they can take several hours
Let's say I have a bash script that executes three scripts in parallel ./script1
I have certain critical bash scripts that are invoked by code I don't control,
We have a system that has some Bash scripts running besides Java code. Since

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.