more isn't used to limit output, it's used to paginate output and make it easier to read in a terminal, if anything.
Are you talking about using head and tail? EggHeadCafe has an example of:
type my.txt | select-object -first 10
type my.txt | select-object -last 10
to emulate head and tail.