This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Throw an alert when a page's contents have changed | |
# | |
# Requires https://github.com/alloy/terminal-notifier | |
DELAY="30" | |
URL="https://ftp.gnu.org/gnu/bash/bash-3.2-patches/?C=M;O=D" | |
CHECKSUM="d1476050bb854ad1d33ce539cd5214fc5c9802d3" | |
while true; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PYTHON27="/usr/bin/python2.7" | |
VENV_ROOT="/data/venv" | |
apt-get update | |
apt-get -y install python-software-properties | |
add-apt-repository ppa:fkrull/deadsnakes | |
apt-get update |