You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/oldstuff/algs4/download-others

22 lines
324 B

#!/bin/bash
set -e
set -x
OTHERS="$(cat others.txt)"
cd src/java
for other in $OTHERS
do
if [ ! -f "$other" ]
then
dn=$(dirname "$other")
mkdir -p "$dn"
pushd "$dn"
curl -O "http://algs4.cs.princeton.edu/${other}"
chmod 444 "$(basename "$other")"
popd
fi
done