myshellconfig/bin/lastlocallogins
2022-04-06 10:06:04 +02:00

13 lines
288 B
Bash
Executable file

#!/bin/sh
F="$(for i in $(find /var/log -maxdepth 1 -name "wtmp*"|sort -h);do echo -n "-f $i ";done)"
cat << EOF
-----
Alle Tage mit lokalen Logins
User: $USER
Host: $(hostname)
Files: $F
-----
EOF
last -F -a $F |grep -v "pts/\|reboot\|wtmp"|awk '$1 == u {print $4,$5,$7}' u=$USER|uniq