Plan borg: updates (step).
This commit is contained in:
parent
a71ddd74d3
commit
1ea38d7342
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
SCRIPT_NAME="$(basename "$0")"
|
||||
|
||||
BORG_REPOS="/var/backups/borg/"
|
||||
cd $BORG_REPOS
|
||||
for BORG_REPO in $(ls -d *.repo); do
|
||||
if [ -d "$BORG_REPO" ]; then
|
||||
#echo "$BORG_REPO"
|
||||
COMPUTER=$(printf "%-40s" ${BORG_REPO::-5})
|
||||
OUTPUT=$(borg list "$BORG_REPO" | awk '{ print $1}' | wc -l)
|
||||
echo "$COMPUTER $OUTPUT"
|
||||
fi
|
||||
done
|
Loading…
Reference in New Issue