Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Last active September 7, 2018 09:17
Show Gist options
  • Save coderofsalvation/7663084 to your computer and use it in GitHub Desktop.
Save coderofsalvation/7663084 to your computer and use it in GitHub Desktop.
Simple powerfull bash template engine (aka macgyver-style smarty)
echo -e '<b>${title}</b>\n$(ls -la)' > foo.html
export title=FOOOOO;
cat foo.html | sed 's/"/\\\"/g;s/.*/echo "&"/e'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment