12 lines
388 B
Plaintext
12 lines
388 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo "================================================================================"
|
||
|
echo " Prunes du "$(date)
|
||
|
echo "================================================================================"
|
||
|
|
||
|
borgmatic prune --stats --files --verbosity 1
|
||
|
|
||
|
echo "====="
|
||
|
echo "Ended at: "`date`
|
||
|
echo "================================================================================"
|