24/09/2005
HOWTO extract rar files with rox
What’s easier than a single click extraction of rar files through rox ?
and paste inside:
#!/bin/bash
cd `dirname “$@”`
unrar x -y `basename “$@”`
mkdir “unrar done”
then right click on a rar file…go to customize menu and drop /usr/local/bin/urar to the new window that appears.
Now when you right click on a rar file you will see on the menu “urar”…just click it and you will have your rar files extracted to the current dir. It’s easy to modify the previous script to extract the files to a new dir if you want. It will also create a dir named “unrar done” to notify you when the process has finished.
What needs fixing ?
Filed by kargig at 13:04 under Linux
No Comments | 4,233 views