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

Add script to retrieve PDFs

parent 3846a71b
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#!/bin/bin/env bash
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"
done
cd ..
else
echo "PDFs already downloaded."
fi
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