Chez ouam

/home/jmfrouin

View on GitHub
26 May 2013

Massive unrar

by Jean-Michel Frouin

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
tags: