summaryrefslogtreecommitdiffstats
path: root/roles/supybot/files/archive.sh
blob: 9d22aaab45fd6e7cffb62ed681b3872ad2330381 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

cd /srv/web/meetbot/teams
for team in *; do
    pushd $team >/dev/null 2>&1
    tar -cphf /srv/web/meetbot/archives/$team.tgz *.log.txt
    popd >/dev/null 2>&1
done