Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bash - unzip: command not found [closed]

I am trying to unzip the file in particular folder and i am getting a "unzip command not found" error.

I am using Cygdrive to run my bash script

#!/bin/bash
for dir in ./"$WORKING"/*
do
    unzip '*'
done
like image 733
Aparna Avatar asked Jan 13 '23 08:01

Aparna


1 Answers

The package is unzip

setup -nqP unzip

or use the GUI.

in the wild

like image 110
3 revs, 2 users 93% Avatar answered Jan 16 '23 19:01

3 revs, 2 users 93%