Newer
Older
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
function print_the_help {
echo "USAGE: clone_subgroup -g GROUPID -t TOKEN"
echo " OPTIONS: "
echo " -g,--group-id The group id (below name on webpage)"
echo " -t,--token Personal acces token"
exit
}
function yes_or_no {
while true; do
read -p "$* [y/n]: " yn
case $yn in
[Yy]*) return 0 ;;
[Nn]*) echo "No entered" ; return 1 ;;
esac
done
}
ONLINE_ONLY=1
if [[ $# -eq 0 ]] ; then
print_the_help
exit
fi
GROUPID=
TOKEN=
POSITIONAL=()
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-h|--help)
shift # past argument
print_the_help
;;
-g|--group-id)
GROUPID="$2"
shift # past argument
shift # past value
;;
-t|--token)
TOKEN="$2"
shift # past argument
shift # past argument
;;
*) # unknown option
#POSITIONAL+=("$1") # save it in an array for later
echo "unknown option $1"
print_the_help
shift # past argument
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional parameters
for repo in \
$(curl "https://eicweb.phy.anl.gov/api/v4/groups/${GROUPID}?private_token=${TOKEN}" \
| jq .projects[].ssh_url_to_repo \
| tr -d '"')
do
git clone $repo
done
#curl --header "PRIVATE-TOKEN: ${TOKEN}" https://eicweb.phy.anl.gov/api/v4/groups/controls/projects