mirror of
https://github.com/tildeclub/tilde.club.git
synced 2026-03-10 05:00:19 +00:00
7 lines
139 B
Markdown
7 lines
139 B
Markdown
# Accounting
|
|
|
|
See who has been logged in the longest:
|
|
|
|
```
|
|
for a in `users`; do echo `ac $a` $a; done|sort|uniq|cut -d' ' -f2,3|sort -n
|
|
``` |