I'm new in learning linux commands, please help me out in finding the difference between ps -ef
and ps -ef | more
command in linux
What is the difference between "ps -ef " and " ps -ef | more" command in linux
1.7k views Asked by intellect_dp At
2
With
ps -ef | more
you pipe|
the output fromps
tomore
, so you can scroll through the results ofps
. Useman ps
andman more
to see the description for these commands. See http://ryanstutorials.net/linuxtutorial/piping.php for more information on pipes and streams.