Skip to content

Instantly share code, notes, and snippets.

@michel-zimmer
Last active February 28, 2017 12:29
Show Gist options
  • Save michel-zimmer/b7f1cd315c5bde6b80a3 to your computer and use it in GitHub Desktop.
Save michel-zimmer/b7f1cd315c5bde6b80a3 to your computer and use it in GitHub Desktop.
How many users are logged in to the Linux PCs from the cs department at University of Bremen?
#!/bin/sh
i=1
while [ $i -le 25 ]; do
x=$( printf %02d $i )
printf "x%s: " "${x}"
ssh '-o ConnectTimeout=3' "x$x.informatik.uni-bremen.de" "printf \"%s loadavg: %s\\n\" \"\$( who | grep -v '(unknown)' | wc -l)\" \"\$(cat /proc/loadavg)\""
i=$(( i + 1 ))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment