我正在尝试解压特定文件夹中的文件,但我得到一个"unzip command not found“错误。
我正在使用Cygdrive运行我的bash脚本
#!/bin/bash for dir in ./"$WORKING"/* do unzip '*' done
发布于 2013-05-21 08:47:31
程序包为unzip
unzip
setup -nqP unzip
或者使用GUI。
in the wild
https://stackoverflow.com/questions/16658678
相似问题