File size: 519 Bytes
430712c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
source_path="."
target_path="jeanzay:~/wavlm_ssl_sv"

rsync -azh $source_path $target_path \
    --progress \
    --force \
    --delete \
    --exclude="slurm_*" \
    --exclude="data" \
    --exclude="exp" \
    --keep-dirlinks

while inotifywait -r -e modify,create,delete $source_path
do
    rsync -azh $source_path $target_path \
          --progress \
          --force \
          --delete \
          --exclude="slurm_*" \
          --exclude="data" \
          --exclude="exp" \
          --keep-dirlinks
done