mirror of
https://github.com/mkotok/scraper
synced 2024-12-23 12:12:25 -06:00
6 lines
136 B
Bash
6 lines
136 B
Bash
|
#!/bin/bash
|
||
|
echo "Cron job started at `date`"
|
||
|
cd $( dirname "${BASH_SOURCE[0]}" )
|
||
|
python scraper.py
|
||
|
echo "Cron job completed at `date`"
|