Commit 0cc5ed6 1 parent 7bb5d7f commit 0cc5ed6 Copy full SHA for 0cc5ed6
File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
export WGET_CMD=` which wget`
4
4
export UNZIP_CMD=` which unzip`
5
- URL=" https://media.amazonwebservices .com/AWS-Design/Arch-Center/17.1.19_Update/AWS_Simple_Icons_EPS-SVG_v17.1.19 .zip"
5
+ URL=" https://d1.awsstatic .com/webteam/architecture-icons/q2-2021/Asset-Package_04302021.7efed5c84a17020a6ddd81ef1f42e86ccd33a531 .zip"
6
6
7
7
echo " JUST DO IT!! (waiting for enter keystroke)"
8
8
read
@@ -17,12 +17,16 @@ elif [[ $ret_code -eq 4 ]]; then
17
17
echo " location unavailable"
18
18
exit 1;
19
19
fi
20
- $UNZIP_CMD icons.zip
20
+ $UNZIP_CMD -q icons.zip
21
21
22
22
mkdir svg
23
-
24
23
find -name ' *.svg' -exec cp {} svg/ \;
25
24
find -name ' * *' -print0 | xargs -0 rm
25
+ find svg -name ' \.*' -exec rm -v {} \;
26
+ for svgfile in ` ls svg/* | grep ' &' ` ; do mv -v $svgfile svg/` basename $svgfile | sed -e s/\& /and/g` ; done
27
+
28
+ echo " Break here (ctrl-c) to do it manually or press enter to JUST DO IT!"
29
+ read
26
30
27
31
make
28
32
You can’t perform that action at this time.
0 commit comments