问题
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?
回答1:
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)
回答2:
I try to run the command in my home directory "rm -rf !(composer.json|.git)", my all data got deleted. Even my hard disk is showing free space. So I request to answer how to recover my data and what this command did .
来源:https://stackoverflow.com/questions/47304329/syntax-error-near-unexpected-token-in-bash-script-when-selecting-files