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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:35:44+00:00 2026-05-20T05:35:44+00:00

I want to run my program on all the files in a directory after

  • 0

I want to run my program on all the files in a directory after a specific file using a bash script.

If I have a directory like:

fileA
fileB
fileC
fileD

I want to run ./prog <file> for all files after fileC. How would I write a bash script to do this?

I currently have

for FILE in ./tests/*; do
  ./prog $FILE
  if [ $? -eq 0 ]; then
    echo "success: $FILE"
  else
    echo "**FAILURE: $FILE"
    exit 1
  fi
done

But, I want to start at a specific file in that directory. It doesn’t necessarily need to be sorted since ls list files in a specific order which is the same each time.

I typically just run my script, and when it fails, I fix it for that specific file, but then I’d want to resume from that file, and not restart from the beginning.

  • 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-20T05:35:45+00:00Added an answer on May 20, 2026 at 5:35 am

    If the files are sorted, then you can use '<' and '>' operators to do a stringwise compare of two variables:

    startfile=$1
    for FILE in ./tests/*; do
        if ! [ "$FILE" '<' "$startfile" ] ; then
            echo doing something with $FILE
        else
            echo Skipping $FILE
        fi
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to run script file on android Shell using Native C program. I
I have a python program/file that I want to run repeatedly and calculate the
I would like a bash script to run a program (taking several variables and
I want run a script as follows: runner: ssh 'java program &' ssh 'java
If I write program in python 2.7 and I want to run another script
I just want that my program or method should run at specific date and
I want to design a c# program which can run program a 3rd exe
I want to run the following command from a C program to read the
I want to run a DOS command in my C++ program. The point is
In my C program I want to know if my executable is run in

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.