Sunday, February 06, 2022

Unzip All Files In A Directory

This works in bash, according to this link:

unzip \*.zip


or 


Just put in some quotes to escape the wildcard:

unzip "*.zip"

No comments:

Post a Comment

What's the quickest way to find duplicated files?

find . ! -empty -type f -exec md5sum {} + | sort | uniq -w32 -dD fdupes -r / linux_czkawka_gui.AppImage