blob: ff9d84a7b55caab30d6cda03c7de1b42b91eb0e9 [file] [log] [blame]
Lei YU84749672021-12-15 14:31:10 +08001#!/bin/bash
2
3# Sync the files/dirs specified in synclist once
4# Usually the sync-manager could sync the file once before it starts, so that
5# it makes sure the synclist is always synced when the sync-manager is running.
6
7SYNCLIST=/etc/synclist
8DEST_DIR=/run/media/rwfs-alt/cow
9
Adriana Kobylak39c7bbd2022-03-28 21:12:03 +000010while read -r l; do
Lei YU84749672021-12-15 14:31:10 +080011 echo rsync -a -R "${l}" "${DEST_DIR}"
12 rsync -a -R "${l}" "${DEST_DIR}"
13done < ${SYNCLIST}