명령줄에 다음을 입력하면:
_longopt ()
{
case "$prev" in
--+([-a-z0-9_]))
echo foo
;;
esac;
}
예상대로 작동합니다.
이것을 스크립트(foo.sh)에 넣으면 실패합니다.
./foo.sh: line 6: syntax error near unexpected token `('
./foo.sh: line 6: ` --+([-a-z0-9_]))'
왜?
더 중요한 것은 위와 같은 함수를 정의한 경우 이를 스크립트에서 작동하는 함수로 자동 변환하려면 어떻게 해야 합니까?
$ bash --version
GNU bash, version 4.3.11(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
답변1
다음을 수행해야 합니다.
shopt -s extglob
나에게 extglob을 지적해준 @Stéphane Chazales에게 감사드립니다.