Skip to content
Snippets Groups Projects
Commit eff92e6d authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Retrieve the shower PDFs

parent 043954e6
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
export URL="http://pi1139.physik.uni-erlangen.de/data/latest"
if [ ! -d "pdfs" ]; then
echo "Retrieving PDFs..."
mkdir pdfs
cd pdfs
for i in {1..6}; do
wget "http://pi1139.physik.uni-erlangen.de/data/latest/J${i}p.dat"
wget "$URL/J${i}p.dat"
done
for i in {13..14}; do
wget "$URL/J${i}p.dat"
done
else
echo "PDFs already downloaded."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment