답변:
이 경우 URL 주위에 작은 따옴표 '
나 큰 따옴표를 사용해야합니다 "
(일반적으로).
wget 'http://www.flareget.com/files/flareget/debs/amd64/flareget_2.3-24_amd64(stable)_deb.tar.gz'
이제부터 명령에서 인수로 괄호를 포함하는 문자열을 사용할 때 일반적으로이 방법을 사용해야합니다. 괄호는 어떤 식 으로든 명령에 전달되지 않도록 쉘별로 그룹화하는 데 사용되기 때문입니다. 따라서 bash 쉘은 구문 오류를 제공합니다.
$ echo some (parentheses)
bash: syntax error near unexpected token `('
$ echo 'some (parentheses)'
some (parentheses)
mypass="'HWNevtQW9o2s)f'"
unzip -P $mypass myfile