kopia lustrzana https://github.com/J-Rios/TLG_JoinCaptchaBot
15 wiersze
316 B
Plaintext
15 wiersze
316 B
Plaintext
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# Actual script directory path
|
||
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
||
|
|
||
|
DATE=$1
|
||
|
|
||
|
if [ "$DATE" = "" ]; then
|
||
|
DATE=$(date +%Y-%m-%d)
|
||
|
fi
|
||
|
|
||
|
cat $DIR/../output.log | grep -e "${DATE}" | grep -e "New join detected: " | awk '{print $8}' | sort | uniq -c | sort -u
|
||
|
|
||
|
exit 0
|