about summary refs log tree commit diff stats
path: root/bin/showwhoison
blob: 6c365844898d96f4303a6a038aa1dd86a72a11c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/local/bin/bash

# kneezle@tilde.institute
# Shows connected users, including those
# connected via mosh

x=$(who | cut -d' ' -f1 )
y=$(ps aux | grep mosh | cut -d' ' -f1)
echo "Currently logged in users, including MOSH: "
echo "$x" |sort | uniq
echo "$y" | sort | uniq