Skip to content

Instantly share code, notes, and snippets.

@cabrinha
Created March 15, 2015 01:45
Show Gist options
  • Save cabrinha/abc31ab970412d1e6608 to your computer and use it in GitHub Desktop.
Save cabrinha/abc31ab970412d1e6608 to your computer and use it in GitHub Desktop.
Check if a user is logged in and log them out.
#!/usr/bin/env bash
set -e
username=$1
w | awk '{print $1}' | grep $username
if [[ $? == 0 ]];
then kill -HUP $PPID;
fi
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment