Skip to content
Snippets Groups Projects

Update prepare_data.sh

Merged Radim Peša requested to merge 2780-master-patch-97796 into master
1 file
+ 13
0
Compare changes
  • Side-by-side
  • Inline
+ 13
0
#!/bin/bash
#!/bin/bash
 
echo "-------------------------------------------"
 
echo "Acceptable Use Policy and Conditions of Use"
 
echo "-------------------------------------------"
 
echo "Acceptable Use Policy and Conditions of Use (https://dataportal.europdx.eu/about/aup)"
 
echo "have to be accepted before downloading and using EurOPDX data."
 
 
read -p "Do you accept the Acceptable Use Policy and Conditions of Use? [yes/no]" choice
 
case "$choice" in
 
yes|Yes ) echo "AUP accepted.";;
 
* ) echo "AUP not accepted. Exiting." ;exit 0;;
 
esac
 
 
set -x
set -x
# Copy graph.tgz
# Copy graph.tgz
Loading