Skip to content

Instantly share code, notes, and snippets.

@jurandysoares
Created September 1, 2018 01:18
Show Gist options
  • Save jurandysoares/0b53e7c0381af299088d82cdcab76b46 to your computer and use it in GitHub Desktop.
Save jurandysoares/0b53e7c0381af299088d82cdcab76b46 to your computer and use it in GitHub Desktop.
last -w | \
grep 'Aug 31' | \
awk '{print $1}' | \
sort -u | \
while read user;
do
grep $user /etc/passwd | cut -d: -f5;
done | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment