The correct way to write numeric dates: 2013-02-27. No ambiguity, sorts correctly, easily legible.
Source: http://xkcd.com/1179/
I post things here.
The correct way to write numeric dates: 2013-02-27. No ambiguity, sorts correctly, easily legible.
Source: http://xkcd.com/1179/
This script will find all .rar files in a given directory and extract them into the specified directory. Requires the unrar binary installed in PATH.
usage: unrar-recursive.sh [directory to scan] [extraction destination dir]
#!/bin/bash
if [ "$#" -eq 0 ]; then dest=$1; else dest=$2; fi
find $1 -type f -iname "*.rar" -exec unrar e {} $dest \;
Sources: