Featured
bash
Massive unrar
Posted by Jean-Michel Frouin on .Massive unrar avec pause :
L'équivalent pourrait être rar -x *.part01.rar
#!/bin/bash
# Waits for user key press.
Pause()
{
OLDCONFIG=`stty -g`
stty -icanon -echo min 1 time 0
dd count=1 2>/dev/null
stty $OLDCONFIG
}
for rar in 4*.part01.rar
do
echo "$rar"
Pause
rar x $rar
done
exit