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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T02:03:21+00:00 2026-06-04T02:03:21+00:00

I am currently attempting to create a bash script that will check inside of

  • 0

I am currently attempting to create a bash script that will check inside of each users /Library/Mail folder to see if a folder named V2 exists. The script should create an array with each item in the array being a user and then iterate through each of these users checking their home folder for the above captioned contents. This is what I have so far:

#!/bin/bash

cd /Users

array=($(ls))

for i in ${array[@]}
do

if [ -d /$i/Library/Mail/V2 ]

then
    echo "$i mail has been upgraded."
else 
    echo "$i FAIL"

fi

done
  • 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-04T02:03:22+00:00Added an answer on June 4, 2026 at 2:03 am

    Populating your array from the output of ls is going to make for serious problems when you have a username with spaces. Use a glob expression instead. Also, using [ -d $i/... ] will similarly break on names with spaces — either use [[ -d $i/... ]] (the [[ ]] construct has its own syntax rules and doesn’t require quoting) or [ -d "$i/..." ] (with the quotes).

    Similarly, you need to double-quote "${array[@]}" to avoid string-splitting from splitting names with spaces in two, as follows:

    cd /Users
    array=(*)
    for i in "${array[@]}"; do
      if [[ -d $i/Library/Mail/V2 ]]; then
        echo "$i mail has been upgraded."
      else 
        echo "$i FAIL"
      fi
    done
    

    That said, you don’t really need an array here at all:

    for i in *; do
      ...check for $i/Library/Mail/V2...
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm attempting to create an ASP.NET/C# page that runs a PowerShell script that will
I am attempting to create an application that will call a remote modem and
I am attempting to create a bookmarklet that will change the URL of the
I am currently attempting to create an Inno script installer which requests a list
I'm attempting to create an xquery expression that will return selected nodes but will
I am attempting to create a php script that can connect thru ssh to
I'm attempting to create Data Access Layer for my web application. Currently, all datatables
I am attempting to create a wcf service that accepts any input (Action=*) and
What I am attempting to do is create an application that adds effects to
I am attempting to create a Dictionary from my DataTable. Currently i do this

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.