-
hipo posted an update 11 years, 7 months ago
Unzip a group of files within directory on Linux without prompting each archive whether to unzip and overwrite old existing data one liner –
for i in *; do unzip -o $i; done
hipo posted an update 11 years, 7 months ago
Unzip a group of files within directory on Linux without prompting each archive whether to unzip and overwrite old existing data one liner –
for i in *; do unzip -o $i; done