To combine two or more command line argument, use pipe characters ( |, >, < )like$ps -aef | grep
Pipe character is used when output of first command will work as input of second command.For eg:-$ps -ef | grep loadps -ef fetch all the process running on ur machine,and grep filter the processes from the result,which is started from load.
To combine two or more command line argument, use pipe characters ( |, >, < )
ReplyDeletelike
$ps -aef | grep
Pipe character is used when output of first command will work as input of second command.
ReplyDeleteFor eg:-
$ps -ef | grep load
ps -ef fetch all the process running on ur machine,and grep filter the processes from the result,which is started from load.