17 lines
375 B
Bash
17 lines
375 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
BASEDIR=/var/www/digisnaxx.ado/api.digisnaxx
|
||
|
|
EVENTSDIR=/var/www/digisnaxx.ado/api.digisnaxx/events
|
||
|
|
SCRIPTDIR=/var/www/digisnaxx.ado/api.digisnaxx/events/scrapers/scripts
|
||
|
|
GOVTDIR=/var/www/digisnaxx.ado/api.digisnaxx/events/scrapers/Working/govt
|
||
|
|
|
||
|
|
cd $GOVTDIR
|
||
|
|
for file in *
|
||
|
|
do
|
||
|
|
python "$file" $1
|
||
|
|
echo "SCRIPT COMPLETE"
|
||
|
|
done
|
||
|
|
|
||
|
|
cd $SCRIPTDIR
|
||
|
|
pwd
|
||
|
|
python clean_up.py
|