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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:46:22+00:00 2026-05-30T18:46:22+00:00

I have a function and its first argument is the string with stored path

  • 0

I have a function and its first argument is the string with stored path to some directory.
This string is output of the find . -type d.

If I list all the files in the current dir, its simple

for file in *; do
  commands
done

But with the string it doesn’t treat it that way of course.

for file in "$1"; do
  commands
done  

So I thought to use ls

for file in `ls "$1"`; do
  commands
done`

But with this solution it simply can’t handle the files with space, after some
research I’ve found everywhere a recommendations to use find but I don’t get, find will
list all the files/dirs/subdirs, simply the whole tree, but I want just the stuff in the current dir.
I will be very thankful for every help.

UPDATE

I’ve tried one more thing that seems to work:

pushd "$1"
for file in *; do
    echo "$file"
done
popd 

But I would prefer some solution where I don’t have to change my working dir

  • 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-30T18:46:23+00:00Added an answer on May 30, 2026 at 6:46 pm

    If you only want non-dot files, the following should do the trick.

    for file in "$1"/*; do
      commands
    done  
    

    More flexible is the following code.

    while IFS= read -r -d $'\0' result; do
        commands
    done < <( find -P "$1" -printf %p"\0" )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some troubles with Haskell's type system. Situation: Following program is taking list
I'm trying to write a function that would use its first argument, then send
I have a function that expects real numbers (either integers or floats) as its
I have a function that accepts a char* as one of its parameters. I
I have a function in a class file called auth_user and its in App_code
I have a function that takes a struct, and I'm trying to store its
I have a function thats the main bottleneck of my application, because its doing
I have a thread that, when its function exits its loop (the exit is
I have a custom UITableViewCell. In its function - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier, I need
So I have a TimerTask task calling a function onTimerComplete() in its run() onTimerComplete()

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.