2012-05-05 20:35:16 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
OTHERS="
|
|
|
|
11model/RightTriangle.java
|
|
|
|
11model/Tone.java
|
|
|
|
11model/Scale.java
|
|
|
|
11model/Binomial.java
|
|
|
|
11model/Wget.java
|
2012-05-05 20:40:22 +00:00
|
|
|
11model/largeT.txt
|
|
|
|
11model/largeW.txt
|
|
|
|
11model/tinyT.txt
|
|
|
|
11model/tinyW.txt
|
2012-05-05 20:35:16 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
cd src/java
|
|
|
|
|
|
|
|
for other in $OTHERS
|
|
|
|
do
|
|
|
|
bn=$(basename "$other")
|
|
|
|
if [ ! -f "$bn" ]
|
|
|
|
then
|
|
|
|
curl -O "http://algs4.cs.princeton.edu/${other}"
|
|
|
|
chmod 444 "$bn"
|
|
|
|
fi
|
|
|
|
done
|