10 lines
202 B
Text
10 lines
202 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
dir=/mnt/c/Users/A090964/vcs/
|
||
|
|
repolist=$(ssh icrcnb "cd $dir; ls -1")
|
||
|
|
echo $repolist
|
||
|
|
|
||
|
|
cd ~/vcs
|
||
|
|
for repo in $repolist; do
|
||
|
|
rsync -av --delete icrcnb:${dir}/${repo}/ ~/vcs/icrc-${repo}
|
||
|
|
done
|