Results 11 to 15 of 15
-
8th Feb 2010, 11:24 AM #11Member
-
8th Feb 2010, 11:35 AM #12MemberWebsite's:
warezall.comOk..
The message you have entered is too short
-
8th Feb 2010, 05:52 PM #13MemberWebsite's:
extremecoderz.com helpfultools.netPHP Code:#!/bin/bash
# Author: Avek
# Create folder of each *rar file, unpack rar file there
# and then remove all rar files
for x in *part*.rar
do
if [ -e "${x%.part*}" ]; then
echo -ne;
else
mkdir "${x%.part*}";
echo "${x%.part*}";
rar e "$x" ./"${x%.part*}";
fi
done
rm -f *part*.rar
#in case that u having *.rar files without part in name
for x in *.rar
do
y=`echo $x | sed 's/.rar//g'`
if [ -e "$y" ]; then
echo -ne;
else
mkdir "$y";
rar e "$x" ./"$y";
fi
done
rm -rf *.rar
-
8th Feb 2010, 06:50 PM #14MemberWebsite's:
warezall.comWoW... Worked Thanks
-
8th Feb 2010, 08:02 PM #15OPMember
Works Like A Charm.....Thanks A Ton...TC..Peace Out.
Orb.
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
bash script mass download from links in text file
By Mutikasa in forum Tutorials and GuidesReplies: 1Last Post: 9th May 2012, 04:20 PM -
OpenVPN For VZ VPS Bash Script. "CentOS"
By dotvps in forum Tutorials and GuidesReplies: 4Last Post: 28th Feb 2012, 01:07 PM -
mass upload bash script (good for Megaupload)
By Mutikasa in forum Tutorials and GuidesReplies: 7Last Post: 13th Jan 2012, 12:54 PM -
How to: remotely backup your DB (bash script)
By masterbator in forum Technical and Security TutorialsReplies: 8Last Post: 6th Dec 2011, 05:54 AM -
ssh/bash script
By t3od0r in forum Technical Help Desk SupportReplies: 0Last Post: 6th Oct 2010, 06:41 PM
themaPoster - post to forums and...
Version 5.23 released. Open older version (or...