我正在尝试从 ZIP 文件中提取除具有特定扩展名的文件之外的所有文件。
成功:
> unzip myzip.zip
Archive: myzip.zip
inflating: ...
失败:
> unzip myzip.zip -x *.txt
zsh: no matches found: *.txt
我怎样才能做到这一点?
我正在尝试从 ZIP 文件中提取除具有特定扩展名的文件之外的所有文件。
成功:
> unzip myzip.zip
Archive: myzip.zip
inflating: ...
失败:
> unzip myzip.zip -x *.txt
zsh: no matches found: *.txt
我怎样才能做到这一点?
引用该 glob 以阻止 shell 尝试扩展它: