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

廉价感情. 提交于 2020-05-20 10:49:17

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!