Something like this ?
awk 'NR>=100 && NR<=10000' /path/to/input > output
And a sed way:
sed -n -e '100,10000p' /path/to/input > output
Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244