Gossamer Forum
Home : General : Databases and SQL :

Re: [Wil] MySQLDump problem..

Quote Reply
Re: [Wil] MySQLDump problem.. In reply to
Maybe this snippet will help, too:

Code:
# script to find big files
echo -e "Please enter the Directory you would like to scan: \c"
read dir
find $dir -size +5000k -print > ~/bigfiles 2>&1
echo -e "Press Y if you would like to see a list of the files found: \c"
read ans
while [ -s ~/bigfiles ]
do
if [ $ans = y -o $ans = Y ]; then
echo "The files will be listed with less"
less ~/bigfiles
exit 0
else
echo "Exiting script...."
exit 0
fi
done
echo "Did not find any big files"
exit 0

- wil
Subject Author Views Date
Thread; hot thread MySQLDump problem.. Andy 31997 Jun 24, 2002, 9:07 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Paul 30931 Jun 24, 2002, 9:12 AM
Post; hot thread Re: [Paul] MySQLDump problem..
Andy 30738 Jun 24, 2002, 9:25 AM
Thread; hot thread Re: [Paul] MySQLDump problem..
Andy 30817 Jun 24, 2002, 9:46 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Wil 30848 Jun 24, 2002, 9:47 AM
Thread; hot thread Re: [Wil] MySQLDump problem..
Andy 30909 Jun 24, 2002, 9:56 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Alex 30856 Jun 24, 2002, 11:34 AM
Thread; hot thread Re: [Alex] MySQLDump problem..
Andy 30824 Jun 24, 2002, 12:57 PM
Post; hot thread Re: [Andy] MySQLDump problem..
Wil 30627 Jun 24, 2002, 12:59 PM
Thread; hot thread Re: [Andy] MySQLDump problem..
Paul 30890 Jun 24, 2002, 1:01 PM
Thread; hot thread Re: [Paul] MySQLDump problem..
Andy 30721 Jun 25, 2002, 7:26 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Wil 30753 Jun 25, 2002, 7:50 AM
Thread; hot thread Re: [Wil] MySQLDump problem..
Andy 30817 Jun 25, 2002, 7:55 AM
Post; hot thread Re: [Andy] MySQLDump problem..
Wil 30588 Jun 25, 2002, 8:00 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
, 30796 Jun 25, 2002, 2:05 PM
Thread; hot thread Re: [Donald Rumsfeld] MySQLDump problem..
Andy 30686 Jul 9, 2002, 6:15 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Wil 30776 Jul 9, 2002, 6:26 AM
Post; hot thread Re: [Wil] MySQLDump problem..
Wil 30460 Jul 9, 2002, 6:32 AM
Thread; hot thread Re: [Wil] MySQLDump problem..
Andy 30719 Jul 9, 2002, 6:43 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Wil 30749 Jul 9, 2002, 6:46 AM
Thread; hot thread Re: [Wil] MySQLDump problem..
Andy 30685 Jul 9, 2002, 6:52 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Wil 30592 Jul 9, 2002, 7:03 AM
Thread; hot thread Re: [Wil] MySQLDump problem..
Wil 30616 Jul 9, 2002, 7:05 AM
Post; hot thread Re: [Wil] MySQLDump problem..
Wil 30579 Jul 9, 2002, 7:08 AM
Thread; hot thread Re: [Wil] MySQLDump problem..
Andy 30585 Jul 9, 2002, 7:10 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Wil 8704 Jul 9, 2002, 7:11 AM
Thread; hot thread Re: [Wil] MySQLDump problem..
Andy 8652 Jul 9, 2002, 7:15 AM
Thread; hot thread Re: [Andy] MySQLDump problem..
Stealth 8823 Jul 9, 2002, 7:18 AM
Thread; hot thread Re: [Stealth] MySQLDump problem..
Andy 8784 Jul 9, 2002, 7:28 AM
Post; hot thread Re: [Andy] MySQLDump problem..
Wil 8500 Jul 9, 2002, 7:33 AM
Post; hot thread Re: [Wil] MySQLDump problem..
Andy 8609 Jul 9, 2002, 12:28 PM