Extract a number of zip and rar archives
by hackprime
sudo apt-get install unzip unrar
for x in *.zip; do unzip -o "$x" -d "${x//\.zip}" ; done
for x in *.rar; do unrar x "$x" ; done
Sources:
by hackprime
sudo apt-get install unzip unrar
for x in *.zip; do unzip -o "$x" -d "${x//\.zip}" ; done
for x in *.rar; do unrar x "$x" ; done
Sources: