Personal Project Portfolio
python bash powershell
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add unrar script

+11
+11
scripting/unrar.sh
··· 1 + #!/bin/bash 2 + 3 + #replace source and new directories with local directories before use 4 + #-execdir refers to executing command in defined directory 5 + 6 + #must have unrar package installed | sudo apt-get install unrar 7 + #e means extract in current directory 8 + #-o- means do not overwrite already created files 9 + 10 + 11 + find source_dir/ -name '*.rar' -execdir unrar e -o- {} /new/destination_dir/ \;