Placeholder file for small accounting tools

This commit is contained in:
Paul Ford 2014-10-17 14:38:25 +00:00
parent 73c57fe5b4
commit 3764773a83
1 changed files with 7 additions and 0 deletions

7
docs/accounting.md Normal file
View File

@ -0,0 +1,7 @@
# 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
```