aboutsummaryrefslogtreecommitdiff
path: root/packages/crashbox-config/git/usr/bin/gh-mirror-all
blob: fa9054f6059171d9b92d038d1dd8e299e7237970 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash
mapfile -t lines < /etc/gh-mirror

for line in "${lines[@]}"; do
    read -r type name dir <<< "$line"
    gh-mirror "$type" "$name" "$dir"
done