Files
mastering-unix-ss/chapter23/function_get_udp_x25_procs
Fabio Scotto di Santolo 4cc88d2f6e initial commit
2020-07-28 19:28:25 +02:00

9 lines
132 B
Plaintext
Executable File

get_udp_x25_procs ()
{
# Listing of all "udp" and "x25" processes, if
# any are running
ps -ef | egrep 'udp|x25' | grep -v grep
}