11 lines
126 B
Bash
Executable File
11 lines
126 B
Bash
Executable File
#!/usr/bin/sh
|
|
|
|
for x in `ps h -u ssh -o pid`
|
|
do
|
|
echo $x "=>"
|
|
grep ssh /proc/$x/status
|
|
if [ $? -eq 0 ]; then
|
|
echo $x
|
|
fi
|
|
done
|