Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
998 views
in Technique[技术] by (71.8m points)

linux - syntax error near unexpected token '(' in bash script when selecting files

Running this script bash ./cleanup.bash

#!/bin/bash
## going to dir moving stuff
rm -rf !(composer.json|.git)

Gives the error:

cleanup.bash: line 10: syntax error near unexpected token '('
cleanup.bash: line 10: 'rm -rf !(composer.json|.git)'

But if I run in in the terminal directly no problem rm -rf !(composer.json|.git)

I tried stripping out all other lines, still get the error.

How do I enter this correctly in the bash script?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I guess your problem is due the shell extended glob option not set when run from the script. When you claim it works in the command line, you have someway set the extglob flag which allow to !() globs.

Since the bash script whenever started with a #!/bin/bash starts a new sub-shell the extended options set in the parent shell may not be reflected in the new shell. To make it effect, set it in the script after the she-bang

#!/bin/bash

shopt -s extglob

## going to dir moving stuff
rm -rf !(composer.json|.git)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...