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