nsbin/icrc-sync
Nico Schottelius 6f3a4954c4
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s
add icrc-sync
2025-11-14 11:17:47 +01:00

10 lines
202 B
Bash
Executable file

#!/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