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 9268379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T14:47:51+00:00 2026-06-18T14:47:51+00:00

I am trying to change the variable reload from 0 to 1 as you

  • 0

I am trying to change the variable reload from 0 to 1 as you can see in my code below:

for d in /home/*; do
  u="${d##*/}";
  reload=0;
  echo "Checking $u";
  if [ -e /home/$u/info/reload.php ]; then
    echo "FOUND!";
    reload=1;
  fi
done
echo $reload;
if [ $reload = 1 ]; then
  service apache2 reload
fi

The problem is that it doesn’t get changed, $reload remains as 0, the output is similar to this (apache does not get reloaded):

Checking user1
FOUND!
Checking user2
0 #< this should be 1 not 0 :(

Why won’t my bash variable change??

  • 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-18T14:47:53+00:00Added an answer on June 18, 2026 at 2:47 pm

    You’re resetting reload for each user. If the file is not found for the last user, reload will be 0 when you exit the loop.

    Suggested fixes (with indentation for readability):

    #!/usr/bin/env bash
    
    reload=0
    for d in /home/*; do
        u="${d##*/}"
        echo "Checking $u";
        if [ -e /home/$u/info/reload.php ]; then
            echo "FOUND!"
            reload=1
        fi
    done
    echo $reload
    if [ $reload -eq 1 ]; then
        service apache2 reload
    fi
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying change from Delegates to Parallel.ForEach I see the below works fine.
I'm getting some weird behavior from IE when trying to change a session variable
I am trying to change a variable that is outside of a function, from
I'm trying to change a hardcoded variable value to dynamic, but can't seem to
I'm trying to change a variable of NSString type by calling a method. But
Possible Duplicate: Using QSlider to change the value of a variable I'm trying to
I am trying to change a variable (lett) to the next letter in the
I'm trying to change de value of an input variable (located in the parent
I'm trying to change a static variable in the class's constructor. At the start
I am trying to change a static variable inside a DLL, so when the

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.