Is there a way use ps -ef|grep command to display the processes Within a certain range, say less 100?
Using awk:
$ ps -ef | awk '$2<100'