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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:07:06+00:00 2026-06-10T10:07:06+00:00

How can I test if a command outputs an empty string?

  • 0

How can I test if a command outputs an empty string?

  • 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-10T10:07:07+00:00Added an answer on June 10, 2026 at 10:07 am

    Previously, the question asked how to check whether there are files in a directory. The following code achieves that, but see rsp’s answer for a better solution.


    Empty output

    Commands don’t return values – they output them. You can capture this output by using command substitution; e.g. $(ls -A). You can test for a non-empty string in Bash like this:

    if [[ $(ls -A) ]]; then
        echo "there are files"
    else
        echo "no files found"
    fi
    

    Note that I’ve used -A rather than -a, since it omits the symbolic current (.) and parent (..) directory entries.

    Note: As pointed out in the comments, command substitution doesn’t capture trailing newlines. Therefore, if the command outputs only newlines, the substitution will capture nothing and the test will return false. While very unlikely, this is possible in the above example, since a single newline is a valid filename! More information in this answer.


    Exit code

    If you want to check that the command completed successfully, you can inspect $?, which contains the exit code of the last command (zero for success, non-zero for failure). For example:

    files=$(ls -A)
    if [[ $? != 0 ]]; then
        echo "Command failed."
    elif [[ $files ]]; then
        echo "Files found."
    else
        echo "No files found."
    fi
    

    More info here.

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

Sidebar

Related Questions

How can I execute a test case from Command Console using NUnit? I had
How can I make a verify error for this command? if blablablabla: os.makedirs('C:\\test\\') If
How can I run a test within PHP instead of using the 'phpunit' command?
Is there a way I can test if there are any other activities in
Is there a page similar to JSbin where I can test HTML and CSS
I am wondering is there any way we can test the font size/color of
I have a feature that uses the camera so I can test it only
I am programming in Python, and I am wondering if i can test if
Can I test my client side GWT code without GWTTestCase? I've heard somewhere (I
Can you test touchEvent on Adobe Device Cental, google it can't find any information.

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.