Deleting specific files in command line

If filenames are numbered sequentially just run the following command:

rm fileName_{100..100000}

You may try this command also,

for i in $(seq 100 100000); do rm fileName_$i; done

It will delete all the files(ranges from 100 to 100000) if the filename contains numbers in an sequential order.