Skip to content

Instantly share code, notes, and snippets.

@stefanocudini
Created January 25, 2013 18:25
Show Gist options
  • Select an option

  • Save stefanocudini/4636688 to your computer and use it in GitHub Desktop.

Select an option

Save stefanocudini/4636688 to your computer and use it in GitHub Desktop.
get ip of specifica user logged
#!/bin/bash
#last -i | grep z4k | grep logged | head -n1 | cut -d' ' -f15
if [ ! -z $1 ]; then
who --ips | grep ^$1 | rev | cut -d' ' -f1 | rev | tail -n1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment