mirror of
https://github.com/thewesker/greptweet.git
synced 2025-12-20 12:11:05 -05:00
9 lines
264 B
Bash
Executable File
9 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
echo -n "$(date --iso-8601) "
|
|
for i in 1 10 20 30
|
|
do
|
|
echo -n "$i day(s): $(find /srv/www/greptweet.com/u -maxdepth 1 -mindepth 1 -type d -mtime -$i | wc -l), "
|
|
done
|
|
|
|
echo Total: $(find /srv/www/greptweet.com/u -maxdepth 1 -mindepth 1 -type d | wc -l)
|