-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopy.sh
41 lines (35 loc) · 1.05 KB
/
copy.sh
1
2
3
4
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
#!/bin/bash
echo "ArgumentMarshaler Downloader"
echo "----------------------------"
echo "Current Directory:"
echo "${PWD}"
echo "----------------------------"
echo "BooleanMarshalerLib"
read -p "Download [Y/N]? " -n 1 -r
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]
then
wget -q "https://github.com/sunriax/argument/releases/latest/download/RaGae.ArgumentLib.BooleanMarshalerLib.dll"
fi
echo "IntegerMarshalerLib"
read -p "Download [Y/N]? " -n 1 -r
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]
then
wget -q "https://github.com/sunriax/argument/releases/latest/download/RaGae.ArgumentLib.IntegerMarshalerLib.dll"
fi
echo "StringMarshalerLib"
read -p "Download [Y/N]? " -n 1 -r
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]
then
wget -q "https://github.com/sunriax/argument/releases/latest/download/RaGae.ArgumentLib.StringMarshalerLib.dll"
fi
echo "DoubleMarshalerLib"
read -p "Download [Y/N]? " -n 1 -r
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]
then
wget -q "https://github.com/sunriax/argument/releases/latest/download/RaGae.ArgumentLib.DoubleMarshalerLib.dll"
fi
echo "End of downloading"