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 | |
# RUN | |
# CACHE_WARMER_LOGFILE=~/cache_warmer.log bash <(curl -# -L http://bit.ly/signalwerk-warmly) https://xyz.com | |
# wget based cache warmer script | |
# Original Author: Thomas Fritz | |
# https://gist.github.com/thomasfr/7926314 | |
CURRENT_DIR="$(pwd)" |
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
export const ANSIColors = { | |
reset: "\033[0m", | |
hicolor: "\033[1m", | |
underline: "\033[4m", | |
inverse: "\033[7m", | |
// foreground colors | |
black: "\033[30m", | |
red: "\033[31m", | |
green: "\033[32m", | |
yellow: "\033[33m", |