from 101 to 200 records
sed -n '101,200p' /path/to/input > output
or the awk way:
awk 'NR>=101 && NR<=200' /path/to/input > output
or head | tail
Anyway feel free to play with the man command.
Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244