Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a script that will execute all of the bash scripts in a given directory in the order by which they were added. For example, the earliest scripts added to the directory would be executed first.

This is what I am using now, but it doesn't seem to execute the scripts by date added.

for each in /dir/*.sh; 
do 
    bash $each > /dev/null 2>&1 ; 
    rm $each > /dev/null 2>&1 ; 
done ;

Let me know how could modify this to order the files in the directory by date added.

share|improve this question
3  
This sounds like a terrible idea. How do you expect order to be easily controlled? – Ignacio Vazquez-Abrams Jan 13 at 11:18

1 Answer

up vote 2 down vote accepted

If you mean "in order of creation":

ls -ctr /dir/*.sh | while read script
do
  bash $script > /dev/null 2>&1
  rm $script > /dev/null 2>&1
done
share|improve this answer
thank you for fixing the typo, @Barmar :) – robertklep Jan 13 at 11:26
I can't figure out why it's still interpreting /*.sh as a comment, the language tag is supposed to prevent that. – Barmar Jan 13 at 11:27
Needed blank line before <!-- language: bash -->. – Barmar Jan 13 at 11:29
Thank you so much! What I was looking for. I knew it was simple. Thanks, again. – shootingrubber Jan 13 at 11:30
-c is not creation time, it's inode change time. chmod will update this timestamp. – Barmar Jan 13 at 11:32
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.