Count users with “last”
Here is a quick example showing how to count users logged in on a particular date using the “last” command on Linux.
last | awk '/bold/ {printf ("%s\t%s \t%s%s\n", $1,$3,$5,$6)}' | uniq | grep -c "Aug 15"
Popularity: 2% [?]
No related posts.


