close
ps -ef | grep ASM
=> "grep ASM" would show up on the list
To eliminate that:
ps -ef | grep ASM | grep -v grep
全站熱搜
ps -ef | grep ASM
=> "grep ASM" would show up on the list
To eliminate that:
ps -ef | grep ASM | grep -v grep