blob: c39bb131ae634d3995f5126c2b8573b412f85d59 (
plain)
1
2
3
4
5
|
#!/bin/sh
# restic snapshots > dump
go run restore.go < dump | sed -e 's|$|;|' -e 's|:/[^/]*/|:/|' | grep -v '\.'
#go run restore.go < dump | grep bank | sed -e "s|$| --target /bank|" -e "s|/bank||" -e 's|$|;|' | grep -v '\.'
|