1
0

ajout et mise à jour des outils

This commit is contained in:
2021-09-29 14:27:51 +02:00
parent 1e9d4d3448
commit a39315e9db
14 changed files with 1303 additions and 0 deletions

10
list_ssh Executable file
View File

@@ -0,0 +1,10 @@
#!/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