I've a directory with many number of 0 byte files in it. I can't even see the files when i use the ls command. I'm using a small script to delete these files but sometimes that does not even delete these files. Here is the script:
i=100
while [ $i -le 999 ];do
rm -f file${i}*;
let i++;
done
Is there any other way to do this more quickly?

while [ $i -le 999]andlet i++, you can also useseqwithfor i in $(seq ...)– YuppieNetworking Jul 1 '10 at 13:00