https://github.com/treehouses/observe
https://github.com/treehouses/observe
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/treehouses/observe
- Owner: treehouses
- License: agpl-3.0
- Created: 2020-09-04T23:09:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-17T05:49:41.000Z (over 4 years ago)
- Last Synced: 2025-01-01T21:22:31.563Z (5 months ago)
- Language: Shell
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 11
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Before running the script
- install [jq](https://stedolan.github.io/jq/download/) package### How to run
```
./automation.sh
./automation_source.sh
#It will generate diff file
```### How to set a time-based job using crontab
```
#if you want to change the default editor
export EDITOR=vim
#add job at the bottom
crontab -e
#example: run auto.sh every hour
-----------------
SHELL=/bin/bash
0 * * * * auto.sh
-----------------
```