Add utility shell func to show python proc.

This commit is contained in:
Keith Whyte 2021-05-21 09:15:47 +02:00
parent 09b9db86c8
commit f7eaa31efa

View file

@ -111,6 +111,10 @@ ns () {
expect -c 'spawn -noecho telnet 0 4245; expect >; send enable\r; expect #; send "show ns\r"; expect #' | grep ALIVE;
}
pp () {
ps awxf | grep [p]ython
}
op () {
ps awxf | grep [o]smo\-
}