blob: 3c65677484e0bd91acac1e61fbc5d918243a1e6c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# arbtt files have limited read access (good!) ==> write current tag to file using cronjob
if [ "$1" = "sync" ]; then
/home/melvin/.cabal/bin/arbtt-stats --logfile=/home/melvin/.arbtt/capture.log --categorizefile=/home/melvin/.arbtt/categorize.cfg -f '$sampleage < 0:01' | tail -n 1 | awk '{print $1}' >/home/melvin/.arbtt/current
else
cat /home/melvin/.arbtt/current
fi
|