shopt -s nullglob


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting shopt -s nullglob
# 1  
Old 11-04-2008
shopt -s nullglob

Hi,

I am using BASH. In a directory there are files that match either of the following 2 patterns: [AST]*.L1A_[GL]AC* or S*.L1A_MLAC*

I would like to write a script that will include a for loop, where for each file in the directory, a certain function will be performed. For example:

for FILE in [AST]*.L1A_[GL]AC* S*.L1A_MLAC*; do
echo $FILE
done

The content of the directory will be random, and there are 3 potential scenarios: 1) Files of both patterns exist in the directory, 2) Only files of the 1st pattern exist, 3) Only files of the 2nd pattern exist. The last two scenarios are problematic as one of the patterns won't be matched, resulting in my script behaving oddly.

- I believe the way around this is to use the shopt -s nullglob option. Does anyone have any other ideas?

- MAIN QUESTION: Where in the code should I put the shopt -s nullglob and shopt -u nullglob? Of course the shopt -s nullglob should be set immediately before the the beginning of the for loop. But, can the shopt -u nullglob be immediately after the beginning of the for loop (ie):

shopt -s nullglob
for FILE in [AST]*.L1A_[GL]AC* S*.L1A_MLAC*; do
shopt -u nullglob
echo $FILE
done

OR after the conclusion of the for loop (ie):

shopt -s nullglob
for FILE in [AST]*.L1A_[GL]AC* S*.L1A_MLAC*; do
echo $FILE
done
shopt -u nullglob

The reason I ask is because I will of course have more complicated code within the for loop, and only want the shopt nullglob command to affect the pattern matching when calling the for loop.

Thanks for your help.

Mike
# 2  
Old 11-04-2008
The first option should be fine. The list that the for loop will iterate through is only evaluated once, so turning it off in the first invocation of the do ... done part should be safe.

I didn't know about nullglob, thanks for the handy tip!
# 3  
Old 11-04-2008

As shopt -s nullglob is not standard, I'd use a test inside the loop:

Code:
for FILE in [AST]*.L1A_[GL]AC* S*.L1A_MLAC*; do
   [ -f "$FILE" ] || continue
   echo "$FILE"
   : ....
done

# 4  
Old 11-04-2008
Hi cfajohnson,

- I appreciate the response. Could you please expand on your statement that shopt -s nullglob is not standard? What do you mean exactly?

- Also, is the purpose of the code that you have written inside the for loop to eliminate the error message that occurs when one of the patterns is not matched?

Thanks for your help!

Mike
# 5  
Old 11-04-2008
Quote:
Originally Posted by msb65
Hi cfajohnson,

- I appreciate the response. Could you please expand on your statement that shopt -s nullglob is not standard? What do you mean exactly?

It only works in bash.
Quote:
- Also, is the purpose of the code that you have written inside the for loop to eliminate the error message that occurs when one of the patterns is not matched?

Exactly. It acheives the same effect as shopt -s nullglob, but will work in all Bourne-type shells.
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Shopt -s histappend

What is the point of this? Whenever I close my shell it appends to the history file without adding this. I have never seen it overwrite my history file. # When the shell exits, append to the history file instead of overwriting it shopt -s histappend (3 Replies)
Discussion started by: cokedude
3 Replies

2. Shell Programming and Scripting

Bash, Bourne, and nullglob

I have a script that start out with this: #!/sbin/sh Several things run. However I cannot get: shopt -s nullglob to run in Bourne. I get: shopt: not found So within the main script (after #!/sbin/sh at the top) I start bash with: bash and try to run what I need with: shopt -s... (2 Replies)
Discussion started by: crowman
2 Replies

3. Shell Programming and Scripting

Bash 'shopt' doubt

Hi, I am using bash shell's extended pattern matching. What tweak the following code needs in order to get the expected output? shopt -s extglob f="a@b@_c@d@_e" echo "${f/@(@|@_)/__}" My expected output is: a__b__c__d__e but the actual output is: a__b@_c@d@_e # that is, how to... (3 Replies)
Discussion started by: royalibrahim
3 Replies
Login or Register to Ask a Question