Skip to content

Instantly share code, notes, and snippets.

View chrisjarman's full-sized avatar

Chris Jarman chrisjarman

  • Payaca Ltd
  • United Kingdom
View GitHub Profile
-webkit-filter: grayscale(1) sepia(100%) saturate(50%) hue-rotate(185deg);
@chrisjarman
chrisjarman / substitute.sh
Created September 29, 2016 20:03
Bash script to substitute environment variables for placeholders, in-place.
#/usr/bin/env bash
TEMP=`mktemp`
envsubst < $1 > $TEMP
mv $TEMP $1